]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | |
2 | List of maintainers and how to submit kernel changes | |
3 | ||
4 | Please try to follow the guidelines below. This will make things | |
5 | easier on the maintainers. Not all of these guidelines matter for every | |
6 | trivial patch so apply some common sense. | |
7 | ||
8 | 1. Always _test_ your changes, however small, on at least 4 or | |
9 | 5 people, preferably many more. | |
10 | ||
11 | 2. Try to release a few ALPHA test versions to the net. Announce | |
12 | them onto the kernel channel and await results. This is especially | |
13 | important for device drivers, because often that's the only way | |
14 | you will find things like the fact version 3 firmware needs | |
15 | a magic fix you didn't know about, or some clown changed the | |
16 | chips on a board and not its name. (Don't laugh! Look at the | |
17 | SMC etherpower for that.) | |
18 | ||
19 | 3. Make sure your changes compile correctly in multiple | |
20 | configurations. In particular check that changes work both as a | |
21 | module and built into the kernel. | |
22 | ||
23 | 4. When you are happy with a change make it generally available for | |
24 | testing and await feedback. | |
25 | ||
26 | 5. Make a patch available to the relevant maintainer in the list. Use | |
27 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
28 | changes sent back with seemingly silly requests about formatting | |
29 | and variable names. These aren't as silly as they seem. One | |
30 | job the maintainers (and especially Linus) do is to keep things | |
31 | looking the same. Sometimes this means that the clever hack in | |
32 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
33 | generalized kernel feature ready for next time. |
34 | ||
35 | PLEASE check your patch with the automated style checker | |
36 | (scripts/checkpatch.pl) to catch trival style violations. | |
37 | See Documentation/CodingStyle for guidance here. | |
1da177e4 | 38 | |
f70f873b JP |
39 | PLEASE CC: the maintainers and mailing lists that are generated |
40 | by scripts/get_maintainer.pl. The results returned by the | |
41 | script will be best if you have git installed and are making | |
42 | your changes in a branch derived from Linus' latest git tree. | |
43 | See Documentation/SubmittingPatches for details. | |
44 | ||
1da177e4 LT |
45 | PLEASE try to include any credit lines you want added with the |
46 | patch. It avoids people being missed off by mistake and makes | |
47 | it easier to know who wants adding and who doesn't. | |
48 | ||
49 | PLEASE document known bugs. If it doesn't work for everything | |
50 | or does something very odd once a month document it. | |
51 | ||
c9ee133b | 52 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
53 | of the OSDL certificate of contribution and should include a |
54 | Signed-off-by: line. The current version of this "Developer's | |
55 | Certificate of Origin" (DCO) is listed in the file | |
56 | Documentation/SubmittingPatches. | |
c9ee133b | 57 | |
1da177e4 LT |
58 | 6. Make sure you have the right to send any changes you make. If you |
59 | do changes at work you may find your employer owns the patch | |
60 | not you. | |
61 | ||
c9ee133b AC |
62 | 7. When sending security related changes or reports to a maintainer |
63 | please Cc: [email protected], especially if the maintainer | |
64 | does not respond. | |
65 | ||
66 | 8. Happy hacking. | |
1da177e4 | 67 | |
c7c4fb18 JP |
68 | Descriptions of section entries: |
69 | ||
70 | P: Person (obsolete) | |
71 | M: Mail patches to: FullName <address@domain> | |
72 | L: Mailing list that is relevant to this area | |
73 | W: Web-page with status/info | |
8a6e2535 | 74 | Q: Patchwork web based patch tracking system site |
c7c4fb18 JP |
75 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. |
76 | S: Status, one of the following: | |
77 | Supported: Someone is actually paid to look after this. | |
78 | Maintained: Someone actually looks after it. | |
79 | Odd Fixes: It has a maintainer but they don't have time to do | |
80 | much other than throw the odd patch in. See below.. | |
81 | Orphan: No current maintainer [but maybe you could take the | |
82 | role as you write your new code]. | |
83 | Obsolete: Old code. Something tagged obsolete generally means | |
84 | it has been replaced by a better system and you | |
85 | should be using that. | |
86 | F: Files and directories with wildcard patterns. | |
87 | A trailing slash includes all files and subdirectory files. | |
88 | F: drivers/net/ all files in and below drivers/net | |
89 | F: drivers/net/* all files in drivers/net, but not below | |
90 | F: */net/* all files in "any top level directory"/net | |
91 | One pattern per line. Multiple F: lines acceptable. | |
92 | X: Files and directories that are NOT maintained, same rules as F: | |
93 | Files exclusions are tested before file matches. | |
94 | Can be useful for excluding a specific subdirectory, for instance: | |
95 | F: net/ | |
96 | X: net/ipv6/ | |
97 | matches all files in and below net excluding net/ipv6/ | |
98 | K: Keyword perl extended regex pattern to match content in a | |
99 | patch or file. For instance: | |
100 | K: of_get_profile | |
101 | matches patches or files that contain "of_get_profile" | |
102 | K: \b(printk|pr_(info|err))\b | |
103 | matches patches or files that contain one or more of the words | |
104 | printk, pr_info or pr_err | |
105 | One regex pattern per line. Multiple K: lines acceptable. | |
1da177e4 LT |
106 | |
107 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
108 | order. If you could add yourselves to it in alphabetical order that would be | |
109 | so much easier [Ed] | |
110 | ||
c7c4fb18 | 111 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 112 | |
c7c4fb18 | 113 | ----------------------------------- |
679655da | 114 | |
1da177e4 | 115 | 3C505 NETWORK DRIVER |
8b58be88 | 116 | M: Philip Blundell <[email protected]> |
979b6c13 | 117 | L: [email protected] |
1da177e4 | 118 | S: Maintained |
679655da | 119 | F: drivers/net/3c505* |
1da177e4 | 120 | |
a6d89915 | 121 | 3C59X NETWORK DRIVER |
8b58be88 | 122 | M: Steffen Klassert <[email protected]> |
a6d89915 SK |
123 | L: [email protected] |
124 | S: Maintained | |
679655da JP |
125 | F: Documentation/networking/vortex.txt |
126 | F: drivers/net/3c59x.c | |
a6d89915 | 127 | |
1da177e4 | 128 | 3CR990 NETWORK DRIVER |
8b58be88 | 129 | M: David Dillow <[email protected]> |
979b6c13 | 130 | L: [email protected] |
1da177e4 | 131 | S: Maintained |
679655da | 132 | F: drivers/net/typhoon* |
1da177e4 | 133 | |
c4de0ceb AR |
134 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
135 | M: Adam Radford <[email protected]> | |
1da177e4 | 136 | L: [email protected] |
c4de0ceb | 137 | W: http://www.lsi.com |
1da177e4 | 138 | S: Supported |
c4de0ceb | 139 | F: drivers/scsi/3w-* |
1da177e4 LT |
140 | |
141 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 142 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
143 | L: [email protected] |
144 | S: Maintained | |
679655da | 145 | F: drivers/scsi/53c700* |
1da177e4 LT |
146 | |
147 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 148 | M: Andreas Koensgen <[email protected]> |
1da177e4 LT |
149 | L: [email protected] |
150 | S: Maintained | |
679655da | 151 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 152 | |
1da177e4 | 153 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 | 154 | M: Francois Romieu <[email protected]> |
979b6c13 | 155 | L: [email protected] |
1da177e4 | 156 | S: Maintained |
679655da | 157 | F: drivers/net/r8169.c |
1da177e4 LT |
158 | |
159 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
1da177e4 LT |
160 | L: [email protected] |
161 | W: http://serial.sourceforge.net | |
90a09c9c | 162 | S: Orphan |
679655da JP |
163 | F: drivers/serial/8250* |
164 | F: include/linux/serial_8250.h | |
1da177e4 LT |
165 | |
166 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
8b58be88 | 167 | M: Paul Gortmaker <[email protected]> |
979b6c13 | 168 | L: [email protected] |
1da177e4 | 169 | S: Maintained |
679655da JP |
170 | F: drivers/net/*8390* |
171 | F: drivers/net/ax88796.c | |
1da177e4 | 172 | |
67543e50 | 173 | 9P FILE SYSTEM |
8b58be88 JP |
174 | M: Eric Van Hensbergen <[email protected]> |
175 | M: Ron Minnich <[email protected]> | |
176 | M: Latchesar Ionkov <[email protected]> | |
ce00f85c | 177 | L: [email protected] |
27a2a5ff | 178 | W: http://swik.net/v9fs |
8a6e2535 | 179 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 181 | S: Maintained |
679655da JP |
182 | F: Documentation/filesystems/9p.txt |
183 | F: fs/9p/ | |
67543e50 | 184 | |
1da177e4 | 185 | A2232 SERIAL BOARD DRIVER |
8b58be88 | 186 | M: Enver Haase <[email protected]> |
1da177e4 LT |
187 | L: [email protected] |
188 | S: Maintained | |
679655da | 189 | F: drivers/char/ser_a2232* |
1da177e4 | 190 | |
e2d1d6c0 | 191 | AACRAID SCSI RAID DRIVER |
8b58be88 | 192 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
193 | L: [email protected] |
194 | W: http://www.adaptec.com/ | |
1da177e4 | 195 | S: Supported |
679655da JP |
196 | F: Documentation/scsi/aacraid.txt |
197 | F: drivers/scsi/aacraid/ | |
1da177e4 | 198 | |
249e3c85 | 199 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
8b58be88 | 200 | M: Hans de Goede <[email protected]> |
f2b84bbc HG |
201 | L: [email protected] |
202 | S: Maintained | |
679655da | 203 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 204 | |
249e3c85 | 205 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 206 | M: Alistair John Strachan <[email protected]> |
249e3c85 AJS |
207 | L: [email protected] |
208 | S: Maintained | |
679655da | 209 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 210 | |
1da177e4 | 211 | ACENIC DRIVER |
8b58be88 | 212 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
213 | L: [email protected] |
214 | S: Maintained | |
679655da | 215 | F: drivers/net/acenic* |
1da177e4 | 216 | |
e86435eb | 217 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 218 | M: Peter Feuerer <[email protected]> |
d0944853 | 219 | L: [email protected] |
4fc26e36 JP |
220 | W: http://piie.net/?section=acerhdf |
221 | S: Maintained | |
222 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 223 | |
745a5d21 | 224 | ACER WMI LAPTOP EXTRAS |
8b58be88 | 225 | M: Carlos Corbacho <[email protected]> |
745a5d21 | 226 | L: [email protected] (subscribers-only) |
d0944853 | 227 | L: [email protected] |
745a5d21 CC |
228 | W: http://code.google.com/p/aceracpi |
229 | S: Maintained | |
679655da | 230 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 231 | |
1da177e4 | 232 | ACPI |
8b58be88 | 233 | M: Len Brown <[email protected]> |
6968e50c | 234 | L: [email protected] |
38e09d83 | 235 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 236 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
54e5881d | 237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git |
8b59a454 | 238 | S: Supported |
679655da JP |
239 | F: drivers/acpi/ |
240 | F: drivers/pnp/pnpacpi/ | |
241 | F: include/linux/acpi.h | |
43368e74 | 242 | F: include/acpi/ |
8b59a454 LB |
243 | |
244 | ACPI BATTERY DRIVERS | |
8b58be88 | 245 | M: Alexey Starikovskiy <[email protected]> |
8b59a454 | 246 | L: [email protected] |
0638bc8d | 247 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 248 | S: Supported |
679655da JP |
249 | F: drivers/acpi/battery.c |
250 | F: drivers/acpi/*sbs* | |
8b59a454 LB |
251 | |
252 | ACPI EC DRIVER | |
8b58be88 | 253 | M: Alexey Starikovskiy <[email protected]> |
8b59a454 | 254 | L: [email protected] |
0638bc8d | 255 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 256 | S: Supported |
679655da | 257 | F: drivers/acpi/ec.c |
8b59a454 LB |
258 | |
259 | ACPI FAN DRIVER | |
8b58be88 | 260 | M: Zhang Rui <[email protected]> |
8b59a454 | 261 | L: [email protected] |
0638bc8d | 262 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 263 | S: Supported |
679655da | 264 | F: drivers/acpi/fan.c |
1da177e4 | 265 | |
8e0af514 | 266 | ACPI PROCESSOR AGGREGATOR DRIVER |
5e5027bd | 267 | M: Shaohua Li <[email protected]> |
8e0af514 SL |
268 | L: [email protected] |
269 | W: http://www.lesswatts.org/projects/acpi/ | |
270 | S: Supported | |
271 | F: drivers/acpi/acpi_pad.c | |
272 | ||
8b59a454 | 273 | ACPI THERMAL DRIVER |
8b58be88 | 274 | M: Zhang Rui <[email protected]> |
8b59a454 | 275 | L: [email protected] |
0638bc8d | 276 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 277 | S: Supported |
679655da | 278 | F: drivers/acpi/*thermal* |
998be20f | 279 | |
359acec8 | 280 | ACPI VIDEO DRIVER |
8b58be88 | 281 | M: Zhang Rui <[email protected]> |
8b59a454 | 282 | L: [email protected] |
0638bc8d | 283 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 284 | S: Supported |
679655da | 285 | F: drivers/acpi/video.c |
998be20f | 286 | |
bff431e4 | 287 | ACPI WMI DRIVER |
8b58be88 | 288 | M: Carlos Corbacho <[email protected]> |
d0944853 | 289 | L: [email protected] |
795fb7e7 JD |
290 | W: http://www.lesswatts.org/projects/acpi/ |
291 | S: Maintained | |
679655da | 292 | F: drivers/platform/x86/wmi.c |
bff431e4 | 293 | |
2f39d519 | 294 | AD1889 ALSA SOUND DRIVER |
8b58be88 JP |
295 | M: Kyle McMartin <[email protected]> |
296 | M: Thibaut Varene <[email protected]> | |
795fb7e7 JD |
297 | W: http://wiki.parisc-linux.org/AD1889 |
298 | L: [email protected] | |
299 | S: Maintained | |
679655da | 300 | F: sound/pci/ad1889.* |
2f39d519 | 301 | |
1da177e4 | 302 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 303 | M: Jean Delvare <[email protected]> |
cc0b07ed | 304 | L: [email protected] |
1da177e4 | 305 | S: Maintained |
679655da JP |
306 | F: Documentation/hwmon/adm1025 |
307 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 308 | |
cae2caae | 309 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 310 | M: Corentin Labbe <[email protected]> |
cae2caae CL |
311 | L: [email protected] |
312 | S: Maintained | |
679655da | 313 | F: drivers/hwmon/adm1029.c |
cae2caae | 314 | |
cc0b88cf | 315 | ADM8211 WIRELESS DRIVER |
cc0b88cf MW |
316 | L: [email protected] |
317 | W: http://linuxwireless.org/ | |
e71bcbd0 | 318 | S: Orphan |
679655da | 319 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 320 | |
1da177e4 | 321 | ADT746X FAN DRIVER |
8b58be88 | 322 | M: Colin Leroy <[email protected]> |
1da177e4 | 323 | S: Maintained |
679655da | 324 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 325 | |
b058b859 JD |
326 | ADT7475 HARDWARE MONITOR DRIVER |
327 | M: Jean Delvare <[email protected]> | |
328 | L: [email protected] | |
329 | S: Maintained | |
330 | F: Documentation/hwmon/adt7475 | |
331 | F: drivers/hwmon/adt7475.c | |
332 | ||
8c6af9e1 | 333 | ADVANSYS SCSI DRIVER |
8b58be88 | 334 | M: Matthew Wilcox <[email protected]> |
8c6af9e1 MW |
335 | L: [email protected] |
336 | S: Maintained | |
679655da JP |
337 | F: Documentation/scsi/advansys.txt |
338 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 339 | |
1da177e4 | 340 | AEDSP16 DRIVER |
8b58be88 | 341 | M: Riccardo Facchetti <[email protected]> |
1da177e4 | 342 | S: Maintained |
679655da | 343 | F: sound/oss/aedsp16.c |
1da177e4 LT |
344 | |
345 | AFFS FILE SYSTEM | |
8b58be88 | 346 | M: Roman Zippel <[email protected]> |
1da177e4 | 347 | S: Maintained |
679655da JP |
348 | F: Documentation/filesystems/affs.txt |
349 | F: fs/affs/ | |
1da177e4 | 350 | |
e2d1d6c0 | 351 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 352 | M: David Howells <[email protected]> |
e2d1d6c0 RD |
353 | L: [email protected] |
354 | S: Supported | |
679655da JP |
355 | F: fs/afs/ |
356 | F: include/net/af_rxrpc.h | |
357 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 358 | |
1da177e4 | 359 | AGPGART DRIVER |
8b58be88 | 360 | M: David Airlie <[email protected]> |
54e5881d | 361 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 362 | S: Maintained |
679655da JP |
363 | F: drivers/char/agp/ |
364 | F: include/linux/agp* | |
1da177e4 LT |
365 | |
366 | AHA152X SCSI DRIVER | |
8b58be88 | 367 | M: "Juergen E. Fischer" <[email protected]> |
1da177e4 LT |
368 | L: [email protected] |
369 | S: Maintained | |
679655da JP |
370 | F: drivers/scsi/aha152x* |
371 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 372 | |
64624d4f | 373 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 374 | M: Hannes Reinecke <[email protected]> |
64624d4f | 375 | L: [email protected] |
1da177e4 | 376 | S: Maintained |
679655da JP |
377 | F: drivers/scsi/aic7xxx/ |
378 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 379 | |
e2d1d6c0 | 380 | AIO |
8b58be88 | 381 | M: Benjamin LaHaise <[email protected]> |
e2d1d6c0 RD |
382 | L: [email protected] |
383 | S: Supported | |
679655da JP |
384 | F: fs/aio.c |
385 | F: include/linux/*aio*.h | |
e2d1d6c0 | 386 | |
1da177e4 | 387 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 388 | M: Duncan Sands <[email protected]> |
6372594a | 389 | L: [email protected] |
1da177e4 LT |
390 | W: http://www.linux-usb.org/SpeedTouch/ |
391 | S: Maintained | |
679655da JP |
392 | F: drivers/usb/atm/speedtch.c |
393 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 394 | |
272f133a | 395 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 396 | M: Manuel Lauss <[email protected]> |
08fcb720 | 397 | S: Maintained |
679655da | 398 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 399 | |
4a4e5787 | 400 | ALI1563 I2C DRIVER |
8b58be88 | 401 | M: Rudolf Marek <[email protected]> |
846557d3 | 402 | L: [email protected] |
4a4e5787 | 403 | S: Maintained |
679655da JP |
404 | F: Documentation/i2c/busses/i2c-ali1563 |
405 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 406 | |
1da177e4 | 407 | ALPHA PORT |
8b58be88 | 408 | M: Richard Henderson <[email protected]> |
8b58be88 | 409 | M: Ivan Kokshaysky <[email protected]> |
abd4d609 | 410 | M: Matt Turner <[email protected]> |
a9406699 | 411 | L: [email protected] |
679655da | 412 | F: arch/alpha/ |
1da177e4 | 413 | |
167a675a | 414 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 415 | M: Thomas Dahlmann <[email protected]> |
67d76710 | 416 | L: [email protected] (moderated for non-subscribers) |
167a675a | 417 | S: Supported |
679655da | 418 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 419 | |
f90b8116 | 420 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
ce00f85c | 421 | P: Jordan Crouse |
67d76710 | 422 | L: [email protected] (moderated for non-subscribers) |
f90b8116 JC |
423 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
424 | S: Supported | |
679655da JP |
425 | F: drivers/char/hw_random/geode-rng.c |
426 | F: drivers/crypto/geode* | |
427 | F: drivers/video/geode/ | |
428 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 429 | |
919ee7dd | 430 | AMD IOMMU (AMD-VI) |
8b58be88 | 431 | M: Joerg Roedel <[email protected]> |
919ee7dd | 432 | L: [email protected] |
54e5881d | 433 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git |
919ee7dd | 434 | S: Supported |
679655da JP |
435 | F: arch/x86/kernel/amd_iommu*.c |
436 | F: arch/x86/include/asm/amd_iommu*.h | |
919ee7dd | 437 | |
e7f5b309 | 438 | AMD MICROCODE UPDATE SUPPORT |
8b58be88 | 439 | M: Andreas Herrmann <[email protected]> |
7d2c86b5 JP |
440 | L: [email protected] |
441 | S: Supported | |
679655da | 442 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 443 | |
284f42b6 | 444 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 JP |
445 | M: Stelian Pop <[email protected]> |
446 | M: Michael Hanselmann <[email protected]> | |
284f42b6 | 447 | S: Supported |
679655da | 448 | F: drivers/hwmon/ams/ |
284f42b6 | 449 | |
f94b533d | 450 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
451 | M: Tom Tucker <[email protected]> |
452 | M: Steve Wise <[email protected]> | |
e6cc0fd1 | 453 | L: [email protected] |
f94b533d | 454 | S: Maintained |
679655da | 455 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 456 | |
4bdef3bd MF |
457 | ANALOG DEVICES INC ASOC DRIVERS |
458 | L: [email protected] | |
459 | L: [email protected] (moderated for non-subscribers) | |
460 | W: http://blackfin.uclinux.org/ | |
461 | S: Supported | |
462 | F: sound/soc/blackfin/* | |
463 | F: sound/soc/codecs/ad1* | |
464 | F: sound/soc/codecs/adau* | |
465 | F: sound/soc/codecs/adav* | |
466 | F: sound/soc/codecs/ssm* | |
467 | ||
42269063 | 468 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 469 | M: Johannes Berg <[email protected]> |
a4724ed6 | 470 | L: [email protected] |
93711660 | 471 | L: [email protected] (moderated for non-subscribers) |
42269063 | 472 | S: Maintained |
679655da | 473 | F: sound/aoa/ |
42269063 | 474 | |
1da177e4 | 475 | APM DRIVER |
8b58be88 | 476 | M: Stephen Rothwell <[email protected]> |
1da177e4 LT |
477 | L: [email protected] |
478 | W: http://www.canb.auug.org.au/~sfr/ | |
479 | S: Supported | |
679655da JP |
480 | F: arch/x86/kernel/apm_32.c |
481 | F: include/linux/apm_bios.h | |
1da177e4 | 482 | |
bd7aa4b2 | 483 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 484 | M: Henrik Rydberg <[email protected]> |
bd7aa4b2 HR |
485 | L: [email protected] |
486 | S: Maintained | |
679655da | 487 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 488 | |
6f2fad74 | 489 | APPLE SMC DRIVER |
d618540f HR |
490 | M: Henrik Rydberg <[email protected]> |
491 | L: [email protected] | |
6f2fad74 | 492 | S: Maintained |
679655da | 493 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 494 | |
1da177e4 | 495 | APPLETALK NETWORK LAYER |
8b58be88 | 496 | M: Arnaldo Carvalho de Melo <[email protected]> |
1da177e4 | 497 | S: Maintained |
679655da JP |
498 | F: drivers/net/appletalk/ |
499 | F: net/appletalk/ | |
1da177e4 | 500 | |
1154ea7d | 501 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 502 | M: Jaya Kumar <[email protected]> |
1154ea7d | 503 | S: Maintained |
679655da JP |
504 | F: drivers/video/arcfb.c |
505 | F: drivers/video/fb_defio.c | |
1154ea7d | 506 | |
1da177e4 | 507 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 508 | M: Ian Molton <[email protected]> |
1da177e4 | 509 | S: Maintained |
679655da JP |
510 | F: arch/arm/lib/floppydma.S |
511 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 512 | |
d4275354 | 513 | ARM PORT |
8b58be88 | 514 | M: Russell King <[email protected]> |
efc03ecb | 515 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
516 | W: http://www.arm.linux.org.uk/ |
517 | S: Maintained | |
518 | F: arch/arm/ | |
519 | ||
cefbf4ea RK |
520 | ARM PRIMECELL AACI PL041 DRIVER |
521 | M: Russell King <[email protected]> | |
522 | S: Maintained | |
523 | F: sound/arm/aaci.* | |
524 | ||
525 | ARM PRIMECELL CLCD PL110 DRIVER | |
526 | M: Russell King <[email protected]> | |
527 | S: Maintained | |
528 | F: drivers/video/amba-clcd.* | |
529 | ||
530 | ARM PRIMECELL KMI PL050 DRIVER | |
531 | M: Russell King <[email protected]> | |
532 | S: Maintained | |
533 | F: drivers/input/serio/ambakmi.* | |
534 | F: include/linux/amba/kmi.h | |
535 | ||
2761f5c2 | 536 | ARM PRIMECELL MMCI PL180/1 DRIVER |
6d79947a | 537 | S: Orphan |
679655da | 538 | F: drivers/mmc/host/mmci.* |
2761f5c2 | 539 | |
cefbf4ea RK |
540 | ARM PRIMECELL BUS SUPPORT |
541 | M: Russell King <[email protected]> | |
542 | S: Maintained | |
543 | F: drivers/amba/ | |
544 | F: include/linux/amba/bus.h | |
545 | ||
2b7a52a4 | 546 | ARM/ADI ROADRUNNER MACHINE SUPPORT |
8b58be88 | 547 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 548 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 549 | S: Maintained |
679655da JP |
550 | F: arch/arm/mach-ixp23xx/ |
551 | F: arch/arm/mach-ixp23xx/include/mach/ | |
2b7a52a4 LB |
552 | |
553 | ARM/ADS SPHERE MACHINE SUPPORT | |
8b58be88 | 554 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 555 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
556 | S: Maintained |
557 | ||
9c784f95 | 558 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 559 | M: Sergey Lapin <[email protected]> |
efc03ecb | 560 | L: [email protected] (moderated for non-subscribers) |
9c784f95 SL |
561 | S: Maintained |
562 | ||
2b7a52a4 | 563 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 564 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 565 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
566 | S: Maintained |
567 | ||
d4a89c7d | 568 | ARM/ATMEL AT91RM9200 ARM ARCHITECTURE |
8b58be88 | 569 | M: Andrew Victor <[email protected]> |
efc03ecb | 570 | L: [email protected] (moderated for non-subscribers) |
795fb7e7 JD |
571 | W: http://maxim.org.za/at91_26.html |
572 | S: Maintained | |
d4a89c7d | 573 | |
57a473f2 | 574 | ARM/BCMRING ARM ARCHITECTURE |
ddd559b1 RK |
575 | M: Leo Chen <[email protected]> |
576 | M: Scott Branden <[email protected]> | |
efc03ecb | 577 | L: [email protected] (moderated for non-subscribers) |
57a473f2 LC |
578 | S: Maintained |
579 | F: arch/arm/mach-bcmring | |
580 | ||
581 | ARM/BCMRING MTD NAND DRIVER | |
ddd559b1 RK |
582 | M: Leo Chen <[email protected]> |
583 | M: Scott Branden <[email protected]> | |
57a473f2 LC |
584 | L: [email protected] |
585 | S: Maintained | |
586 | F: drivers/mtd/nand/bcm_umi_nand.c | |
587 | F: drivers/mtd/nand/bcm_umi_bch.c | |
57a473f2 LC |
588 | F: drivers/mtd/nand/nand_bcm_umi.h |
589 | ||
d94f944e AV |
590 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
591 | M: Anton Vorontsov <[email protected]> | |
592 | S: Maintained | |
593 | F: arch/arm/mach-cns3xxx/ | |
594 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
595 | ||
2b7a52a4 | 596 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 RK |
597 | M: Hartley Sweeten <[email protected]> |
598 | M: Ryan Mallon <[email protected]> | |
efc03ecb | 599 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 | 600 | S: Maintained |
d19d3667 HS |
601 | F: arch/arm/mach-ep93xx/ |
602 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
603 | |
604 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 605 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 606 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
607 | S: Maintained |
608 | ||
d4275354 | 609 | ARM/CLKDEV SUPPORT |
8b58be88 | 610 | M: Russell King <[email protected]> |
efc03ecb | 611 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
612 | F: arch/arm/common/clkdev.c |
613 | F: arch/arm/include/asm/clkdev.h | |
614 | ||
d48134e7 | 615 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 616 | M: Mike Rapoport <[email protected]> |
efc03ecb | 617 | L: [email protected] (moderated for non-subscribers) |
a9da4f7e RK |
618 | S: Maintained |
619 | ||
94150095 HF |
620 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
621 | M: Hubert Feurstein <[email protected]> | |
622 | S: Maintained | |
623 | F: arch/arm/mach-ep93xx/micro9.c | |
624 | ||
1da177e4 | 625 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 626 | M: Richard Purdie <[email protected]> |
1da177e4 LT |
627 | S: Maintained |
628 | ||
881a95f9 | 629 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 630 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 631 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
632 | T: git git://git.berlios.de/gemini-board |
633 | S: Maintained | |
f49afbb5 | 634 | F: arch/arm/mach-gemini/ |
881a95f9 | 635 | |
d4275354 | 636 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 637 | M: Russell King <[email protected]> |
efc03ecb | 638 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
639 | W: http://www.arm.linux.org.uk/ |
640 | S: Maintained | |
641 | F: arch/arm/mach-ebsa110/ | |
642 | F: drivers/net/arm/am79c961a.* | |
643 | ||
a9da4f7e | 644 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
645 | M: Daniel Ribeiro <[email protected]> |
646 | M: Stefan Schmidt <[email protected]> | |
647 | M: Harald Welte <[email protected]> | |
a9da4f7e RK |
648 | L: [email protected] (subscribers-only) |
649 | W: http://www.openezx.org/ | |
650 | S: Maintained | |
cafc2265 SS |
651 | T: topgit git://git.openezx.org/openezx.git |
652 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 653 | |
6a915af9 | 654 | ARM/FARADAY FA526 PORT |
162500b3 | 655 | M: Hans Ulli Kroll <[email protected]> |
efc03ecb | 656 | L: [email protected] (moderated for non-subscribers) |
162500b3 HUK |
657 | S: Maintained |
658 | T: git://git.berlios.de/gemini-board | |
f49afbb5 | 659 | F: arch/arm/mm/*-fa* |
6a915af9 | 660 | |
d4275354 | 661 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 662 | M: Russell King <[email protected]> |
efc03ecb | 663 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
664 | W: http://www.arm.linux.org.uk/ |
665 | S: Maintained | |
666 | F: arch/arm/include/asm/hardware/dec21285.h | |
667 | F: arch/arm/mach-footbridge/ | |
668 | ||
86183a5f | 669 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 670 | M: Sascha Hauer <[email protected]> |
efc03ecb | 671 | L: [email protected] (moderated for non-subscribers) |
86183a5f | 672 | S: Maintained |
b16533d3 UKK |
673 | T: git://git.pengutronix.de/git/imx/linux-2.6.git |
674 | F: arch/arm/mach-mx*/ | |
675 | F: arch/arm/plat-mxc/ | |
86183a5f | 676 | |
3d48e1d0 AK |
677 | ARM/FREESCALE IMX51 |
678 | M: Amit Kucheria <[email protected]> | |
679 | L: [email protected] (moderated for non-subscribers) | |
680 | S: Maintained | |
681 | F: arch/arm/mach-mx5/ | |
682 | ||
2b7a52a4 | 683 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 684 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 685 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
686 | S: Maintained |
687 | ||
90b8fc34 | 688 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 689 | M: Steve Sakoman <[email protected]> |
efc03ecb | 690 | L: [email protected] (moderated for non-subscribers) |
90b8fc34 JK |
691 | S: Maintained |
692 | ||
ef47d5f0 | 693 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 694 | M: Philipp Zabel <[email protected]> |
ef47d5f0 PZ |
695 | S: Maintained |
696 | F: arch/arm/mach-pxa/hx4700.c | |
697 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
698 | ||
21f37bc3 | 699 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 700 | M: Kristoffer Ericson <[email protected]> |
795fb7e7 JD |
701 | W: www.jlime.com |
702 | S: Maintained | |
084bad91 KE |
703 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
704 | F: arch/arm/mach-sa1100/jornada720.c | |
705 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 706 | |
403d2971 MV |
707 | ARM/INCOME PXA270 SUPPORT |
708 | M: Marek Vasut <[email protected]> | |
709 | L: [email protected] (moderated for non-subscribers) | |
710 | S: Maintained | |
711 | F: arch/arm/mach-pxa/income.c | |
712 | F: arch/arm/mach-pxa/include/mach-pxa/income.h | |
713 | ||
2b7a52a4 | 714 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 JP |
715 | M: Lennert Buytenhek <[email protected]> |
716 | M: Dan Williams <[email protected]> | |
efc03ecb | 717 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 718 | S: Maintained |
e2bdb176 DW |
719 | |
720 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
8b58be88 | 721 | M: Dan Williams <[email protected]> |
efc03ecb | 722 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 723 | S: Maintained |
2b7a52a4 LB |
724 | |
725 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 JP |
726 | M: Lennert Buytenhek <[email protected]> |
727 | M: Dan Williams <[email protected]> | |
efc03ecb | 728 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 729 | S: Maintained |
2b7a52a4 LB |
730 | |
731 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 JP |
732 | M: Lennert Buytenhek <[email protected]> |
733 | M: Dan Williams <[email protected]> | |
efc03ecb | 734 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 735 | S: Maintained |
2b7a52a4 LB |
736 | |
737 | ARM/INTEL IXP2000 ARM ARCHITECTURE | |
8b58be88 | 738 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 739 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
740 | S: Maintained |
741 | ||
742 | ARM/INTEL IXDP2850 MACHINE SUPPORT | |
8b58be88 | 743 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 744 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
745 | S: Maintained |
746 | ||
747 | ARM/INTEL IXP23XX ARM ARCHITECTURE | |
8b58be88 | 748 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 749 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
750 | S: Maintained |
751 | ||
dfdd8cc9 KH |
752 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
753 | M: Imre Kaloz <[email protected]> | |
754 | M: Krzysztof Halasa <[email protected]> | |
baea7b94 | 755 | L: [email protected] (moderated for non-subscribers) |
dfdd8cc9 KH |
756 | S: Maintained |
757 | F: arch/arm/mach-ixp4xx/ | |
758 | ||
7f49a7f7 JC |
759 | ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT |
760 | M: Jonathan Cameron <[email protected]> | |
761 | L: [email protected] (moderated for non-subscribers) | |
762 | S: Maintained | |
763 | F: arch/arm/mach-pxa/imote2.c | |
764 | ||
765 | ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT | |
766 | M: Jonathan Cameron <[email protected]> | |
767 | L: [email protected] (moderated for non-subscribers) | |
768 | S: Maintained | |
769 | F: arch/arm/mach-pxa/stargate2.c | |
770 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
771 | ||
2b7a52a4 | 772 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 JP |
773 | M: Lennert Buytenhek <[email protected]> |
774 | M: Dan Williams <[email protected]> | |
efc03ecb | 775 | L: [email protected] (moderated for non-subscribers) |
f00f510a | 776 | S: Maintained |
2b7a52a4 LB |
777 | |
778 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 779 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 780 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
781 | S: Maintained |
782 | ||
783 | ARM/LOGICPD PXA270 MACHINE SUPPORT | |
8b58be88 | 784 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 785 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
786 | S: Maintained |
787 | ||
3b886171 | 788 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 789 | M: Philipp Zabel <[email protected]> |
3b886171 PZ |
790 | S: Maintained |
791 | ||
54a246ff | 792 | ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support |
18e2842b NP |
793 | M: Lennert Buytenhek <[email protected]> |
794 | M: Nicolas Pitre <[email protected]> | |
efc03ecb | 795 | L: [email protected] (moderated for non-subscribers) |
18e2842b | 796 | S: Odd Fixes |
54a246ff NP |
797 | F: arch/arm/mach-loki/ |
798 | F: arch/arm/mach-kirkwood/ | |
799 | F: arch/arm/mach-mv78xx0/ | |
800 | F: arch/arm/mach-orion5x/ | |
801 | F: arch/arm/plat-orion/ | |
3b886171 | 802 | |
d78ff0a5 | 803 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 804 | M: Robert Jarzmik <[email protected]> |
efc03ecb | 805 | L: [email protected] (moderated for non-subscribers) |
d78ff0a5 RJ |
806 | F: arch/arm/mach-pxa/mioa701.c |
807 | S: Maintained | |
808 | ||
9624dfe6 | 809 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 810 | M: Michael Petchkovsky <[email protected]> |
9624dfe6 KE |
811 | S: Maintained |
812 | ||
e0ee9851 | 813 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 JP |
814 | M: Alessandro Rubini <[email protected]> |
815 | M: STEricsson <[email protected]> | |
816 | L: [email protected] (moderated for non-subscribers) | |
817 | S: Maintained | |
818 | F: arch/arm/mach-nomadik/ | |
819 | F: arch/arm/plat-nomadik/ | |
e0ee9851 | 820 | |
9d76295a | 821 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 822 | M: Nelson Castillo <[email protected]> |
9d76295a AG |
823 | L: [email protected] (subscribers-only) |
824 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
825 | S: Supported | |
826 | ||
0c19d21e DW |
827 | ARM/QUALCOMM MSM MACHINE SUPPORT |
828 | M: David Brown <[email protected]> | |
829 | M: Daniel Walker <[email protected]> | |
830 | M: Bryan Huntsman <[email protected]> | |
c68af41d | 831 | L: [email protected] |
0c19d21e DW |
832 | F: arch/arm/mach-msm/ |
833 | F: drivers/video/msm/ | |
834 | F: drivers/mmc/host/msm_sdcc.c | |
835 | F: drivers/mmc/host/msm_sdcc.h | |
836 | F: drivers/serial/msm_serial.h | |
837 | F: drivers/serial/msm_serial.c | |
838 | T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git | |
839 | S: Maintained | |
840 | ||
8459c159 | 841 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
842 | M: Dmitry Eremin-Solenikov <[email protected]> |
843 | M: Dirk Opfer <[email protected]> | |
8459c159 DO |
844 | S: Maintained |
845 | ||
5d783a2d | 846 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 847 | M: Marek Vasut <[email protected]> |
75280787 | 848 | L: [email protected] |
b5e4ad57 MV |
849 | W: http://hackndev.com |
850 | S: Maintained | |
933d35f0 JP |
851 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
852 | F: arch/arm/mach-pxa/palmtx.c | |
853 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
854 | F: arch/arm/mach-pxa/palmt5.c | |
855 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
856 | F: arch/arm/mach-pxa/palmld.c | |
857 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
858 | F: arch/arm/mach-pxa/palmte2.c | |
859 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
860 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 861 | |
b57fe924 | 862 | ARM/PALM TREO SUPPORT |
8b58be88 | 863 | M: Tomas Cech <[email protected]> |
75280787 | 864 | L: [email protected] |
90af5811 TSC |
865 | W: http://hackndev.com |
866 | S: Maintained | |
b57fe924 JP |
867 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
868 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 869 | |
c49e1e63 | 870 | ARM/PALMZ72 SUPPORT |
8b58be88 | 871 | M: Sergey Lapin <[email protected]> |
75280787 | 872 | L: [email protected] |
7d2c86b5 JP |
873 | W: http://hackndev.com |
874 | S: Maintained | |
933d35f0 JP |
875 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
876 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 877 | |
1da177e4 | 878 | ARM/PLEB SUPPORT |
8b58be88 | 879 | M: Peter Chubb <[email protected]> |
1da177e4 LT |
880 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
881 | S: Maintained | |
882 | ||
883 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 884 | M: Stefan Eletzhofer <[email protected]> |
efc03ecb | 885 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
886 | W: http://www.arm.linux.org.uk/ |
887 | S: Maintained | |
888 | ||
2b7a52a4 | 889 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 890 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 891 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
892 | S: Maintained |
893 | ||
d4275354 | 894 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 895 | M: Russell King <[email protected]> |
efc03ecb | 896 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
897 | W: http://www.arm.linux.org.uk/ |
898 | S: Maintained | |
899 | F: arch/arm/common/time-acorn.c | |
900 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S | |
901 | F: arch/arm/include/asm/hardware/ioc.h | |
902 | F: arch/arm/include/asm/hardware/iomd.h | |
903 | F: arch/arm/include/asm/hardware/memc.h | |
904 | F: arch/arm/mach-rpc/ | |
905 | F: drivers/net/arm/ether* | |
906 | F: drivers/scsi/arm/ | |
907 | ||
1da177e4 | 908 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 909 | M: Alexander Schulz <[email protected]> |
1da177e4 LT |
910 | W: http://www.shark-linux.de/shark.html |
911 | S: Maintained | |
912 | ||
b21477f9 | 913 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 914 | M: Ben Dooks <[email protected]> |
482ce512 | 915 | M: Kukjin Kim <[email protected]> |
efc03ecb | 916 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
917 | W: http://www.fluff.org/ben/linux/ |
918 | S: Maintained | |
482ce512 | 919 | F: arch/arm/plat-samsung/ |
b21477f9 | 920 | F: arch/arm/plat-s3c24xx/ |
482ce512 | 921 | F: arch/arm/plat-s5p/ |
b21477f9 | 922 | |
1da177e4 | 923 | ARM/S3C2410 ARM ARCHITECTURE |
8b58be88 | 924 | M: Ben Dooks <[email protected]> |
efc03ecb | 925 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
926 | W: http://www.fluff.org/ben/linux/ |
927 | S: Maintained | |
3a45c9e4 | 928 | F: arch/arm/mach-s3c2410/ |
1da177e4 LT |
929 | |
930 | ARM/S3C2440 ARM ARCHITECTURE | |
8b58be88 | 931 | M: Ben Dooks <[email protected]> |
efc03ecb | 932 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
933 | W: http://www.fluff.org/ben/linux/ |
934 | S: Maintained | |
3a45c9e4 | 935 | F: arch/arm/mach-s3c2440/ |
1da177e4 | 936 | |
b21477f9 | 937 | ARM/S3C2442 ARM ARCHITECTURE |
8b58be88 | 938 | M: Ben Dooks <[email protected]> |
efc03ecb | 939 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
940 | W: http://www.fluff.org/ben/linux/ |
941 | S: Maintained | |
942 | F: arch/arm/mach-s3c2442/ | |
943 | ||
944 | ARM/S3C2443 ARM ARCHITECTURE | |
8b58be88 | 945 | M: Ben Dooks <[email protected]> |
efc03ecb | 946 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
947 | W: http://www.fluff.org/ben/linux/ |
948 | S: Maintained | |
949 | F: arch/arm/mach-s3c2443/ | |
950 | ||
951 | ARM/S3C6400 ARM ARCHITECTURE | |
8b58be88 | 952 | M: Ben Dooks <[email protected]> |
efc03ecb | 953 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
954 | W: http://www.fluff.org/ben/linux/ |
955 | S: Maintained | |
956 | F: arch/arm/mach-s3c6400/ | |
957 | ||
958 | ARM/S3C6410 ARM ARCHITECTURE | |
8b58be88 | 959 | M: Ben Dooks <[email protected]> |
efc03ecb | 960 | L: [email protected] (moderated for non-subscribers) |
b21477f9 BD |
961 | W: http://www.fluff.org/ben/linux/ |
962 | S: Maintained | |
963 | F: arch/arm/mach-s3c6410/ | |
1da177e4 | 964 | |
f556cb07 KK |
965 | ARM/S5P ARM ARCHITECTURES |
966 | M: Kukjin Kim <[email protected]> | |
967 | L: [email protected] (moderated for non-subscribers) | |
968 | L: [email protected] (moderated for non-subscribers) | |
969 | S: Maintained | |
970 | F: arch/arm/mach-s5p*/ | |
971 | ||
aaac7d9e KP |
972 | ARM/SAMSUNG S5P SERIES FIMC SUPPORT |
973 | M: Kyungmin Park <[email protected]> | |
974 | M: Sylwester Nawrocki <[email protected]> | |
975 | L: [email protected] | |
976 | L: [email protected] | |
977 | S: Maintained | |
978 | F: arch/arm/plat-s5p/dev-fimc* | |
979 | F: arch/arm/plat-samsung/include/plat/*fimc* | |
980 | F: drivers/media/video/s5p-fimc/ | |
981 | ||
d48d38e8 PM |
982 | ARM/SHMOBILE ARM ARCHITECTURE |
983 | M: Paul Mundt <[email protected]> | |
984 | M: Magnus Damm <[email protected]> | |
985 | L: [email protected] | |
d48d38e8 | 986 | W: http://oss.renesas.com |
bbff48f5 PM |
987 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/genesis-2.6.git | |
d48d38e8 PM |
989 | S: Supported |
990 | F: arch/arm/mach-shmobile/ | |
991 | F: drivers/sh/ | |
992 | ||
2b7a52a4 | 993 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 994 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 995 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
996 | S: Maintained |
997 | ||
998 | ARM/THECUS N2100 MACHINE SUPPORT | |
8b58be88 | 999 | M: Lennert Buytenhek <[email protected]> |
efc03ecb | 1000 | L: [email protected] (moderated for non-subscribers) |
2b7a52a4 LB |
1001 | S: Maintained |
1002 | ||
98ad6e3b | 1003 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1004 | M: Wan ZongShun <[email protected]> |
efc03ecb | 1005 | L: [email protected] (moderated for non-subscribers) |
7d2c86b5 JP |
1006 | W: http://www.mcuos.com |
1007 | S: Maintained | |
4e89e8f6 WZ |
1008 | F: arch/arm/mach-w90x900/ |
1009 | F: arch/arm/mach-nuc93x/ | |
1010 | F: drivers/input/keyboard/w90p910_keypad.c | |
1011 | F: drivers/input/touchscreen/w90p910_ts.c | |
1012 | F: drivers/watchdog/nuc900_wdt.c | |
1013 | F: drivers/net/arm/w90p910_ether.c | |
5351684f | 1014 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 WZ |
1015 | F: drivers/rtc/rtc-nuc900.c |
1016 | F: drivers/spi/spi_nuc900.c | |
1017 | F: drivers/usb/host/ehci-w90x900.c | |
1018 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1019 | |
54274d71 LW |
1020 | ARM/U300 MACHINE SUPPORT |
1021 | M: Linus Walleij <[email protected]> | |
1022 | L: [email protected] (moderated for non-subscribers) | |
1023 | S: Supported | |
1024 | F: arch/arm/mach-u300/ | |
1025 | F: drivers/i2c/busses/i2c-stu300.c | |
1026 | F: drivers/rtc/rtc-coh901331.c | |
1027 | F: drivers/watchdog/coh901327_wdt.c | |
1028 | F: drivers/dma/coh901318* | |
1029 | ||
870725d9 SK |
1030 | ARM/U8500 ARM ARCHITECTURE |
1031 | M: Srinidhi Kasagar <[email protected]> | |
1032 | L: [email protected] (moderated for non-subscribers) | |
1033 | S: Maintained | |
1034 | F: arch/arm/mach-ux500/ | |
1035 | ||
d4275354 | 1036 | ARM/VFP SUPPORT |
8b58be88 | 1037 | M: Russell King <[email protected]> |
efc03ecb | 1038 | L: [email protected] (moderated for non-subscribers) |
d4275354 RK |
1039 | W: http://www.arm.linux.org.uk/ |
1040 | S: Maintained | |
1041 | F: arch/arm/vfp/ | |
1042 | ||
e66b6d8e MV |
1043 | ARM/VOIPAC PXA270 SUPPORT |
1044 | M: Marek Vasut <[email protected]> | |
1045 | L: [email protected] (moderated for non-subscribers) | |
1046 | S: Maintained | |
1047 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1048 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e MV |
1049 | |
1050 | ARM/ZIPIT Z2 SUPPORT | |
1051 | M: Marek Vasut <[email protected]> | |
1052 | L: [email protected] (moderated for non-subscribers) | |
1053 | S: Maintained | |
1054 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1055 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1056 | |
d58de038 GJ |
1057 | ASC7621 HARDWARE MONITOR DRIVER |
1058 | M: George Joseph <[email protected]> | |
1059 | L: [email protected] | |
1060 | S: Maintained | |
1061 | F: Documentation/hwmon/asc7621 | |
1062 | F: drivers/hwmon/asc7621.c | |
1063 | ||
1da177e4 | 1064 | ASUS ACPI EXTRAS DRIVER |
8b58be88 JP |
1065 | M: Corentin Chary <[email protected]> |
1066 | M: Karol Kozimor <[email protected]> | |
1da177e4 | 1067 | L: [email protected] |
d0944853 | 1068 | L: [email protected] |
76593d6f | 1069 | W: http://acpi4asus.sf.net |
85091b71 | 1070 | S: Maintained |
679655da | 1071 | F: drivers/platform/x86/asus_acpi.c |
85091b71 | 1072 | |
6ea884db | 1073 | ASUS ASB100 HARDWARE MONITOR DRIVER |
8b58be88 | 1074 | M: "Mark M. Hoffman" <[email protected]> |
6ea884db MH |
1075 | L: [email protected] |
1076 | S: Maintained | |
679655da | 1077 | F: drivers/hwmon/asb100.c |
6ea884db | 1078 | |
85091b71 | 1079 | ASUS LAPTOP EXTRAS DRIVER |
8b58be88 | 1080 | M: Corentin Chary <[email protected]> |
85091b71 | 1081 | L: [email protected] |
d0944853 | 1082 | L: [email protected] |
76593d6f | 1083 | W: http://acpi4asus.sf.net |
1da177e4 | 1084 | S: Maintained |
679655da | 1085 | F: drivers/platform/x86/asus-laptop.c |
1da177e4 | 1086 | |
953a6479 | 1087 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
8b58be88 | 1088 | M: Dan Williams <[email protected]> |
b3e5f263 DW |
1089 | W: http://sourceforge.net/projects/xscaleiop |
1090 | S: Supported | |
679655da JP |
1091 | F: Documentation/crypto/async-tx-api.txt |
1092 | F: crypto/async_tx/ | |
1093 | F: drivers/dma/ | |
1094 | F: include/linux/dmaengine.h | |
1095 | F: include/linux/async_tx.h | |
b3e5f263 | 1096 | |
a1867d36 WS |
1097 | AT24 EEPROM DRIVER |
1098 | M: Wolfram Sang <[email protected]> | |
1099 | L: [email protected] | |
1100 | S: Maintained | |
1101 | F: drivers/misc/eeprom/at24.c | |
1102 | F: include/linux/i2c/at24.h | |
1103 | ||
e7839f25 | 1104 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1105 | M: "Ed L. Cashin" <[email protected]> |
1da177e4 LT |
1106 | W: http://www.coraid.com/support/linux |
1107 | S: Supported | |
679655da JP |
1108 | F: Documentation/aoe/ |
1109 | F: drivers/block/aoe/ | |
1da177e4 | 1110 | |
fa1c114f | 1111 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1112 | M: Jiri Slaby <[email protected]> |
1113 | M: Nick Kossifidis <[email protected]> | |
1114 | M: "Luis R. Rodriguez" <[email protected]> | |
1115 | M: Bob Copeland <[email protected]> | |
fa1c114f JS |
1116 | L: [email protected] |
1117 | L: [email protected] | |
72c706b7 | 1118 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1119 | S: Maintained |
fa451753 | 1120 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1121 | |
f078f209 | 1122 | ATHEROS ATH9K WIRELESS DRIVER |
8b58be88 JP |
1123 | M: "Luis R. Rodriguez" <[email protected]> |
1124 | M: Jouni Malinen <[email protected]> | |
8b58be88 JP |
1125 | M: Vasanthakumar Thiagarajan <[email protected]> |
1126 | M: Senthil Balasubramanian <[email protected]> | |
f078f209 LR |
1127 | L: [email protected] |
1128 | L: [email protected] | |
72c706b7 | 1129 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1130 | S: Supported |
fa451753 | 1131 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1132 | |
75ca88c9 | 1133 | ATHEROS AR9170 WIRELESS DRIVER |
8b58be88 | 1134 | M: Christian Lamparter <[email protected]> |
75ca88c9 CL |
1135 | L: [email protected] |
1136 | W: http://wireless.kernel.org/en/users/Drivers/ar9170 | |
1137 | S: Maintained | |
fa451753 | 1138 | F: drivers/net/wireless/ath/ar9170/ |
75ca88c9 | 1139 | |
2c2a6172 LT |
1140 | ATK0110 HWMON DRIVER |
1141 | M: Luca Tettamanti <[email protected]> | |
1142 | L: [email protected] | |
1143 | S: Maintained | |
1144 | F: drivers/hwmon/asus_atk0110.c | |
1145 | ||
6f69a6d7 | 1146 | ATI_REMOTE2 DRIVER |
8b58be88 | 1147 | M: Ville Syrjala <[email protected]> |
6f69a6d7 | 1148 | S: Maintained |
679655da | 1149 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1150 | |
7ae115b4 | 1151 | ATLX ETHERNET DRIVERS |
8b58be88 | 1152 | M: Jay Cliburn <[email protected]> |
cb2f33e9 | 1153 | M: Chris Snook <[email protected]> |
8b58be88 | 1154 | M: Jie Yang <[email protected]> |
e443e383 | 1155 | L: [email protected] |
8d5ca6ec JC |
1156 | W: http://sourceforge.net/projects/atl1 |
1157 | W: http://atl1.sourceforge.net | |
1158 | S: Maintained | |
679655da | 1159 | F: drivers/net/atlx/ |
8d5ca6ec | 1160 | |
1da177e4 | 1161 | ATM |
8b58be88 | 1162 | M: Chas Williams <[email protected]> |
476604de | 1163 | L: [email protected] (moderated for non-subscribers) |
44ae98b5 | 1164 | L: [email protected] |
1da177e4 LT |
1165 | W: http://linux-atm.sourceforge.net |
1166 | S: Maintained | |
679655da JP |
1167 | F: drivers/atm/ |
1168 | F: include/linux/atm* | |
1da177e4 | 1169 | |
272f133a | 1170 | ATMEL AT91 MCI DRIVER |
8b58be88 | 1171 | M: Nicolas Ferre <[email protected]> |
efc03ecb | 1172 | L: [email protected] (moderated for non-subscribers) |
81764fa9 PO |
1173 | W: http://www.atmel.com/products/AT91/ |
1174 | W: http://www.at91.com/ | |
1175 | S: Maintained | |
679655da | 1176 | F: drivers/mmc/host/at91_mci.c |
272f133a | 1177 | |
04ac2f46 | 1178 | ATMEL AT91 / AT32 MCI DRIVER |
8b58be88 | 1179 | M: Nicolas Ferre <[email protected]> |
04ac2f46 NF |
1180 | S: Maintained |
1181 | F: drivers/mmc/host/atmel-mci.c | |
1182 | F: drivers/mmc/host/atmel-mci-regs.h | |
1183 | ||
a1cfac48 | 1184 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1185 | M: Nicolas Ferre <[email protected]> |
a1cfac48 | 1186 | S: Supported |
679655da | 1187 | F: drivers/serial/atmel_serial.c |
a1cfac48 | 1188 | |
8f4c79ce | 1189 | ATMEL LCDFB DRIVER |
8b58be88 | 1190 | M: Nicolas Ferre <[email protected]> |
c69f677c | 1191 | L: [email protected] |
8f4c79ce | 1192 | S: Maintained |
679655da JP |
1193 | F: drivers/video/atmel_lcdfb.c |
1194 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1195 | |
89e5785f | 1196 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1197 | M: Nicolas Ferre <[email protected]> |
89e5785f | 1198 | S: Supported |
679655da | 1199 | F: drivers/net/macb.* |
89e5785f | 1200 | |
754ce4f2 | 1201 | ATMEL SPI DRIVER |
a02875a6 | 1202 | M: Nicolas Ferre <[email protected]> |
754ce4f2 | 1203 | S: Supported |
679655da | 1204 | F: drivers/spi/atmel_spi.* |
754ce4f2 | 1205 | |
914a3f3b | 1206 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1207 | M: Nicolas Ferre <[email protected]> |
1208 | L: [email protected] (moderated for non-subscribers) | |
914a3f3b HS |
1209 | W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver |
1210 | S: Supported | |
679655da | 1211 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1212 | |
1da177e4 | 1213 | ATMEL WIRELESS DRIVER |
8b58be88 | 1214 | M: Simon Kelley <[email protected]> |
724c6b35 | 1215 | L: [email protected] |
1da177e4 LT |
1216 | W: http://www.thekelleys.org.uk/atmel |
1217 | W: http://atmelwlandriver.sourceforge.net/ | |
1218 | S: Maintained | |
679655da | 1219 | F: drivers/net/wireless/atmel* |
1da177e4 | 1220 | |
a92b7b80 | 1221 | AUDIT SUBSYSTEM |
8b58be88 JP |
1222 | M: Al Viro <[email protected]> |
1223 | M: Eric Paris <[email protected]> | |
b9a06207 | 1224 | L: [email protected] (subscribers-only) |
ad3f9a22 | 1225 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1226 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1227 | S: Maintained |
679655da JP |
1228 | F: include/linux/audit.h |
1229 | F: kernel/audit* | |
a92b7b80 | 1230 | |
70e84049 | 1231 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1232 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1233 | W: http://miguelojeda.es/auxdisplay.htm |
1234 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1235 | S: Maintained |
679655da JP |
1236 | F: drivers/auxdisplay/ |
1237 | F: include/linux/cfag12864b.h | |
70e84049 | 1238 | |
5f97f7f9 | 1239 | AVR32 ARCHITECTURE |
f5665518 | 1240 | M: Hans-Christian Egtvedt <[email protected]> |
5f97f7f9 HS |
1241 | W: http://www.atmel.com/products/AVR32/ |
1242 | W: http://avr32linux.org/ | |
1243 | W: http://avrfreaks.net/ | |
1244 | S: Supported | |
679655da | 1245 | F: arch/avr32/ |
5f97f7f9 HS |
1246 | |
1247 | AVR32/AT32AP MACHINE SUPPORT | |
f5665518 | 1248 | M: Hans-Christian Egtvedt <[email protected]> |
5f97f7f9 | 1249 | S: Supported |
679655da | 1250 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1251 | |
1da177e4 | 1252 | AX.25 NETWORK LAYER |
8b58be88 | 1253 | M: Ralf Baechle <[email protected]> |
1da177e4 | 1254 | L: [email protected] |
d34cb28a | 1255 | W: http://www.linux-ax25.org/ |
1da177e4 | 1256 | S: Maintained |
679655da JP |
1257 | F: include/linux/ax25.h |
1258 | F: include/net/ax25.h | |
1259 | F: net/ax25/ | |
1da177e4 | 1260 | |
e2d1d6c0 | 1261 | B43 WIRELESS DRIVER |
8b58be88 | 1262 | M: Stefano Brivio <[email protected]> |
e2d1d6c0 RD |
1263 | L: [email protected] |
1264 | W: http://linuxwireless.org/en/users/Drivers/b43 | |
1265 | S: Maintained | |
679655da | 1266 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1267 | |
1268 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1269 | M: Larry Finger <[email protected]> |
1270 | M: Stefano Brivio <[email protected]> | |
e2d1d6c0 RD |
1271 | L: [email protected] |
1272 | W: http://linuxwireless.org/en/users/Drivers/b43 | |
1273 | S: Maintained | |
679655da | 1274 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1275 | |
300abeb5 | 1276 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1277 | M: Richard Purdie <[email protected]> |
300abeb5 | 1278 | S: Maintained |
679655da JP |
1279 | F: drivers/video/backlight/ |
1280 | F: include/linux/backlight.h | |
300abeb5 | 1281 | |
e2d1d6c0 | 1282 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1283 | M: Thomas Sailer <[email protected]> |
e2d1d6c0 RD |
1284 | L: [email protected] |
1285 | W: http://www.baycom.org/~tom/ham/ham.html | |
1286 | S: Maintained | |
679655da | 1287 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 RD |
1288 | |
1289 | BEFS FILE SYSTEM | |
55817d3d | 1290 | S: Orphan |
679655da JP |
1291 | F: Documentation/filesystems/befs.txt |
1292 | F: fs/befs/ | |
e2d1d6c0 RD |
1293 | |
1294 | BFS FILE SYSTEM | |
8b58be88 | 1295 | M: "Tigran A. Aivazian" <[email protected]> |
e2d1d6c0 | 1296 | S: Maintained |
679655da JP |
1297 | F: Documentation/filesystems/bfs.txt |
1298 | F: fs/bfs/ | |
1299 | F: include/linux/bfs_fs.h | |
e2d1d6c0 | 1300 | |
1394f032 | 1301 | BLACKFIN ARCHITECTURE |
8b58be88 | 1302 | M: Mike Frysinger <[email protected]> |
5b93e13f | 1303 | L: [email protected] |
e3b2d3f3 BW |
1304 | W: http://blackfin.uclinux.org |
1305 | S: Supported | |
679655da | 1306 | F: arch/blackfin/ |
566da5b2 | 1307 | |
e190d6b1 | 1308 | BLACKFIN EMAC DRIVER |
8b58be88 | 1309 | M: Michael Hennerich <[email protected]> |
49afa609 | 1310 | L: [email protected] |
e190d6b1 BW |
1311 | W: http://blackfin.uclinux.org |
1312 | S: Supported | |
679655da | 1313 | F: drivers/net/bfin_mac.* |
e190d6b1 | 1314 | |
566da5b2 | 1315 | BLACKFIN RTC DRIVER |
8b58be88 | 1316 | M: Mike Frysinger <[email protected]> |
49afa609 | 1317 | L: [email protected] |
566da5b2 MF |
1318 | W: http://blackfin.uclinux.org |
1319 | S: Supported | |
679655da | 1320 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1321 | |
936ed49a MF |
1322 | BLACKFIN SDH DRIVER |
1323 | M: Cliff Cai <[email protected]> | |
1324 | L: [email protected] | |
1325 | W: http://blackfin.uclinux.org | |
1326 | S: Supported | |
1327 | F: drivers/mmc/host/bfin_sdh.c | |
1328 | ||
1394f032 | 1329 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1330 | M: Sonic Zhang <[email protected]> |
49afa609 | 1331 | L: [email protected] |
e3b2d3f3 BW |
1332 | W: http://blackfin.uclinux.org |
1333 | S: Supported | |
679655da | 1334 | F: drivers/serial/bfin_5xx.c |
1394f032 | 1335 | |
1e6d320f | 1336 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1337 | M: Mike Frysinger <[email protected]> |
49afa609 | 1338 | L: [email protected] |
1e6d320f BW |
1339 | W: http://blackfin.uclinux.org |
1340 | S: Supported | |
679655da | 1341 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1342 | |
d24ecfcc | 1343 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1344 | M: Sonic Zhang <[email protected]> |
49afa609 | 1345 | L: [email protected] |
d24ecfcc BW |
1346 | W: http://blackfin.uclinux.org/ |
1347 | S: Supported | |
679655da | 1348 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1349 | |
1da177e4 | 1350 | BLOCK LAYER |
8b58be88 | 1351 | M: Jens Axboe <[email protected]> |
54e5881d | 1352 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git |
1da177e4 | 1353 | S: Maintained |
679655da | 1354 | F: block/ |
1da177e4 | 1355 | |
2b54aaef | 1356 | BLOCK2MTD DRIVER |
8b58be88 | 1357 | M: Joern Engel <[email protected]> |
2b54aaef JE |
1358 | L: [email protected] |
1359 | S: Maintained | |
679655da | 1360 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1361 | |
63fbd24e | 1362 | BLUETOOTH DRIVERS |
8b58be88 | 1363 | M: Marcel Holtmann <[email protected]> |
781c2844 | 1364 | L: [email protected] |
63fbd24e | 1365 | W: http://www.bluez.org/ |
1da177e4 | 1366 | S: Maintained |
679655da | 1367 | F: drivers/bluetooth/ |
1da177e4 | 1368 | |
63fbd24e | 1369 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1370 | M: Marcel Holtmann <[email protected]> |
63fbd24e MH |
1371 | L: [email protected] |
1372 | W: http://www.bluez.org/ | |
54e5881d | 1373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git |
1da177e4 | 1374 | S: Maintained |
679655da JP |
1375 | F: net/bluetooth/ |
1376 | F: include/net/bluetooth/ | |
1da177e4 LT |
1377 | |
1378 | BONDING DRIVER | |
8b58be88 | 1379 | M: Jay Vosburgh <[email protected]> |
ce00f85c JC |
1380 | L: [email protected] |
1381 | W: http://sourceforge.net/projects/bonding/ | |
1382 | S: Supported | |
679655da JP |
1383 | F: drivers/net/bonding/ |
1384 | F: include/linux/if_bonding.h | |
1da177e4 | 1385 | |
39105890 | 1386 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1387 | M: Gary Zambrano <[email protected]> |
39105890 GZ |
1388 | L: [email protected] |
1389 | S: Supported | |
679655da | 1390 | F: drivers/net/b44.* |
39105890 | 1391 | |
948c51e6 | 1392 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1393 | M: Michael Chan <[email protected]> |
948c51e6 MC |
1394 | L: [email protected] |
1395 | S: Supported | |
679655da JP |
1396 | F: drivers/net/bnx2.* |
1397 | F: drivers/net/bnx2_* | |
948c51e6 | 1398 | |
4d9d2cb0 | 1399 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1400 | M: Eilon Greenstein <[email protected]> |
4d9d2cb0 ET |
1401 | L: [email protected] |
1402 | S: Supported | |
49efec1e | 1403 | F: drivers/net/bnx2x/ |
4d9d2cb0 | 1404 | |
948c51e6 | 1405 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
1406 | M: Matt Carlson <[email protected]> |
1407 | M: Michael Chan <[email protected]> | |
948c51e6 MC |
1408 | L: [email protected] |
1409 | S: Supported | |
679655da | 1410 | F: drivers/net/tg3.* |
948c51e6 | 1411 | |
7725ccfd | 1412 | BROCADE BFA FC SCSI DRIVER |
455518e7 JP |
1413 | M: Jing Huang <[email protected]> |
1414 | L: [email protected] | |
1415 | S: Supported | |
1416 | F: drivers/scsi/bfa/ | |
7725ccfd | 1417 | |
5cdf7f76 | 1418 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1419 | M: FUJITA Tomonori <[email protected]> |
5cdf7f76 JA |
1420 | L: [email protected] |
1421 | S: Supported | |
679655da JP |
1422 | F: block/bsg.c |
1423 | F: include/linux/bsg.h | |
5cdf7f76 | 1424 | |
ff1d5c2f | 1425 | BT8XXGPIO DRIVER |
8b58be88 | 1426 | M: Michael Buesch <[email protected]> |
ff1d5c2f MB |
1427 | W: http://bu3sch.de/btgpio.php |
1428 | S: Maintained | |
679655da | 1429 | F: drivers/gpio/bt8xxgpio.c |
ff1d5c2f | 1430 | |
eb1eb04f | 1431 | BTRFS FILE SYSTEM |
8b58be88 | 1432 | M: Chris Mason <[email protected]> |
eb1eb04f JP |
1433 | L: [email protected] |
1434 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1435 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
54e5881d | 1436 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git |
eb1eb04f | 1437 | S: Maintained |
679655da JP |
1438 | F: Documentation/filesystems/btrfs.txt |
1439 | F: fs/btrfs/ | |
eb1eb04f | 1440 | |
1da177e4 | 1441 | BTTV VIDEO4LINUX DRIVER |
8b58be88 | 1442 | M: Mauro Carvalho Chehab <[email protected]> |
661263b5 | 1443 | L: [email protected] |
96b6aba0 | 1444 | W: http://linuxtv.org |
54e5881d | 1445 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
96b6aba0 | 1446 | S: Maintained |
679655da JP |
1447 | F: Documentation/video4linux/bttv/ |
1448 | F: drivers/media/video/bt8xx/bttv* | |
1da177e4 | 1449 | |
a5432f5a | 1450 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1451 | M: David Howells <[email protected]> |
a5432f5a DH |
1452 | L: [email protected] |
1453 | S: Supported | |
1454 | F: Documentation/filesystems/caching/cachefiles.txt | |
1455 | F: fs/cachefiles/ | |
1456 | ||
77d5140f | 1457 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1458 | M: Jonathan Corbet <[email protected]> |
661263b5 | 1459 | L: [email protected] |
54e5881d | 1460 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
77d5140f | 1461 | S: Maintained |
679655da JP |
1462 | F: Documentation/video4linux/cafe_ccic |
1463 | F: drivers/media/video/cafe_ccic* | |
77d5140f | 1464 | |
201b6bab JP |
1465 | CAIF NETWORK LAYER |
1466 | M: Sjur Braendeland <[email protected]> | |
1467 | L: [email protected] | |
1468 | S: Supported | |
1469 | F: Documentation/networking/caif/ | |
1470 | F: drivers/net/caif/ | |
1471 | F: include/linux/caif/ | |
1472 | F: include/net/caif/ | |
1473 | F: net/caif/ | |
1474 | ||
77dac90f | 1475 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1476 | M: Muli Ben-Yehuda <[email protected]> |
1477 | M: "Jon D. Mason" <[email protected]> | |
77dac90f MBY |
1478 | L: [email protected] |
1479 | S: Maintained | |
679655da JP |
1480 | F: arch/x86/kernel/pci-calgary_64.c |
1481 | F: arch/x86/kernel/tce_64.c | |
1482 | F: arch/x86/include/asm/calgary.h | |
1483 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1484 | |
e2d1d6c0 | 1485 | CAN NETWORK LAYER |
8d15d386 | 1486 | M: Oliver Hartkopp <[email protected]> |
8b58be88 | 1487 | M: Oliver Hartkopp <[email protected]> |
8d15d386 OH |
1488 | M: Urs Thuermann <[email protected]> |
1489 | L: [email protected] | |
42d38041 | 1490 | L: [email protected] |
e2d1d6c0 RD |
1491 | W: http://developer.berlios.de/projects/socketcan/ |
1492 | S: Maintained | |
8d15d386 | 1493 | F: net/can/ |
679655da | 1494 | F: include/linux/can.h |
8d15d386 OH |
1495 | F: include/linux/can/core.h |
1496 | F: include/linux/can/bcm.h | |
1497 | F: include/linux/can/raw.h | |
e2d1d6c0 | 1498 | |
4261a204 | 1499 | CAN NETWORK DRIVERS |
8b58be88 | 1500 | M: Wolfgang Grandegger <[email protected]> |
8d15d386 | 1501 | L: [email protected] |
42d38041 | 1502 | L: [email protected] |
4261a204 WG |
1503 | W: http://developer.berlios.de/projects/socketcan/ |
1504 | S: Maintained | |
8d15d386 OH |
1505 | F: drivers/net/can/ |
1506 | F: include/linux/can/dev.h | |
1507 | F: include/linux/can/error.h | |
1508 | F: include/linux/can/netlink.h | |
1509 | F: include/linux/can/platform/ | |
4261a204 | 1510 | |
b8154542 | 1511 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1512 | M: Arnd Bergmann <[email protected]> |
a4724ed6 SR |
1513 | L: [email protected] |
1514 | L: [email protected] | |
b8154542 AB |
1515 | W: http://www.ibm.com/developerworks/power/cell/ |
1516 | S: Supported | |
679655da | 1517 | F: arch/powerpc/include/asm/cell*.h |
679655da JP |
1518 | F: arch/powerpc/include/asm/spu*.h |
1519 | F: arch/powerpc/oprofile/*cell* | |
1520 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1521 | |
9030aaf9 SW |
1522 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
1523 | M: Sage Weil <[email protected]> | |
82593f87 | 1524 | L: [email protected] |
9030aaf9 | 1525 | W: http://ceph.newdream.net/ |
fb99f881 | 1526 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
1527 | S: Supported |
1528 | F: Documentation/filesystems/ceph.txt | |
1529 | F: fs/ceph | |
3d14c5d2 YS |
1530 | F: net/ceph |
1531 | F: include/linux/ceph | |
9030aaf9 | 1532 | |
18332a80 | 1533 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
8b58be88 | 1534 | M: David Vrabel <[email protected]> |
18332a80 DV |
1535 | L: [email protected] |
1536 | S: Supported | |
679655da JP |
1537 | F: Documentation/usb/WUSB-Design-overview.txt |
1538 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
1539 | F: drivers/usb/host/hwa-hc.c |
1540 | F: drivers/usb/host/whci/ | |
679655da JP |
1541 | F: drivers/usb/wusbcore/ |
1542 | F: include/linux/usb/wusb* | |
18332a80 | 1543 | |
70e84049 | 1544 | CFAG12864B LCD DRIVER |
8b58be88 | 1545 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1546 | W: http://miguelojeda.es/auxdisplay.htm |
1547 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1548 | S: Maintained |
679655da JP |
1549 | F: drivers/auxdisplay/cfag12864b.c |
1550 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
1551 | |
1552 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 1553 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
1554 | W: http://miguelojeda.es/auxdisplay.htm |
1555 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1556 | S: Maintained |
679655da JP |
1557 | F: drivers/auxdisplay/cfag12864bfb.c |
1558 | F: include/linux/cfag12864b.h | |
70e84049 | 1559 | |
704232c2 | 1560 | CFG80211 and NL80211 |
8b58be88 | 1561 | M: Johannes Berg <[email protected]> |
704232c2 JB |
1562 | L: [email protected] |
1563 | S: Maintained | |
679655da JP |
1564 | F: include/linux/nl80211.h |
1565 | F: include/net/cfg80211.h | |
1566 | F: net/wireless/* | |
1567 | X: net/wireless/wext* | |
704232c2 | 1568 | |
0a920b5b | 1569 | CHECKPATCH |
8b58be88 | 1570 | M: Andy Whitcroft <[email protected]> |
0a920b5b | 1571 | S: Supported |
679655da | 1572 | F: scripts/checkpatch.pl |
0a920b5b | 1573 | |
641cb85e | 1574 | CISCO VIC ETHERNET NIC DRIVER |
8b58be88 | 1575 | M: Scott Feldman <[email protected]> |
641cb85e VK |
1576 | M: Vasanthy Kolluri <[email protected]> |
1577 | M: Roopa Prabhu <[email protected]> | |
7063fbf2 | 1578 | S: Supported |
679655da | 1579 | F: drivers/net/enic/ |
7063fbf2 | 1580 | |
2b7a52a4 | 1581 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
8b58be88 | 1582 | M: Lennert Buytenhek <[email protected]> |
2b7a52a4 LB |
1583 | L: [email protected] |
1584 | S: Maintained | |
679655da | 1585 | F: drivers/net/arm/ep93xx_eth.c |
2b7a52a4 | 1586 | |
2b7a52a4 | 1587 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 1588 | M: Lennert Buytenhek <[email protected]> |
6372594a | 1589 | L: [email protected] |
2b7a52a4 | 1590 | S: Maintained |
679655da | 1591 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 1592 | |
d9e9d82c | 1593 | CIRRUS LOGIC CS4270 SOUND DRIVER |
8b58be88 | 1594 | M: Timur Tabi <[email protected]> |
93711660 | 1595 | L: [email protected] (moderated for non-subscribers) |
d9e9d82c | 1596 | S: Supported |
679655da | 1597 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 1598 | |
d4275354 | 1599 | CLK API |
8b58be88 | 1600 | M: Russell King <[email protected]> |
d4275354 RK |
1601 | F: include/linux/clk.h |
1602 | ||
5df6d737 | 1603 | CISCO FCOE HBA DRIVER |
8b58be88 JP |
1604 | M: Abhijeet Joglekar <[email protected]> |
1605 | M: Joe Eykholt <[email protected]> | |
5df6d737 AJ |
1606 | L: [email protected] |
1607 | S: Supported | |
2a99921a | 1608 | F: drivers/scsi/fnic/ |
5df6d737 | 1609 | |
529aa8cb TLSC |
1610 | CMPC ACPI DRIVER |
1611 | M: Thadeu Lima de Souza Cascardo <[email protected]> | |
1612 | M: Daniel Oliveira Nascimento <[email protected]> | |
d0944853 | 1613 | L: [email protected] |
529aa8cb TLSC |
1614 | S: Supported |
1615 | F: drivers/platform/x86/classmate-laptop.c | |
1616 | ||
74425eee NP |
1617 | COCCINELLE/Semantic Patches (SmPL) |
1618 | M: Julia Lawall <[email protected]> | |
1619 | M: Gilles Muller <[email protected]> | |
1620 | M: Nicolas Palix <[email protected]> | |
1621 | L: [email protected] (moderated for non-subscribers) | |
1622 | W: http://coccinelle.lip6.fr/ | |
1623 | S: Supported | |
1624 | F: scripts/coccinelle/ | |
1625 | F: scripts/coccicheck | |
1626 | ||
1da177e4 | 1627 | CODA FILE SYSTEM |
8b58be88 | 1628 | M: Jan Harkes <[email protected]> |
1da177e4 LT |
1629 | M: [email protected] |
1630 | L: [email protected] | |
1631 | W: http://www.coda.cs.cmu.edu/ | |
1632 | S: Maintained | |
679655da JP |
1633 | F: Documentation/filesystems/coda.txt |
1634 | F: fs/coda/ | |
1635 | F: include/linux/coda*.h | |
1da177e4 | 1636 | |
e2d1d6c0 | 1637 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 1638 | M: Steve French <[email protected]> |
51223df6 | 1639 | L: [email protected] |
d1f28953 | 1640 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 1641 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 1642 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 1643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 1644 | S: Supported |
679655da JP |
1645 | F: Documentation/filesystems/cifs.txt |
1646 | F: fs/cifs/ | |
e2d1d6c0 | 1647 | |
1da177e4 | 1648 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 1649 | M: Scott Murray <[email protected]> |
64dab204 | 1650 | L: [email protected] |
82c4dfc7 | 1651 | S: Maintained |
679655da | 1652 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
1653 | |
1654 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 1655 | M: Scott Murray <[email protected]> |
64dab204 | 1656 | L: [email protected] |
82c4dfc7 | 1657 | S: Maintained |
679655da | 1658 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
1659 | |
1660 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 1661 | M: Scott Murray <[email protected]> |
64dab204 | 1662 | L: [email protected] |
82c4dfc7 | 1663 | S: Maintained |
679655da | 1664 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 1665 | |
5411552c | 1666 | COMPAL LAPTOP SUPPORT |
8b58be88 | 1667 | M: Cezary Jackiewicz <[email protected]> |
d0944853 | 1668 | L: [email protected] |
5411552c | 1669 | S: Maintained |
679655da | 1670 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 1671 | |
1da177e4 | 1672 | COMPUTONE INTELLIPORT MULTIPORT CARD |
8b58be88 | 1673 | M: "Michael H. Warfield" <[email protected]> |
1da177e4 | 1674 | W: http://www.wittsend.com/computone.html |
07d46de4 | 1675 | S: Maintained |
679655da JP |
1676 | F: Documentation/serial/computone.txt |
1677 | F: drivers/char/ip2/ | |
1da177e4 | 1678 | |
949be0f7 | 1679 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 1680 | M: Simon Arlott <[email protected]> |
9ae5e3bc SA |
1681 | L: [email protected] |
1682 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 1683 | S: Maintained |
679655da | 1684 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 1685 | |
e2d1d6c0 | 1686 | CONFIGFS |
8b58be88 | 1687 | M: Joel Becker <[email protected]> |
e2d1d6c0 | 1688 | S: Supported |
679655da JP |
1689 | F: fs/configfs/ |
1690 | F: include/linux/configfs.h | |
e2d1d6c0 | 1691 | |
acb9c1b2 | 1692 | CONNECTOR |
8b58be88 | 1693 | M: Evgeniy Polyakov <[email protected]> |
acb9c1b2 EP |
1694 | L: [email protected] |
1695 | S: Maintained | |
1696 | F: drivers/connector/ | |
1697 | ||
fb3a0fb6 | 1698 | CONTROL GROUPS (CGROUPS) |
8b58be88 JP |
1699 | M: Paul Menage <[email protected]> |
1700 | M: Li Zefan <[email protected]> | |
fb3a0fb6 PM |
1701 | L: [email protected] |
1702 | S: Maintained | |
679655da JP |
1703 | F: include/linux/cgroup* |
1704 | F: kernel/cgroup* | |
8ca739e3 | 1705 | F: mm/*cgroup* |
fb3a0fb6 | 1706 | |
bebe4678 | 1707 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 1708 | M: Fenghua Yu <[email protected]> |
bebe4678 RM |
1709 | L: [email protected] |
1710 | S: Maintained | |
679655da JP |
1711 | F: Documentation/hwmon/coretemp |
1712 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 1713 | |
1da177e4 | 1714 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 1715 | M: Jan "Yenya" Kasprzak <[email protected]> |
1da177e4 LT |
1716 | W: http://www.fi.muni.cz/~kas/cosa/ |
1717 | S: Maintained | |
679655da | 1718 | F: drivers/net/wan/cosa* |
1da177e4 | 1719 | |
4371ee35 | 1720 | CPMAC ETHERNET DRIVER |
8b58be88 | 1721 | M: Florian Fainelli <[email protected]> |
4371ee35 FF |
1722 | L: [email protected] |
1723 | S: Maintained | |
1724 | F: drivers/net/cpmac.c | |
1725 | ||
1da177e4 | 1726 | CPU FREQUENCY DRIVERS |
8b58be88 | 1727 | M: Dave Jones <[email protected]> |
bc5f65d4 | 1728 | L: [email protected] |
1da177e4 | 1729 | W: http://www.codemonkey.org.uk/projects/cpufreq/ |
54e5881d | 1730 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git |
1da177e4 | 1731 | S: Maintained |
679655da JP |
1732 | F: arch/x86/kernel/cpu/cpufreq/ |
1733 | F: drivers/cpufreq/ | |
1734 | F: include/linux/cpufreq.h | |
1da177e4 LT |
1735 | |
1736 | CPUID/MSR DRIVER | |
8b58be88 | 1737 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 1738 | S: Maintained |
679655da JP |
1739 | F: arch/x86/kernel/cpuid.c |
1740 | F: arch/x86/kernel/msr.c | |
1da177e4 | 1741 | |
ed90fb4a | 1742 | CPUSETS |
8b58be88 | 1743 | M: Paul Menage <[email protected]> |
ed90fb4a | 1744 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 1745 | W: http://oss.sgi.com/projects/cpusets/ |
ed90fb4a | 1746 | S: Supported |
679655da JP |
1747 | F: Documentation/cgroups/cpusets.txt |
1748 | F: include/linux/cpuset.h | |
1749 | F: kernel/cpuset.c | |
ed90fb4a | 1750 | |
1da177e4 | 1751 | CRAMFS FILESYSTEM |
ce00f85c JC |
1752 | W: http://sourceforge.net/projects/cramfs/ |
1753 | S: Orphan | |
679655da JP |
1754 | F: Documentation/filesystems/cramfs.txt |
1755 | F: fs/cramfs/ | |
1da177e4 LT |
1756 | |
1757 | CRIS PORT | |
8b58be88 JP |
1758 | M: Mikael Starvik <[email protected]> |
1759 | M: Jesper Nilsson <[email protected]> | |
9937ac0c | 1760 | L: [email protected] |
1da177e4 LT |
1761 | W: http://developer.axis.com |
1762 | S: Maintained | |
679655da | 1763 | F: arch/cris/ |
1da177e4 LT |
1764 | |
1765 | CRYPTO API | |
8b58be88 JP |
1766 | M: Herbert Xu <[email protected]> |
1767 | M: "David S. Miller" <[email protected]> | |
1da177e4 | 1768 | L: [email protected] |
54e5881d | 1769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 1770 | S: Maintained |
679655da JP |
1771 | F: Documentation/crypto/ |
1772 | F: arch/*/crypto/ | |
1773 | F: crypto/ | |
1774 | F: drivers/crypto/ | |
1775 | F: include/crypto/ | |
1da177e4 | 1776 | |
5b07bd57 | 1777 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 1778 | M: Neil Horman <[email protected]> |
5b07bd57 NH |
1779 | L: [email protected] |
1780 | S: Maintained | |
51a2228a JP |
1781 | F: crypto/ansi_cprng.c |
1782 | F: crypto/rng.c | |
5b07bd57 | 1783 | |
9b4ffa48 | 1784 | CS5535 Audio ALSA driver |
8b58be88 | 1785 | M: Jaya Kumar <[email protected]> |
9b4ffa48 | 1786 | S: Maintained |
679655da | 1787 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 1788 | |
6d8425b1 | 1789 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 1790 | M: Andy Walls <[email protected]> |
c4240509 | 1791 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 1792 | L: [email protected] |
54e5881d | 1793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
6d8425b1 | 1794 | W: http://linuxtv.org |
30e10993 | 1795 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 1796 | S: Maintained |
679655da JP |
1797 | F: Documentation/video4linux/cx18.txt |
1798 | F: drivers/media/video/cx18/ | |
6d8425b1 | 1799 | |
e5ec3789 | 1800 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 1801 | M: Divy Le Ray <[email protected]> |
e5ec3789 SW |
1802 | L: [email protected] |
1803 | W: http://www.chelsio.com | |
1804 | S: Supported | |
679655da | 1805 | F: drivers/net/cxgb3/ |
e5ec3789 SW |
1806 | |
1807 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 1808 | M: Steve Wise <[email protected]> |
e6cc0fd1 | 1809 | L: [email protected] |
e5ec3789 SW |
1810 | W: http://www.openfabrics.org |
1811 | S: Supported | |
679655da | 1812 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 1813 | |
be4c9bad RD |
1814 | CXGB4 ETHERNET DRIVER (CXGB4) |
1815 | M: Dimitris Michailidis <[email protected]> | |
1816 | L: [email protected] | |
1817 | W: http://www.chelsio.com | |
1818 | S: Supported | |
1819 | F: drivers/net/cxgb4/ | |
1820 | ||
1821 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
1822 | M: Steve Wise <[email protected]> | |
1823 | L: [email protected] | |
1824 | W: http://www.openfabrics.org | |
1825 | S: Supported | |
1826 | F: drivers/infiniband/hw/cxgb4/ | |
1827 | ||
5c20a5c7 CL |
1828 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
1829 | M: Casey Leedom <[email protected]> | |
1830 | L: [email protected] | |
1831 | W: http://www.chelsio.com | |
1832 | S: Supported | |
1833 | F: drivers/net/cxgb4vf/ | |
1834 | ||
1da177e4 | 1835 | CYBERPRO FB DRIVER |
8b58be88 | 1836 | M: Russell King <[email protected]> |
efc03ecb | 1837 | L: [email protected] (moderated for non-subscribers) |
1da177e4 LT |
1838 | W: http://www.arm.linux.org.uk/ |
1839 | S: Maintained | |
679655da | 1840 | F: drivers/video/cyber2000fb.* |
9fa68eae | 1841 | |
1da177e4 | 1842 | CYCLADES 2X SYNC CARD DRIVER |
8b58be88 | 1843 | M: Arnaldo Carvalho de Melo <[email protected]> |
926554c4 | 1844 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 1845 | S: Maintained |
679655da | 1846 | F: drivers/net/wan/cycx* |
1da177e4 LT |
1847 | |
1848 | CYCLADES ASYNC MUX DRIVER | |
1da177e4 | 1849 | W: http://www.cyclades.com/ |
d459883e | 1850 | S: Orphan |
679655da JP |
1851 | F: drivers/char/cyclades.c |
1852 | F: include/linux/cyclades.h | |
1da177e4 LT |
1853 | |
1854 | CYCLADES PC300 DRIVER | |
1da177e4 | 1855 | W: http://www.cyclades.com/ |
d459883e | 1856 | S: Orphan |
679655da | 1857 | F: drivers/net/wan/pc300* |
1da177e4 | 1858 | |
1da177e4 | 1859 | DAMA SLAVE for AX.25 |
8b58be88 | 1860 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
1861 | W: http://yaina.de/jreuter/ |
1862 | W: http://www.qsl.net/dl1bke/ | |
1863 | L: [email protected] | |
1864 | S: Maintained | |
679655da JP |
1865 | F: net/ax25/af_ax25.c |
1866 | F: net/ax25/ax25_dev.c | |
1867 | F: net/ax25/ax25_ds_* | |
1868 | F: net/ax25/ax25_in.c | |
1869 | F: net/ax25/ax25_out.c | |
1870 | F: net/ax25/ax25_timer.c | |
1871 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 1872 | |
e2d1d6c0 | 1873 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
8b58be88 | 1874 | M: Tobias Ringstrom <[email protected]> |
e2d1d6c0 RD |
1875 | L: [email protected] |
1876 | S: Maintained | |
679655da JP |
1877 | F: Documentation/networking/dmfe.txt |
1878 | F: drivers/net/tulip/dmfe.c | |
e2d1d6c0 RD |
1879 | |
1880 | DC390/AM53C974 SCSI driver | |
8b58be88 | 1881 | M: Kurt Garloff <[email protected]> |
e2d1d6c0 | 1882 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 1883 | M: Guennadi Liakhovetski <[email protected]> |
e2d1d6c0 | 1884 | S: Maintained |
679655da | 1885 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 1886 | |
1da177e4 | 1887 | DC395x SCSI driver |
8b58be88 JP |
1888 | M: Oliver Neukum <[email protected]> |
1889 | M: Ali Akcaagac <[email protected]> | |
1890 | M: Jamie Lenehan <[email protected]> | |
1da177e4 | 1891 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 1892 | L: [email protected] |
1da177e4 LT |
1893 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
1894 | S: Maintained | |
679655da JP |
1895 | F: Documentation/scsi/dc395x.txt |
1896 | F: drivers/scsi/dc395x.* | |
1da177e4 | 1897 | |
eb8edb08 | 1898 | DCCP PROTOCOL |
8b58be88 | 1899 | M: Arnaldo Carvalho de Melo <[email protected]> |
eb8edb08 | 1900 | L: [email protected] |
f3b84ec2 | 1901 | W: http://linux-net.osdl.org/index.php/DCCP |
eb8edb08 | 1902 | S: Maintained |
679655da JP |
1903 | F: include/linux/dccp.h |
1904 | F: include/linux/tfrc.h | |
1905 | F: net/dccp/ | |
eb8edb08 | 1906 | |
1da177e4 | 1907 | DECnet NETWORK LAYER |
1da177e4 LT |
1908 | W: http://linux-decnet.sourceforge.net |
1909 | L: [email protected] | |
f546444d | 1910 | S: Orphan |
679655da JP |
1911 | F: Documentation/networking/decnet.txt |
1912 | F: net/decnet/ | |
1da177e4 LT |
1913 | |
1914 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 1915 | M: "Maciej W. Rozycki" <[email protected]> |
1da177e4 | 1916 | S: Maintained |
679655da | 1917 | F: drivers/net/defxx.* |
1da177e4 | 1918 | |
ad8f07cc | 1919 | DELL LAPTOP DRIVER |
8b58be88 | 1920 | M: Matthew Garrett <[email protected]> |
d0944853 | 1921 | L: [email protected] |
ad8f07cc | 1922 | S: Maintained |
679655da | 1923 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 1924 | |
1da177e4 | 1925 | DELL LAPTOP SMM DRIVER |
8b58be88 | 1926 | M: Massimo Dal Zotto <[email protected]> |
1da177e4 LT |
1927 | W: http://www.debian.org/~dz/i8k/ |
1928 | S: Maintained | |
679655da JP |
1929 | F: drivers/char/i8k.c |
1930 | F: include/linux/i8k.h | |
1da177e4 | 1931 | |
90563ec4 | 1932 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 1933 | M: Doug Warzecha <[email protected]> |
90563ec4 | 1934 | S: Maintained |
679655da JP |
1935 | F: Documentation/dcdbas.txt |
1936 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 1937 | |
0b3f6109 | 1938 | DELL WMI EXTRAS DRIVER |
8b58be88 | 1939 | M: Matthew Garrett <[email protected]> |
0b3f6109 | 1940 | S: Maintained |
36b3a96f | 1941 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 1942 | |
1da177e4 | 1943 | DEVICE NUMBER REGISTRY |
8b58be88 | 1944 | M: Torben Mathiasen <[email protected]> |
1da177e4 | 1945 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
1946 | S: Maintained |
1947 | ||
e2d1d6c0 RD |
1948 | DEVICE-MAPPER (LVM) |
1949 | P: Alasdair Kergon | |
1950 | L: [email protected] | |
1951 | W: http://sources.redhat.com/dm | |
8a6e2535 | 1952 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
e2d1d6c0 | 1953 | S: Maintained |
679655da JP |
1954 | F: Documentation/device-mapper/ |
1955 | F: drivers/md/dm* | |
1956 | F: include/linux/device-mapper.h | |
1957 | F: include/linux/dm-*.h | |
e2d1d6c0 | 1958 | |
1da177e4 | 1959 | DIGI INTL. EPCA DRIVER |
8b58be88 | 1960 | M: "Digi International, Inc" <[email protected]> |
1da177e4 LT |
1961 | L: [email protected] |
1962 | W: http://www.digi.com | |
baaea1dc | 1963 | S: Orphan |
679655da JP |
1964 | F: Documentation/serial/digiepca.txt |
1965 | F: drivers/char/epca* | |
1966 | F: drivers/char/digi* | |
1da177e4 | 1967 | |
e7839f25 | 1968 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 1969 | M: Eric Paris <[email protected]> |
3c5119c0 | 1970 | S: Maintained |
679655da JP |
1971 | F: Documentation/filesystems/dnotify.txt |
1972 | F: fs/notify/dnotify/ | |
1973 | F: include/linux/dnotify.h | |
1da177e4 LT |
1974 | |
1975 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 1976 | M: Andries Brouwer <[email protected]> |
1da177e4 LT |
1977 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
1978 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
1979 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
1980 | S: Maintained | |
1981 | ||
4480f15b | 1982 | DISKQUOTA |
8b58be88 | 1983 | M: Jan Kara <[email protected]> |
1da177e4 | 1984 | S: Maintained |
679655da JP |
1985 | F: Documentation/filesystems/quota.txt |
1986 | F: fs/quota/ | |
1987 | F: include/linux/quota*.h | |
1da177e4 | 1988 | |
e7839f25 | 1989 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
1990 | M: Christine Caulfield <[email protected]> |
1991 | M: David Teigland <[email protected]> | |
a4644184 | 1992 | L: [email protected] |
5be7b50f | 1993 | W: http://sources.redhat.com/cluster/ |
54e5881d | 1994 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 1995 | S: Supported |
679655da | 1996 | F: fs/dlm/ |
5be7b50f | 1997 | |
b3e5f263 | 1998 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
8b58be88 | 1999 | M: Dan Williams <[email protected]> |
b3e5f263 | 2000 | S: Supported |
679655da JP |
2001 | F: drivers/dma/ |
2002 | F: include/linux/dma* | |
248a9dc3 | 2003 | |
b825037d | 2004 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2005 | M: Juerg Haefliger <[email protected]> |
b825037d JH |
2006 | L: [email protected] |
2007 | S: Maintained | |
679655da JP |
2008 | F: Documentation/hwmon/dme1737 |
2009 | F: drivers/hwmon/dme1737.c | |
b825037d | 2010 | |
ba483d57 | 2011 | DOCBOOK FOR DOCUMENTATION |
8b58be88 | 2012 | M: Randy Dunlap <[email protected]> |
ba483d57 MW |
2013 | S: Maintained |
2014 | ||
5b9c9bf6 | 2015 | DOCKING STATION DRIVER |
8b58be88 | 2016 | M: Shaohua Li <[email protected]> |
5b9c9bf6 | 2017 | L: [email protected] |
8b59a454 | 2018 | S: Supported |
679655da | 2019 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2020 | |
7d2c86b5 | 2021 | DOCUMENTATION |
8b58be88 | 2022 | M: Randy Dunlap <[email protected]> |
795fb7e7 JD |
2023 | L: [email protected] |
2024 | S: Maintained | |
679655da | 2025 | F: Documentation/ |
abbaeff3 | 2026 | |
1da177e4 | 2027 | DOUBLETALK DRIVER |
8b58be88 | 2028 | M: "James R. Van Zandt" <[email protected]> |
1da177e4 LT |
2029 | L: [email protected] |
2030 | S: Maintained | |
679655da JP |
2031 | F: drivers/char/dtlk.c |
2032 | F: include/linux/dtlk.h | |
1da177e4 | 2033 | |
e2d1d6c0 | 2034 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2035 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
2036 | L: [email protected] |
2037 | W: http://www.adaptec.com/ | |
2038 | S: Maintained | |
679655da JP |
2039 | F: drivers/scsi/dpt* |
2040 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2041 | |
b411b363 | 2042 | DRBD DRIVER |
28b8e8d4 JP |
2043 | P: Philipp Reisner |
2044 | P: Lars Ellenberg | |
2045 | M: [email protected] | |
2046 | L: [email protected] | |
2047 | W: http://www.drbd.org | |
2048 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2049 | T: git git://git.drbd.org/drbd-8.3.git | |
2050 | S: Supported | |
2051 | F: drivers/block/drbd/ | |
2052 | F: lib/lru_cache.c | |
2053 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2054 | |
1da177e4 | 2055 | DRIVER CORE, KOBJECTS, AND SYSFS |
8b58be88 | 2056 | M: Greg Kroah-Hartman <[email protected]> |
6fb0425b | 2057 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
1da177e4 | 2058 | S: Supported |
679655da | 2059 | F: Documentation/kobject.txt |
7cfc51b9 | 2060 | F: drivers/base/ |
679655da JP |
2061 | F: fs/sysfs/ |
2062 | F: include/linux/kobj* | |
2063 | F: lib/kobj* | |
1da177e4 LT |
2064 | |
2065 | DRM DRIVERS | |
8b58be88 | 2066 | M: David Airlie <[email protected]> |
4c6a3999 | 2067 | L: [email protected] |
54e5881d | 2068 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2069 | S: Maintained |
679655da | 2070 | F: drivers/gpu/drm/ |
850e9411 | 2071 | F: include/drm/ |
1da177e4 LT |
2072 | |
2073 | DSCC4 DRIVER | |
8b58be88 | 2074 | M: Francois Romieu <[email protected]> |
01f20734 | 2075 | L: [email protected] |
1da177e4 | 2076 | S: Maintained |
679655da | 2077 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2078 | |
789c7048 | 2079 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2080 | M: "Maciej W. Rozycki" <[email protected]> |
789c7048 | 2081 | S: Maintained |
679655da | 2082 | F: drivers/serial/dz.* |
789c7048 | 2083 | |
1da177e4 | 2084 | EATA-DMA SCSI DRIVER |
8b58be88 | 2085 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2086 | L: [email protected] |
2087 | L: [email protected] | |
1da177e4 | 2088 | S: Maintained |
679655da | 2089 | F: drivers/scsi/eata* |
1da177e4 LT |
2090 | |
2091 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2092 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
2093 | L: [email protected] |
2094 | S: Maintained | |
679655da | 2095 | F: drivers/scsi/eata.c |
1da177e4 LT |
2096 | |
2097 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2098 | M: Michael Neuffer <[email protected]> |
7d2c86b5 JP |
2099 | L: [email protected] |
2100 | L: [email protected] | |
1da177e4 | 2101 | S: Maintained |
679655da | 2102 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2103 | |
2104 | EBTABLES | |
8b58be88 | 2105 | M: Bart De Schuymer <[email protected]> |
1da177e4 LT |
2106 | L: [email protected] |
2107 | L: [email protected] | |
2108 | W: http://ebtables.sourceforge.net/ | |
2109 | S: Maintained | |
679655da JP |
2110 | F: include/linux/netfilter_bridge/ebt_*.h |
2111 | F: net/bridge/netfilter/ebt*.c | |
1da177e4 | 2112 | |
237fead6 | 2113 | ECRYPT FILE SYSTEM |
8b58be88 JP |
2114 | M: Tyler Hicks <[email protected]> |
2115 | M: Dustin Kirkland <[email protected]> | |
6dc7516e MH |
2116 | L: [email protected] |
2117 | W: https://launchpad.net/ecryptfs | |
237fead6 | 2118 | S: Supported |
679655da JP |
2119 | F: Documentation/filesystems/ecryptfs.txt |
2120 | F: fs/ecryptfs/ | |
237fead6 | 2121 | |
da9bb1d2 | 2122 | EDAC-CORE |
8b58be88 | 2123 | M: Doug Thompson <[email protected]> |
7b102d03 | 2124 | L: [email protected] (moderated for non-subscribers) |
0e438e3f | 2125 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2126 | S: Supported |
679655da JP |
2127 | F: Documentation/edac.txt |
2128 | F: drivers/edac/edac_* | |
2129 | F: include/linux/edac.h | |
0e438e3f | 2130 | |
c476c23b | 2131 | EDAC-AMD64 |
8b58be88 JP |
2132 | M: Doug Thompson <[email protected]> |
2133 | M: Borislav Petkov <[email protected]> | |
c476c23b BP |
2134 | L: [email protected] (moderated for non-subscribers) |
2135 | W: bluesmoke.sourceforge.net | |
2136 | S: Supported | |
2137 | F: drivers/edac/amd64_edac* | |
2138 | ||
0e438e3f | 2139 | EDAC-E752X |
8b58be88 JP |
2140 | M: Mark Gross <[email protected]> |
2141 | M: Doug Thompson <[email protected]> | |
7b102d03 | 2142 | L: [email protected] (moderated for non-subscribers) |
0e438e3f DP |
2143 | W: bluesmoke.sourceforge.net |
2144 | S: Maintained | |
679655da | 2145 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2146 | |
2147 | EDAC-E7XXX | |
8b58be88 | 2148 | M: Doug Thompson <[email protected]> |
7b102d03 | 2149 | L: [email protected] (moderated for non-subscribers) |
0e438e3f DP |
2150 | W: bluesmoke.sourceforge.net |
2151 | S: Maintained | |
679655da | 2152 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2153 | |
6bc78404 | 2154 | EDAC-I82443BXGX |
8b58be88 | 2155 | M: Tim Small <[email protected]> |
7b102d03 | 2156 | L: [email protected] (moderated for non-subscribers) |
6bc78404 DT |
2157 | W: bluesmoke.sourceforge.net |
2158 | S: Maintained | |
679655da | 2159 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
2160 | |
2161 | EDAC-I3000 | |
8b58be88 | 2162 | M: Jason Uhlenkott <[email protected]> |
7b102d03 | 2163 | L: [email protected] (moderated for non-subscribers) |
6bc78404 DT |
2164 | W: bluesmoke.sourceforge.net |
2165 | S: Maintained | |
679655da | 2166 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
2167 | |
2168 | EDAC-I5000 | |
8b58be88 | 2169 | M: Doug Thompson <[email protected]> |
7b102d03 | 2170 | L: [email protected] (moderated for non-subscribers) |
ba9a5918 DT |
2171 | W: bluesmoke.sourceforge.net |
2172 | S: Maintained | |
679655da | 2173 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 2174 | |
44c12cb2 | 2175 | EDAC-I5400 |
8b58be88 | 2176 | M: Mauro Carvalho Chehab <[email protected]> |
67c89316 | 2177 | L: [email protected] |
44c12cb2 MCC |
2178 | W: bluesmoke.sourceforge.net |
2179 | S: Maintained | |
679655da | 2180 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 2181 | |
67c89316 MCC |
2182 | EDAC-I7CORE |
2183 | M: Mauro Carvalho Chehab <[email protected]> | |
2184 | L: [email protected] | |
2185 | W: bluesmoke.sourceforge.net | |
2186 | S: Maintained | |
70aff0ce JP |
2187 | F: drivers/edac/i7core_edac.c |
2188 | F: drivers/edac/edac_mce.c | |
2189 | F: include/linux/edac_mce.h | |
67c89316 | 2190 | |
ba9a5918 | 2191 | EDAC-I82975X |
8b58be88 JP |
2192 | M: Ranganathan Desikan <[email protected]> |
2193 | M: "Arvind R." <[email protected]> | |
7b102d03 | 2194 | L: [email protected] (moderated for non-subscribers) |
ba9a5918 DT |
2195 | W: bluesmoke.sourceforge.net |
2196 | S: Maintained | |
679655da | 2197 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
2198 | |
2199 | EDAC-PASEMI | |
8b58be88 | 2200 | M: Egor Martovetsky <[email protected]> |
7b102d03 | 2201 | L: [email protected] (moderated for non-subscribers) |
6bc78404 DT |
2202 | W: bluesmoke.sourceforge.net |
2203 | S: Maintained | |
679655da | 2204 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 2205 | |
0e438e3f | 2206 | EDAC-R82600 |
8b58be88 | 2207 | M: Tim Small <[email protected]> |
7b102d03 | 2208 | L: [email protected] (moderated for non-subscribers) |
0e438e3f DP |
2209 | W: bluesmoke.sourceforge.net |
2210 | S: Maintained | |
679655da | 2211 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 2212 | |
e59f8796 | 2213 | EEEPC LAPTOP EXTRAS DRIVER |
8b58be88 | 2214 | M: Corentin Chary <[email protected]> |
e59f8796 | 2215 | L: [email protected] |
d0944853 | 2216 | L: [email protected] |
76593d6f | 2217 | W: http://acpi4asus.sf.net |
e59f8796 | 2218 | S: Maintained |
679655da | 2219 | F: drivers/platform/x86/eeepc-laptop.c |
e59f8796 | 2220 | |
85a00d9b PJ |
2221 | EFIFB FRAMEBUFFER DRIVER |
2222 | L: [email protected] | |
2223 | M: Peter Jones <[email protected]> | |
2224 | S: Maintained | |
2225 | F: drivers/video/efifb.c | |
2226 | ||
0bee8d28 JT |
2227 | EFS FILESYSTEM |
2228 | W: http://aeschi.ch.eu.org/efs/ | |
2229 | S: Orphan | |
679655da | 2230 | F: fs/efs/ |
0bee8d28 | 2231 | |
4480f15b | 2232 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
2233 | M: Hoang-Nam Nguyen <[email protected]> |
2234 | M: Christoph Raisch <[email protected]> | |
e6cc0fd1 | 2235 | L: [email protected] |
fab97220 | 2236 | S: Supported |
679655da | 2237 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 2238 | |
aa8a9e25 BL |
2239 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
2240 | M: Breno Leitao <[email protected]> | |
2241 | L: [email protected] | |
2242 | S: Maintained | |
2243 | F: drivers/net/ehea/ | |
2244 | ||
3e3a7d66 | 2245 | EMBEDDED LINUX |
8b58be88 JP |
2246 | M: Paul Gortmaker <[email protected]> |
2247 | M: Matt Mackall <[email protected]> | |
2248 | M: David Woodhouse <[email protected]> | |
3e3a7d66 DW |
2249 | L: [email protected] |
2250 | S: Maintained | |
2251 | ||
3a1c1d44 | 2252 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 2253 | M: James Smart <[email protected]> |
ce00f85c JC |
2254 | L: [email protected] |
2255 | W: http://sourceforge.net/projects/lpfcxxxx | |
2256 | S: Supported | |
679655da | 2257 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 2258 | |
5f5bac82 | 2259 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 2260 | M: Michał Mirosław <[email protected]> |
5f5bac82 MM |
2261 | S: Maintained |
2262 | F: drivers/misc/cb710/ | |
2263 | F: drivers/mmc/host/cb710-mmc.* | |
2264 | F: include/linux/cb710.h | |
2265 | ||
931e39a1 ML |
2266 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
2267 | M: Maxim Levitsky <[email protected]> | |
2268 | S: Maintained | |
2269 | F: drivers/media/IR/ene_ir.c | |
2270 | F: drivers/media/IR/ene_ir.h | |
2271 | ||
1da177e4 | 2272 | EPSON 1355 FRAMEBUFFER DRIVER |
8b58be88 JP |
2273 | M: Christopher Hoover <[email protected]> |
2274 | M: Christopher Hoover <[email protected]> | |
1da177e4 | 2275 | S: Maintained |
679655da | 2276 | F: drivers/video/epson1355fb.c |
1da177e4 | 2277 | |
d5ca9006 | 2278 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 2279 | M: Kristoffer Ericson <[email protected]> |
d5ca9006 | 2280 | S: Maintained |
084bad91 | 2281 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
2282 | F: drivers/video/s1d13xxxfb.c |
2283 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 2284 | |
1da177e4 | 2285 | ETHEREXPRESS-16 NETWORK DRIVER |
8b58be88 | 2286 | M: Philip Blundell <[email protected]> |
979b6c13 | 2287 | L: [email protected] |
1da177e4 | 2288 | S: Maintained |
679655da | 2289 | F: drivers/net/eexpress.* |
1da177e4 LT |
2290 | |
2291 | ETHERNET BRIDGE | |
8b58be88 | 2292 | M: Stephen Hemminger <[email protected]> |
f318a63b | 2293 | L: [email protected] |
4c325313 | 2294 | L: [email protected] |
57c511d8 | 2295 | W: http://www.linux-foundation.org/en/Net:Bridge |
1da177e4 | 2296 | S: Maintained |
679655da JP |
2297 | F: include/linux/netfilter_bridge/ |
2298 | F: net/bridge/ | |
1da177e4 LT |
2299 | |
2300 | ETHERTEAM 16I DRIVER | |
8b58be88 | 2301 | M: Mika Kuoppala <[email protected]> |
1da177e4 | 2302 | S: Maintained |
679655da | 2303 | F: drivers/net/eth16i.c |
1da177e4 LT |
2304 | |
2305 | EXT2 FILE SYSTEM | |
01971952 | 2306 | M: Jan Kara <[email protected]> |
72be2ccf | 2307 | L: [email protected] |
1da177e4 | 2308 | S: Maintained |
679655da JP |
2309 | F: Documentation/filesystems/ext2.txt |
2310 | F: fs/ext2/ | |
2311 | F: include/linux/ext2* | |
1da177e4 LT |
2312 | |
2313 | EXT3 FILE SYSTEM | |
01971952 | 2314 | M: Jan Kara <[email protected]> |
8b58be88 | 2315 | M: Andrew Morton <[email protected]> |
3c373a5f | 2316 | M: Andreas Dilger <[email protected]> |
72be2ccf EM |
2317 | L: [email protected] |
2318 | S: Maintained | |
679655da JP |
2319 | F: Documentation/filesystems/ext3.txt |
2320 | F: fs/ext3/ | |
2321 | F: include/linux/ext3* | |
72be2ccf EM |
2322 | |
2323 | EXT4 FILE SYSTEM | |
8b58be88 | 2324 | M: "Theodore Ts'o" <[email protected]> |
3c373a5f | 2325 | M: Andreas Dilger <[email protected]> |
72be2ccf | 2326 | L: [email protected] |
08a225f1 | 2327 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 2328 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 2329 | S: Maintained |
679655da JP |
2330 | F: Documentation/filesystems/ext4.txt |
2331 | F: fs/ext4/ | |
1da177e4 | 2332 | |
e53004e2 | 2333 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 2334 | M: Jean Delvare <[email protected]> |
e53004e2 JD |
2335 | L: [email protected] |
2336 | S: Maintained | |
679655da JP |
2337 | F: Documentation/hwmon/f71805f |
2338 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 2339 | |
88b2dbdb EP |
2340 | FANOTIFY |
2341 | M: Eric Paris <[email protected]> | |
2342 | S: Maintained | |
2343 | F: fs/notify/fanotify/ | |
2344 | F: include/linux/fanotify.h | |
2345 | ||
1da177e4 | 2346 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 2347 | M: Kevin Curtis <[email protected]> |
1da177e4 LT |
2348 | W: http://www.farsite.co.uk/ |
2349 | S: Supported | |
679655da | 2350 | F: drivers/net/wan/farsync.* |
1da177e4 | 2351 | |
c5408b88 | 2352 | FAULT INJECTION SUPPORT |
8b58be88 | 2353 | M: Akinobu Mita <[email protected]> |
c5408b88 | 2354 | S: Supported |
679655da JP |
2355 | F: Documentation/fault-injection/ |
2356 | F: lib/fault-inject.c | |
c5408b88 | 2357 | |
cae727db RL |
2358 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
2359 | M: Robert Love <[email protected]> | |
2360 | L: [email protected] | |
2361 | W: www.Open-FCoE.org | |
2362 | S: Supported | |
2363 | F: drivers/scsi/libfc/ | |
2364 | F: drivers/scsi/fcoe/ | |
2365 | F: include/scsi/fc/ | |
2366 | F: include/scsi/libfc.h | |
2367 | F: include/scsi/libfcoe.h | |
2368 | ||
e2d1d6c0 | 2369 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 2370 | M: Matthew Wilcox <[email protected]> |
e2d1d6c0 | 2371 | L: [email protected] |
1da177e4 | 2372 | S: Maintained |
679655da JP |
2373 | F: include/linux/fcntl.h |
2374 | F: include/linux/fs.h | |
2375 | F: fs/fcntl.c | |
2376 | F: fs/locks.c | |
1da177e4 | 2377 | |
e2d1d6c0 | 2378 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 2379 | M: Alexander Viro <[email protected]> |
e2d1d6c0 | 2380 | L: [email protected] |
173acc7c | 2381 | S: Maintained |
679655da | 2382 | F: fs/* |
173acc7c | 2383 | |
b26e0ed4 | 2384 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 2385 | M: Riku Voipio <[email protected]> |
b26e0ed4 RV |
2386 | L: [email protected] |
2387 | S: Maintained | |
d5ca6918 JP |
2388 | F: drivers/hwmon/f75375s.c |
2389 | F: include/linux/f75375s.h | |
b26e0ed4 | 2390 | |
7d2c86b5 | 2391 | FIREWIRE SUBSYSTEM |
8b58be88 | 2392 | M: Stefan Richter <[email protected]> |
e2d1d6c0 | 2393 | L: [email protected] |
958a29cb | 2394 | W: http://ieee1394.wiki.kernel.org/ |
54e5881d | 2395 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
e2d1d6c0 | 2396 | S: Maintained |
679655da JP |
2397 | F: drivers/firewire/ |
2398 | F: include/linux/firewire*.h | |
9f6d3c4b | 2399 | F: tools/firewire/ |
e2d1d6c0 RD |
2400 | |
2401 | FIRMWARE LOADER (request_firmware) | |
e2d1d6c0 | 2402 | S: Orphan |
679655da JP |
2403 | F: Documentation/firmware_class/ |
2404 | F: drivers/base/firmware*.c | |
2405 | F: include/linux/firmware.h | |
e2d1d6c0 RD |
2406 | |
2407 | FPU EMULATOR | |
8b58be88 | 2408 | M: Bill Metzenthen <[email protected]> |
e769980f | 2409 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 2410 | S: Maintained |
679655da | 2411 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
2412 | |
2413 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
8b58be88 | 2414 | M: Mike McLagan <[email protected]> |
e2d1d6c0 RD |
2415 | L: [email protected] |
2416 | S: Maintained | |
679655da JP |
2417 | F: drivers/net/wan/dlci.c |
2418 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
2419 | |
2420 | FRAMEBUFFER LAYER | |
c69f677c | 2421 | L: [email protected] |
e2d1d6c0 | 2422 | W: http://linux-fbdev.sourceforge.net/ |
36025a81 | 2423 | S: Orphan |
679655da JP |
2424 | F: Documentation/fb/ |
2425 | F: drivers/video/fb* | |
2426 | F: include/linux/fb.h | |
e2d1d6c0 RD |
2427 | |
2428 | FREESCALE DMA DRIVER | |
8b58be88 JP |
2429 | M: Li Yang <[email protected]> |
2430 | M: Zhang Wei <[email protected]> | |
a4724ed6 | 2431 | L: [email protected] |
e2d1d6c0 | 2432 | S: Maintained |
679655da | 2433 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
2434 | |
2435 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 2436 | M: Jochen Friedrich <[email protected]> |
a4724ed6 | 2437 | L: [email protected] |
846557d3 | 2438 | L: [email protected] |
0d2b405a | 2439 | S: Maintained |
679655da | 2440 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 2441 | |
60e8c5ab | 2442 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 2443 | M: Sascha Hauer <[email protected]> |
c69f677c | 2444 | L: [email protected] |
efc03ecb | 2445 | L: [email protected] (moderated for non-subscribers) |
60e8c5ab | 2446 | S: Maintained |
679655da JP |
2447 | F: arch/arm/plat-mxc/include/mach/imxfb.h |
2448 | F: drivers/video/imxfb.c | |
60e8c5ab | 2449 | |
4689a6b1 | 2450 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
2451 | M: Pantelis Antoniou <[email protected]> |
2452 | M: Vitaly Bordug <[email protected]> | |
a4724ed6 | 2453 | L: [email protected] |
4689a6b1 PA |
2454 | L: [email protected] |
2455 | S: Maintained | |
679655da JP |
2456 | F: drivers/net/fs_enet/ |
2457 | F: include/linux/fs_enet_pd.h | |
4689a6b1 | 2458 | |
d9e9d82c | 2459 | FREESCALE QUICC ENGINE LIBRARY |
8b58be88 | 2460 | M: Timur Tabi <[email protected]> |
a4724ed6 | 2461 | L: [email protected] |
d9e9d82c | 2462 | S: Supported |
679655da JP |
2463 | F: arch/powerpc/sysdev/qe_lib/ |
2464 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 2465 | |
b55ef929 | 2466 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 2467 | M: Li Yang <[email protected]> |
6372594a | 2468 | L: [email protected] |
a4724ed6 | 2469 | L: [email protected] |
a7205b30 | 2470 | S: Maintained |
5429c731 | 2471 | F: drivers/usb/gadget/fsl* |
a7205b30 | 2472 | |
beaf53bf | 2473 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 2474 | M: Li Yang <[email protected]> |
beaf53bf | 2475 | L: [email protected] |
a4724ed6 | 2476 | L: [email protected] |
beaf53bf | 2477 | S: Maintained |
679655da | 2478 | F: drivers/net/ucc_geth* |
beaf53bf | 2479 | |
d9e9d82c | 2480 | FREESCALE QUICC ENGINE UCC UART DRIVER |
8b58be88 | 2481 | M: Timur Tabi <[email protected]> |
a4724ed6 | 2482 | L: [email protected] |
d9e9d82c | 2483 | S: Supported |
679655da | 2484 | F: drivers/serial/ucc_uart.c |
d9e9d82c TT |
2485 | |
2486 | FREESCALE SOC SOUND DRIVERS | |
8b58be88 | 2487 | M: Timur Tabi <[email protected]> |
93711660 | 2488 | L: [email protected] (moderated for non-subscribers) |
a4724ed6 | 2489 | L: [email protected] |
d9e9d82c | 2490 | S: Supported |
69aefcea JP |
2491 | F: sound/soc/fsl/fsl* |
2492 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 2493 | |
1da177e4 | 2494 | FREEVXFS FILESYSTEM |
8b58be88 | 2495 | M: Christoph Hellwig <[email protected]> |
1da177e4 LT |
2496 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
2497 | S: Maintained | |
679655da | 2498 | F: fs/freevxfs/ |
1da177e4 | 2499 | |
71038f52 | 2500 | FREEZER |
8b58be88 JP |
2501 | M: Pavel Machek <[email protected]> |
2502 | M: "Rafael J. Wysocki" <[email protected]> | |
71038f52 PM |
2503 | L: [email protected] |
2504 | S: Supported | |
679655da JP |
2505 | F: Documentation/power/freezing-of-tasks.txt |
2506 | F: include/linux/freezer.h | |
2507 | F: kernel/freezer.c | |
71038f52 | 2508 | |
a5432f5a | 2509 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 2510 | M: David Howells <[email protected]> |
a5432f5a DH |
2511 | L: [email protected] |
2512 | S: Supported | |
2513 | F: Documentation/filesystems/caching/ | |
2514 | F: fs/fscache/ | |
2515 | F: include/linux/fscache*.h | |
2516 | ||
5ab7ffea | 2517 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 2518 | M: David Howells <[email protected]> |
1da177e4 | 2519 | S: Maintained |
679655da | 2520 | F: arch/frv/ |
1da177e4 | 2521 | |
20b93734 | 2522 | FUJITSU LAPTOP EXTRAS |
8b58be88 | 2523 | M: Jonathan Woithe <[email protected]> |
d0944853 | 2524 | L: [email protected] |
20b93734 | 2525 | S: Maintained |
679655da | 2526 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 2527 | |
04578f17 | 2528 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 2529 | M: Miklos Szeredi <[email protected]> |
04578f17 MS |
2530 | L: [email protected] |
2531 | W: http://fuse.sourceforge.net/ | |
2532 | S: Maintained | |
679655da JP |
2533 | F: fs/fuse/ |
2534 | F: include/linux/fuse.h | |
04578f17 | 2535 | |
1da177e4 | 2536 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 2537 | M: Rik Faith <[email protected]> |
1da177e4 | 2538 | L: [email protected] |
baaea1dc | 2539 | S: Odd Fixes (e.g., new signatures) |
679655da | 2540 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
2541 | |
2542 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 2543 | M: Achim Leubner <[email protected]> |
1da177e4 LT |
2544 | L: [email protected] |
2545 | W: http://www.icp-vortex.com/ | |
2546 | S: Supported | |
679655da | 2547 | F: drivers/scsi/gdt* |
1da177e4 | 2548 | |
1c23af90 | 2549 | GENERIC GPIO I2C DRIVER |
880b0e26 | 2550 | M: Haavard Skinnemoen <[email protected]> |
1c23af90 | 2551 | S: Supported |
679655da JP |
2552 | F: drivers/i2c/busses/i2c-gpio.c |
2553 | F: include/linux/i2c-gpio.h | |
1c23af90 | 2554 | |
9251ce95 | 2555 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 2556 | M: Krzysztof Halasa <[email protected]> |
1da177e4 LT |
2557 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
2558 | S: Maintained | |
679655da JP |
2559 | F: drivers/net/wan/c101.c |
2560 | F: drivers/net/wan/hd6457* | |
2561 | F: drivers/net/wan/hdlc* | |
2562 | F: drivers/net/wan/n2.c | |
2563 | F: drivers/net/wan/pc300too.c | |
2564 | F: drivers/net/wan/pci200syn.c | |
2565 | F: drivers/net/wan/wanxl* | |
1da177e4 | 2566 | |
1527aab6 | 2567 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 2568 | M: Arnd Bergmann <[email protected]> |
1527aab6 AB |
2569 | L: [email protected] |
2570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
2571 | S: Maintained | |
2572 | F: include/asm-generic | |
2573 | ||
ccb86a69 | 2574 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 2575 | M: "Michael S. Tsirkin" <[email protected]> |
ccb86a69 | 2576 | L: [email protected] |
ccb86a69 MT |
2577 | S: Supported |
2578 | F: drivers/uio/uio_pci_generic.c | |
2579 | ||
5be7b50f | 2580 | GFS2 FILE SYSTEM |
8b58be88 | 2581 | M: Steven Whitehouse <[email protected]> |
a4644184 | 2582 | L: [email protected] |
5be7b50f | 2583 | W: http://sources.redhat.com/cluster/ |
54e5881d JP |
2584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git |
2585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git | |
5be7b50f | 2586 | S: Supported |
679655da JP |
2587 | F: Documentation/filesystems/gfs2*.txt |
2588 | F: fs/gfs2/ | |
2589 | F: include/linux/gfs2_ondisk.h | |
5be7b50f | 2590 | |
0a34eb8f | 2591 | GIGASET ISDN DRIVERS |
8b58be88 JP |
2592 | M: Hansjoerg Lipp <[email protected]> |
2593 | M: Tilman Schmidt <[email protected]> | |
0a34eb8f HL |
2594 | L: [email protected] |
2595 | W: http://gigaset307x.sourceforge.net/ | |
2596 | S: Maintained | |
679655da JP |
2597 | F: Documentation/isdn/README.gigaset |
2598 | F: drivers/isdn/gigaset/ | |
2599 | F: include/linux/gigaset_dev.h | |
0a34eb8f | 2600 | |
d4c41139 KG |
2601 | GRETH 10/100/1G Ethernet MAC device driver |
2602 | M: Kristoffer Glembo <[email protected]> | |
2603 | L: [email protected] | |
2604 | S: Maintained | |
2605 | F: drivers/net/greth* | |
2606 | ||
e2d1d6c0 | 2607 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
8b58be88 | 2608 | M: Frank Seidel <[email protected]> |
211e3e0e FS |
2609 | L: [email protected] |
2610 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
e2d1d6c0 | 2611 | S: Maintained |
679655da | 2612 | F: drivers/hwmon/hdaps.c |
e2d1d6c0 | 2613 | |
7bc98b97 AK |
2614 | HWPOISON MEMORY FAILURE HANDLING |
2615 | M: Andi Kleen <[email protected]> | |
2616 | L: [email protected] | |
2617 | L: [email protected] | |
2618 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
2619 | S: Maintained | |
2620 | F: mm/memory-failure.c | |
2621 | F: mm/hwpoison-inject.c | |
2622 | ||
c90bfeb8 | 2623 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
a4724ed6 | 2624 | L: [email protected] |
c90bfeb8 ME |
2625 | S: Odd Fixes |
2626 | F: drivers/char/hvc_* | |
2627 | ||
c4d1409b KRW |
2628 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
2629 | M: Peter Jones <[email protected]> | |
2630 | M: Konrad Rzeszutek Wilk <[email protected]> | |
2631 | S: Maintained | |
2632 | F: drivers/firmware/iscsi_ibft* | |
2633 | ||
e8deeae2 | 2634 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 2635 | M: Frank Zago <[email protected]> |
661263b5 | 2636 | L: [email protected] |
54e5881d | 2637 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
e8deeae2 | 2638 | S: Maintained |
679655da | 2639 | F: drivers/media/video/gspca/finepix.c |
e8deeae2 | 2640 | |
4b3fa3c4 OL |
2641 | GSPCA GL860 SUBDRIVER |
2642 | M: Olivier Lorin <[email protected]> | |
2643 | L: [email protected] | |
2644 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git | |
2645 | S: Maintained | |
2646 | F: drivers/media/video/gspca/gl860/ | |
2647 | ||
e8deeae2 | 2648 | GSPCA M5602 SUBDRIVER |
8b58be88 | 2649 | M: Erik Andren <[email protected]> |
661263b5 | 2650 | L: [email protected] |
54e5881d | 2651 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
e8deeae2 | 2652 | S: Maintained |
679655da | 2653 | F: drivers/media/video/gspca/m5602/ |
e8deeae2 JFM |
2654 | |
2655 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 2656 | M: Hans de Goede <[email protected]> |
661263b5 | 2657 | L: [email protected] |
54e5881d | 2658 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
e8deeae2 | 2659 | S: Maintained |
679655da | 2660 | F: drivers/media/video/gspca/pac207.c |
e8deeae2 | 2661 | |
261982f1 | 2662 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 2663 | M: Brian Johnson <[email protected]> |
261982f1 BJ |
2664 | L: [email protected] |
2665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git | |
2666 | S: Maintained | |
2667 | F: drivers/media/video/gspca/sn9c20x.c | |
2668 | ||
e8deeae2 | 2669 | GSPCA T613 SUBDRIVER |
8b58be88 | 2670 | M: Leandro Costantino <[email protected]> |
661263b5 | 2671 | L: [email protected] |
54e5881d | 2672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
e8deeae2 | 2673 | S: Maintained |
679655da | 2674 | F: drivers/media/video/gspca/t613.c |
e8deeae2 JFM |
2675 | |
2676 | GSPCA USB WEBCAM DRIVER | |
8b58be88 | 2677 | M: Jean-Francois Moine <[email protected]> |
e8deeae2 | 2678 | W: http://moinejf.free.fr |
661263b5 | 2679 | L: [email protected] |
54e5881d | 2680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
e8deeae2 | 2681 | S: Maintained |
679655da | 2682 | F: drivers/media/video/gspca/ |
e8deeae2 | 2683 | |
5b543965 | 2684 | HARDWARE MONITORING |
9e012c1a JD |
2685 | M: Jean Delvare <[email protected]> |
2686 | M: Guenter Roeck <[email protected]> | |
5b543965 | 2687 | L: [email protected] |
595142e0 | 2688 | W: http://www.lm-sensors.org/ |
9e012c1a | 2689 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 GR |
2690 | T: quilt kernel.org/pub/linux/kernel/people/groeck/linux-staging/ |
2691 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
9e012c1a | 2692 | S: Maintained |
047f4ec2 | 2693 | F: Documentation/hwmon/ |
679655da | 2694 | F: drivers/hwmon/ |
047f4ec2 | 2695 | F: include/linux/hwmon*.h |
5b543965 | 2696 | |
844dd05f | 2697 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
2698 | M: Matt Mackall <[email protected]> |
2699 | M: Herbert Xu <[email protected]> | |
2700 | S: Odd fixes | |
679655da JP |
2701 | F: Documentation/hw_random.txt |
2702 | F: drivers/char/hw_random/ | |
2703 | F: include/linux/hw_random.h | |
844dd05f | 2704 | |
1da177e4 | 2705 | HARMONY SOUND DRIVER |
8b58be88 | 2706 | M: Kyle McMartin <[email protected]> |
ac6aecbf | 2707 | L: [email protected] |
1da177e4 | 2708 | S: Maintained |
679655da | 2709 | F: sound/parisc/harmony.* |
1da177e4 | 2710 | |
e2d1d6c0 | 2711 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 2712 | M: Chirag Kantharia <[email protected]> |
e2d1d6c0 RD |
2713 | L: [email protected] |
2714 | S: Maintained | |
679655da JP |
2715 | F: Documentation/blockdev/cpqarray.txt |
2716 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 2717 | |
9257aa49 SC |
2718 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
2719 | M: Stephen M. Cameron <[email protected]> | |
2720 | L: [email protected] | |
2721 | S: Supported | |
2722 | F: Documentation/scsi/hpsa.txt | |
2723 | F: drivers/scsi/hpsa*.[ch] | |
2724 | F: include/linux/cciss*.h | |
2725 | ||
e2d1d6c0 | 2726 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 2727 | M: Mike Miller <[email protected]> |
e2d1d6c0 RD |
2728 | L: [email protected] |
2729 | S: Supported | |
679655da JP |
2730 | F: Documentation/blockdev/cciss.txt |
2731 | F: drivers/block/cciss* | |
2732 | F: include/linux/cciss_ioctl.h | |
e2d1d6c0 | 2733 | |
1da177e4 | 2734 | HFS FILESYSTEM |
8b58be88 | 2735 | M: Roman Zippel <[email protected]> |
1da177e4 | 2736 | S: Maintained |
679655da JP |
2737 | F: Documentation/filesystems/hfs.txt |
2738 | F: fs/hfs/ | |
1da177e4 LT |
2739 | |
2740 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 2741 | M: Ferenc Bakonyi <[email protected]> |
1da177e4 LT |
2742 | L: [email protected] |
2743 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
2744 | S: Maintained | |
679655da | 2745 | F: drivers/video/hgafb.c |
1da177e4 | 2746 | |
4480f15b | 2747 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
2748 | M: Pavel Machek <[email protected]> |
2749 | M: "Rafael J. Wysocki" <[email protected]> | |
e2d1d6c0 RD |
2750 | L: [email protected] |
2751 | S: Supported | |
679655da JP |
2752 | F: arch/x86/power/ |
2753 | F: drivers/base/power/ | |
2754 | F: kernel/power/ | |
2755 | F: include/linux/suspend.h | |
2756 | F: include/linux/freezer.h | |
2757 | F: include/linux/pm.h | |
679655da | 2758 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 2759 | |
4ef4caad | 2760 | HID CORE LAYER |
8b58be88 | 2761 | M: Jiri Kosina <[email protected]> |
eb76c5c0 | 2762 | L: [email protected] |
54e5881d | 2763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 2764 | S: Maintained |
679655da JP |
2765 | F: drivers/hid/ |
2766 | F: include/linux/hid* | |
4ef4caad | 2767 | |
38bed542 | 2768 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 2769 | M: Thomas Gleixner <[email protected]> |
38bed542 | 2770 | S: Maintained |
679655da JP |
2771 | F: Documentation/timers/ |
2772 | F: kernel/hrtimer.c | |
2773 | F: include/linux/hrtimer.h | |
38bed542 | 2774 | |
1da177e4 | 2775 | HIGH-SPEED SCC DRIVER FOR AX.25 |
8b58be88 | 2776 | M: Klaus Kudielka <[email protected]> |
1da177e4 LT |
2777 | L: [email protected] |
2778 | W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ | |
2779 | S: Maintained | |
679655da JP |
2780 | F: drivers/net/hamradio/dmascc.c |
2781 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 2782 | |
ede1e6f8 | 2783 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 2784 | M: HighPoint Linux Team <[email protected]> |
ede1e6f8 HLT |
2785 | W: http://www.highpoint-tech.com |
2786 | S: Supported | |
679655da JP |
2787 | F: Documentation/scsi/hptiop.txt |
2788 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 2789 | |
1da177e4 | 2790 | HIPPI |
8b58be88 | 2791 | M: Jes Sorensen <[email protected]> |
1da177e4 LT |
2792 | L: [email protected] |
2793 | S: Maintained | |
679655da JP |
2794 | F: include/linux/hippidevice.h |
2795 | F: include/linux/if_hippi.h | |
2796 | F: net/802/hippi.c | |
1da177e4 | 2797 | |
ff1d2767 | 2798 | HOST AP DRIVER |
8b58be88 | 2799 | M: Jouni Malinen <[email protected]> |
85d32e7b | 2800 | L: [email protected] (subscribers-only) |
724c6b35 | 2801 | L: [email protected] |
ff1d2767 JM |
2802 | W: http://hostap.epitest.fi/ |
2803 | S: Maintained | |
679655da | 2804 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 2805 | |
dd8cd779 | 2806 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
8b58be88 | 2807 | M: Carlos Corbacho <[email protected]> |
d0944853 | 2808 | L: [email protected] |
dd8cd779 | 2809 | S: Odd Fixes |
679655da | 2810 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 2811 | |
e2d1d6c0 | 2812 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 2813 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 2814 | S: Maintained |
679655da | 2815 | F: drivers/net/hp100.* |
e2d1d6c0 | 2816 | |
7d2c86b5 | 2817 | HPET: High Precision Event Timers driver |
8b58be88 | 2818 | M: Clemens Ladisch <[email protected]> |
b9b0332f | 2819 | S: Maintained |
679655da JP |
2820 | F: Documentation/timers/hpet.txt |
2821 | F: drivers/char/hpet.c | |
2822 | F: include/linux/hpet.h | |
b9b0332f | 2823 | |
e07b5d79 | 2824 | HPET: x86 |
9c5fb19a | 2825 | M: "Venkatesh Pallipadi (Venki)" <[email protected]> |
b9b0332f | 2826 | S: Maintained |
679655da JP |
2827 | F: arch/x86/kernel/hpet.c |
2828 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 2829 | |
1da177e4 | 2830 | HPFS FILESYSTEM |
8b58be88 | 2831 | M: Mikulas Patocka <[email protected]> |
1da177e4 LT |
2832 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
2833 | S: Maintained | |
679655da | 2834 | F: fs/hpfs/ |
1da177e4 | 2835 | |
7d2c86b5 | 2836 | HSO 3G MODEM DRIVER |
8b58be88 | 2837 | M: Jan Dumon <[email protected]> |
11cd29b0 DJB |
2838 | W: http://www.pharscape.org |
2839 | S: Maintained | |
679655da | 2840 | F: drivers/net/usb/hso.c |
11cd29b0 | 2841 | |
5a18c343 | 2842 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 2843 | M: Pau Oliva Fora <[email protected]> |
5a18c343 POF |
2844 | L: [email protected] |
2845 | S: Maintained | |
679655da | 2846 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 2847 | |
1da177e4 | 2848 | HUGETLB FILESYSTEM |
8b58be88 | 2849 | M: William Irwin <[email protected]> |
1da177e4 | 2850 | S: Maintained |
679655da | 2851 | F: fs/hugetlbfs/ |
1da177e4 | 2852 | |
6ea884db | 2853 | I2C/SMBUS STUB DRIVER |
8b58be88 | 2854 | M: "Mark M. Hoffman" <[email protected]> |
846557d3 | 2855 | L: [email protected] |
6ea884db | 2856 | S: Maintained |
679655da | 2857 | F: drivers/i2c/busses/i2c-stub.c |
6ea884db | 2858 | |
5b543965 | 2859 | I2C SUBSYSTEM |
8b58be88 JP |
2860 | M: "Jean Delvare (PC drivers, core)" <[email protected]> |
2861 | M: "Ben Dooks (embedded platforms)" <[email protected]> | |
846557d3 | 2862 | L: [email protected] |
a01064a9 JD |
2863 | W: http://i2c.wiki.kernel.org/ |
2864 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ | |
0e533008 | 2865 | T: git git://git.fluff.org/bjdooks/linux.git |
1da177e4 | 2866 | S: Maintained |
679655da JP |
2867 | F: Documentation/i2c/ |
2868 | F: drivers/i2c/ | |
2869 | F: include/linux/i2c.h | |
03b70d62 | 2870 | F: include/linux/i2c-*.h |
1da177e4 | 2871 | |
e8c76eed | 2872 | I2C-TINY-USB DRIVER |
8b58be88 | 2873 | M: Till Harbaum <[email protected]> |
846557d3 | 2874 | L: [email protected] |
932d1872 | 2875 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 2876 | S: Maintained |
679655da | 2877 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 2878 | |
1da177e4 | 2879 | i386 BOOT CODE |
8b58be88 | 2880 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 | 2881 | S: Maintained |
679655da | 2882 | F: arch/x86/boot/ |
1da177e4 LT |
2883 | |
2884 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 2885 | M: "H. Peter Anvin" <[email protected]> |
54e5881d | 2886 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
2887 | S: Maintained |
2888 | ||
1da177e4 | 2889 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
2890 | M: Tony Luck <[email protected]> |
2891 | M: Fenghua Yu <[email protected]> | |
1da177e4 LT |
2892 | L: [email protected] |
2893 | W: http://www.ia64-linux.org/ | |
54e5881d | 2894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git |
1da177e4 | 2895 | S: Maintained |
679655da | 2896 | F: arch/ia64/ |
1da177e4 | 2897 | |
1da177e4 | 2898 | IBM MCA SCSI SUBSYSTEM DRIVER |
8b58be88 | 2899 | M: Michael Lang <[email protected]> |
1da177e4 LT |
2900 | W: http://www.uni-mainz.de/~langm000/linux.html |
2901 | S: Maintained | |
679655da | 2902 | F: drivers/scsi/ibmmca.c |
1da177e4 LT |
2903 | |
2904 | IBM Power Linux RAID adapter | |
8b58be88 | 2905 | M: Brian King <[email protected]> |
1da177e4 | 2906 | S: Supported |
679655da | 2907 | F: drivers/scsi/ipr.* |
1da177e4 LT |
2908 | |
2909 | IBM ServeRAID RAID DRIVER | |
2910 | P: Jack Hammer | |
8b58be88 | 2911 | M: Dave Jeffery <[email protected]> |
1da177e4 | 2912 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 2913 | S: Supported |
679655da | 2914 | F: drivers/scsi/ips.* |
1da177e4 | 2915 | |
1e7106fc | 2916 | IDE SUBSYSTEM |
8b58be88 | 2917 | M: "David S. Miller" <[email protected]> |
1da177e4 | 2918 | L: [email protected] |
8a6e2535 | 2919 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
920d44ed | 2920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git |
1da177e4 | 2921 | S: Maintained |
679655da JP |
2922 | F: Documentation/ide/ |
2923 | F: drivers/ide/ | |
2924 | F: include/linux/ide.h | |
1da177e4 | 2925 | |
0f861e8c | 2926 | IDE/ATAPI DRIVERS |
8b58be88 | 2927 | M: Borislav Petkov <[email protected]> |
9c5b0ce4 | 2928 | L: [email protected] |
c404c199 | 2929 | S: Maintained |
679655da JP |
2930 | F: Documentation/cdrom/ide-cd |
2931 | F: drivers/ide/ide-cd* | |
1da177e4 | 2932 | |
27471fdb | 2933 | IDLE-I7300 |
8b58be88 | 2934 | M: Andy Henroid <[email protected]> |
27471fdb AH |
2935 | L: [email protected] |
2936 | S: Supported | |
679655da | 2937 | F: drivers/idle/i7300_idle.c |
27471fdb | 2938 | |
7d2c86b5 | 2939 | IEEE 1394 SUBSYSTEM |
8b58be88 | 2940 | M: Stefan Richter <[email protected]> |
1da177e4 | 2941 | L: [email protected] |
958a29cb | 2942 | W: http://ieee1394.wiki.kernel.org/ |
54e5881d | 2943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git |
958a29cb | 2944 | S: Obsolete |
544df55d | 2945 | F: Documentation/debugging-via-ohci1394.txt |
679655da | 2946 | F: drivers/ieee1394/ |
1da177e4 | 2947 | |
02cf2286 | 2948 | IEEE 802.15.4 SUBSYSTEM |
8b58be88 JP |
2949 | M: Dmitry Eremin-Solenikov <[email protected]> |
2950 | M: Sergey Lapin <[email protected]> | |
e0af6062 | 2951 | L: [email protected] (moderated for non-subscribers) |
02cf2286 | 2952 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 2953 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
2954 | S: Maintained |
2955 | F: net/ieee802154/ | |
a26c4463 | 2956 | F: drivers/ieee802154/ |
02cf2286 | 2957 | |
aa7168f4 | 2958 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 2959 | M: Mimi Zohar <[email protected]> |
aa7168f4 | 2960 | S: Supported |
679655da | 2961 | F: security/integrity/ima/ |
aa7168f4 | 2962 | |
1da177e4 | 2963 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 2964 | L: [email protected] |
843393d3 | 2965 | S: Orphan |
679655da | 2966 | F: drivers/video/imsttfb.c |
1da177e4 LT |
2967 | |
2968 | INFINIBAND SUBSYSTEM | |
8b58be88 JP |
2969 | M: Roland Dreier <[email protected]> |
2970 | M: Sean Hefty <[email protected]> | |
2971 | M: Hal Rosenstock <[email protected]> | |
e6cc0fd1 | 2972 | L: [email protected] |
1da177e4 | 2973 | W: http://www.openib.org/ |
8a6e2535 | 2974 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 2975 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 2976 | S: Supported |
679655da JP |
2977 | F: Documentation/infiniband/ |
2978 | F: drivers/infiniband/ | |
2979 | F: include/linux/if_infiniband.h | |
1da177e4 | 2980 | |
c9f04f58 | 2981 | INOTIFY |
8b58be88 JP |
2982 | M: John McCutchan <[email protected]> |
2983 | M: Robert Love <[email protected]> | |
2984 | M: Eric Paris <[email protected]> | |
c9f04f58 | 2985 | S: Maintained |
679655da JP |
2986 | F: Documentation/filesystems/inotify.txt |
2987 | F: fs/notify/inotify/ | |
2988 | F: include/linux/inotify.h | |
c9f04f58 | 2989 | |
e2d1d6c0 | 2990 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
2991 | M: Dmitry Torokhov <[email protected]> |
2992 | M: Dmitry Torokhov <[email protected]> | |
e2d1d6c0 | 2993 | L: [email protected] |
8a6e2535 | 2994 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 2995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 2996 | S: Maintained |
679655da | 2997 | F: drivers/input/ |
e2d1d6c0 | 2998 | |
3267a87f HR |
2999 | INPUT MULTITOUCH (MT) PROTOCOL |
3000 | M: Henrik Rydberg <[email protected]> | |
3001 | L: [email protected] | |
3002 | S: Maintained | |
3003 | F: Documentation/input/multi-touch-protocol.txt | |
3004 | K: \b(ABS|SYN)_MT_ | |
3005 | ||
26717172 LB |
3006 | INTEL IDLE DRIVER |
3007 | M: Len Brown <[email protected]> | |
3008 | L: [email protected] | |
3009 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git | |
3010 | S: Supported | |
3011 | F: drivers/idle/intel_idle.c | |
3012 | ||
9eb8ef74 | 3013 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 3014 | M: Maik Broemme <[email protected]> |
c69f677c | 3015 | L: [email protected] |
ce00f85c | 3016 | S: Maintained |
679655da JP |
3017 | F: Documentation/fb/intelfb.txt |
3018 | F: drivers/video/intelfb/ | |
9eb8ef74 | 3019 | |
1da177e4 | 3020 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 3021 | M: Antonino Daplas <[email protected]> |
c69f677c | 3022 | L: [email protected] |
ce00f85c | 3023 | S: Maintained |
679655da | 3024 | F: drivers/video/i810/ |
1da177e4 | 3025 | |
f4a9bc4c | 3026 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 3027 | M: Sujith Thomas <[email protected]> |
d0944853 | 3028 | L: [email protected] |
f4a9bc4c TS |
3029 | W: http://www.lesswatts.org/projects/acpi/ |
3030 | S: Supported | |
679655da | 3031 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 3032 | |
1da177e4 | 3033 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 3034 | M: Tigran Aivazian <[email protected]> |
1da177e4 | 3035 | S: Maintained |
679655da JP |
3036 | F: arch/x86/kernel/microcode_core.c |
3037 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 3038 | |
248a9dc3 | 3039 | INTEL I/OAT DMA DRIVER |
9fe3b691 | 3040 | M: Dan Williams <[email protected]> |
248a9dc3 | 3041 | S: Supported |
679655da | 3042 | F: drivers/dma/ioat* |
248a9dc3 | 3043 | |
6c8909b4 | 3044 | INTEL IOMMU (VT-d) |
8b58be88 | 3045 | M: David Woodhouse <[email protected]> |
6c8909b4 | 3046 | L: [email protected] |
54e5881d | 3047 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 3048 | S: Supported |
679655da JP |
3049 | F: drivers/pci/intel-iommu.c |
3050 | F: include/linux/intel-iommu.h | |
6c8909b4 | 3051 | |
b3e5f263 | 3052 | INTEL IOP-ADMA DMA DRIVER |
8b58be88 | 3053 | M: Dan Williams <[email protected]> |
f00f510a | 3054 | S: Maintained |
679655da | 3055 | F: drivers/dma/iop-adma.c |
b3e5f263 | 3056 | |
9251ce95 | 3057 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 3058 | M: Krzysztof Halasa <[email protected]> |
9251ce95 | 3059 | S: Maintained |
679655da JP |
3060 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
3061 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
3062 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
3063 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
3064 | F: drivers/net/arm/ixp4xx_eth.c | |
3065 | F: drivers/net/wan/ixp4xx_hss.c | |
9251ce95 | 3066 | |
844dd05f | 3067 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 3068 | M: Deepak Saxena <[email protected]> |
844dd05f | 3069 | S: Maintained |
679655da | 3070 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 3071 | |
2b7a52a4 | 3072 | INTEL IXP2000 ETHERNET DRIVER |
8b58be88 | 3073 | M: Lennert Buytenhek <[email protected]> |
2b7a52a4 LB |
3074 | L: [email protected] |
3075 | S: Maintained | |
679655da | 3076 | F: drivers/net/ixp2000/ |
2b7a52a4 | 3077 | |
0d164401 | 3078 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
3079 | M: Jeff Kirsher <[email protected]> |
3080 | M: Jesse Brandeburg <[email protected]> | |
3081 | M: Bruce Allan <[email protected]> | |
0d164401 JK |
3082 | M: Carolyn Wyborny <[email protected]> |
3083 | M: Don Skidmore <[email protected]> | |
3084 | M: Greg Rose <[email protected]> | |
8b58be88 | 3085 | M: PJ Waskiewicz <[email protected]> |
0d164401 | 3086 | M: Alex Duyck <[email protected]> |
8b58be88 | 3087 | M: John Ronciak <[email protected]> |
dcd01faf | 3088 | L: [email protected] |
d94e6fed | 3089 | W: http://e1000.sourceforge.net/ |
1da177e4 | 3090 | S: Supported |
0d164401 JK |
3091 | F: Documentation/networking/e100.txt |
3092 | F: Documentation/networking/e1000.txt | |
3093 | F: Documentation/networking/e1000e.txt | |
3094 | F: Documentation/networking/igb.txt | |
3095 | F: Documentation/networking/igbvf.txt | |
3096 | F: Documentation/networking/ixgb.txt | |
3097 | F: Documentation/networking/ixgbe.txt | |
3098 | F: Documentation/networking/ixgbevf.txt | |
679655da JP |
3099 | F: drivers/net/e100.c |
3100 | F: drivers/net/e1000/ | |
3101 | F: drivers/net/e1000e/ | |
3102 | F: drivers/net/igb/ | |
de4fc07a | 3103 | F: drivers/net/igbvf/ |
679655da JP |
3104 | F: drivers/net/ixgb/ |
3105 | F: drivers/net/ixgbe/ | |
0d164401 | 3106 | F: drivers/net/ixgbevf/ |
1da177e4 | 3107 | |
826d2abe | 3108 | INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT |
724c6b35 | 3109 | L: [email protected] |
e7fdc95e | 3110 | S: Orphan |
679655da JP |
3111 | F: Documentation/networking/README.ipw2100 |
3112 | F: drivers/net/wireless/ipw2x00/ipw2100.* | |
826d2abe JK |
3113 | |
3114 | INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT | |
724c6b35 | 3115 | L: [email protected] |
e7fdc95e | 3116 | S: Orphan |
679655da JP |
3117 | F: Documentation/networking/README.ipw2200 |
3118 | F: drivers/net/wireless/ipw2x00/ipw2200.* | |
826d2abe | 3119 | |
4bd96a7a SW |
3120 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
3121 | M: Joseph Cihula <[email protected]> | |
3122 | M: Shane Wang <[email protected]> | |
3123 | L: [email protected] | |
3124 | W: http://tboot.sourceforge.net | |
3125 | T: Mercurial http://www.bughost.org/repos.hg/tboot.hg | |
3126 | S: Supported | |
3127 | F: Documentation/intel_txt.txt | |
3128 | F: include/linux/tboot.h | |
3129 | F: arch/x86/kernel/tboot.c | |
3130 | ||
8a70da82 | 3131 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 3132 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
3133 | M: [email protected] |
3134 | L: [email protected] | |
3135 | S: Supported | |
3136 | W: http://linuxwimax.org | |
679655da JP |
3137 | F: Documentation/wimax/README.i2400m |
3138 | F: drivers/net/wimax/i2400m/ | |
3139 | F: include/linux/wimax/i2400m.h | |
8a70da82 | 3140 | |
b481de9c | 3141 | INTEL WIRELESS WIFI LINK (iwlwifi) |
8b58be88 | 3142 | M: Reinette Chatre <[email protected]> |
9edc71b7 | 3143 | M: Wey-Yi Guy <[email protected]> |
a0bf797f | 3144 | M: Intel Linux Wireless <[email protected]> |
b481de9c | 3145 | L: [email protected] |
b481de9c | 3146 | W: http://intellinuxwireless.org |
54e5881d | 3147 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git |
b481de9c | 3148 | S: Supported |
679655da | 3149 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 3150 | |
f6cd53c6 SO |
3151 | INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi) |
3152 | M: Samuel Ortiz <[email protected]> | |
f6cd53c6 SO |
3153 | M: Intel Linux Wireless <[email protected]> |
3154 | L: [email protected] | |
3155 | S: Supported | |
3156 | W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi | |
3157 | F: drivers/net/wireless/iwmc3200wifi/ | |
3158 | ||
cb109a0e | 3159 | IOC3 ETHERNET DRIVER |
8b58be88 | 3160 | M: Ralf Baechle <[email protected]> |
1da177e4 LT |
3161 | L: [email protected] |
3162 | S: Maintained | |
679655da | 3163 | F: drivers/net/ioc3-eth.c |
1da177e4 | 3164 | |
cb109a0e | 3165 | IOC3 SERIAL DRIVER |
8b58be88 | 3166 | M: Pat Gefre <[email protected]> |
6650e0a5 | 3167 | L: [email protected] |
cb109a0e | 3168 | S: Maintained |
679655da | 3169 | F: drivers/serial/ioc3_serial.c |
cb109a0e | 3170 | |
4480f15b | 3171 | IP MASQUERADING |
8b58be88 | 3172 | M: Juanjo Ciarlante <[email protected]> |
1da177e4 | 3173 | S: Maintained |
679655da | 3174 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 3175 | |
1202d6ff | 3176 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
3177 | M: Francois Romieu <[email protected]> |
3178 | M: Sorbica Shieh <[email protected]> | |
1202d6ff FR |
3179 | L: [email protected] |
3180 | S: Maintained | |
3365a293 | 3181 | F: drivers/net/ipg.* |
1202d6ff | 3182 | |
4480f15b | 3183 | IPATH DRIVER |
8b58be88 | 3184 | M: Ralph Campbell <[email protected]> |
e6cc0fd1 | 3185 | L: [email protected] |
f42b6471 | 3186 | T: git git://git.qlogic.com/ipath-linux-2.6 |
77d8798b | 3187 | S: Supported |
679655da | 3188 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 3189 | |
4409ebe9 | 3190 | IPMI SUBSYSTEM |
8b58be88 | 3191 | M: Corey Minyard <[email protected]> |
b0c90653 | 3192 | L: [email protected] (moderated for non-subscribers) |
4409ebe9 CM |
3193 | W: http://openipmi.sourceforge.net/ |
3194 | S: Supported | |
679655da JP |
3195 | F: Documentation/IPMI.txt |
3196 | F: drivers/char/ipmi/ | |
3197 | F: include/linux/ipmi* | |
4409ebe9 | 3198 | |
e2d1d6c0 | 3199 | IPS SCSI RAID DRIVER |
8b58be88 | 3200 | M: Adaptec OEM Raid Solutions <[email protected]> |
e2d1d6c0 RD |
3201 | L: [email protected] |
3202 | W: http://www.adaptec.com/ | |
3203 | S: Maintained | |
679655da | 3204 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
3205 | |
3206 | IPVS | |
8b58be88 JP |
3207 | M: Wensong Zhang <[email protected]> |
3208 | M: Simon Horman <[email protected]> | |
3209 | M: Julian Anastasov <[email protected]> | |
979b6c13 | 3210 | L: [email protected] |
e2d1d6c0 | 3211 | L: [email protected] |
1da177e4 | 3212 | S: Maintained |
679655da | 3213 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 HE |
3214 | F: include/net/ip_vs.h |
3215 | F: include/linux/ip_vs.h | |
679655da | 3216 | F: net/netfilter/ipvs/ |
1da177e4 | 3217 | |
e7839f25 | 3218 | IPWIRELESS DRIVER |
8b58be88 JP |
3219 | M: Jiri Kosina <[email protected]> |
3220 | M: David Sterba <[email protected]> | |
099dc4fb | 3221 | S: Maintained |
54e5881d | 3222 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git |
679655da | 3223 | F: drivers/char/pcmcia/ipwireless/ |
099dc4fb | 3224 | |
e2d1d6c0 | 3225 | IPX NETWORK LAYER |
8b58be88 | 3226 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 RD |
3227 | L: [email protected] |
3228 | S: Maintained | |
679655da JP |
3229 | F: include/linux/ipx.h |
3230 | F: include/net/ipx.h | |
3231 | F: net/ipx/ | |
e2d1d6c0 | 3232 | |
1da177e4 | 3233 | IRDA SUBSYSTEM |
8b58be88 | 3234 | M: Samuel Ortiz <[email protected]> |
a2ac953d | 3235 | L: [email protected] (subscribers-only) |
1da177e4 | 3236 | W: http://irda.sourceforge.net/ |
f353976d | 3237 | S: Maintained |
e0057975 | 3238 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
3239 | F: Documentation/networking/irda.txt |
3240 | F: drivers/net/irda/ | |
3241 | F: include/net/irda/ | |
3242 | F: net/irda/ | |
1da177e4 | 3243 | |
e2d1d6c0 | 3244 | ISAPNP |
8b58be88 | 3245 | M: Jaroslav Kysela <[email protected]> |
e2d1d6c0 | 3246 | S: Maintained |
679655da JP |
3247 | F: Documentation/isapnp.txt |
3248 | F: drivers/pnp/isapnp/ | |
3249 | F: include/linux/isapnp.h | |
e2d1d6c0 | 3250 | |
14816b1e | 3251 | ISCSI |
8b58be88 | 3252 | M: Mike Christie <[email protected]> |
14816b1e MC |
3253 | L: [email protected] |
3254 | W: www.open-iscsi.org | |
54e5881d | 3255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 3256 | S: Maintained |
679655da JP |
3257 | F: drivers/scsi/*iscsi* |
3258 | F: include/scsi/*iscsi* | |
14816b1e | 3259 | |
1da177e4 | 3260 | ISDN SUBSYSTEM |
8b58be88 | 3261 | M: Karsten Keil <[email protected]> |
d5d52273 | 3262 | L: [email protected] (subscribers-only) |
3da0ae62 | 3263 | L: [email protected] |
1da177e4 | 3264 | W: http://www.isdn4linux.de |
54e5881d | 3265 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 3266 | S: Maintained |
679655da JP |
3267 | F: Documentation/isdn/ |
3268 | F: drivers/isdn/ | |
3269 | F: include/linux/isdn.h | |
3270 | F: include/linux/isdn/ | |
1da177e4 LT |
3271 | |
3272 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 3273 | M: Armin Schindler <[email protected]> |
d5d52273 | 3274 | L: [email protected] (subscribers-only) |
1da177e4 LT |
3275 | W: http://www.melware.de |
3276 | S: Maintained | |
679655da | 3277 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 3278 | |
d624870f JD |
3279 | IT87 HARDWARE MONITORING DRIVER |
3280 | M: Jean Delvare <[email protected]> | |
3281 | L: [email protected] | |
3282 | S: Maintained | |
3283 | F: Documentation/hwmon/it87 | |
3284 | F: drivers/hwmon/it87.c | |
3285 | ||
91821ff3 | 3286 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 3287 | M: Andy Walls <[email protected]> |
c4240509 | 3288 | L: [email protected] (moderated for non-subscribers) |
661263b5 | 3289 | L: [email protected] |
54e5881d | 3290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
91821ff3 HV |
3291 | W: http://www.ivtvdriver.org |
3292 | S: Maintained | |
679655da JP |
3293 | F: Documentation/video4linux/*.ivtv |
3294 | F: drivers/media/video/ivtv/ | |
3295 | F: include/linux/ivtv* | |
91821ff3 | 3296 | |
4453d736 GR |
3297 | JC42.4 TEMPERATURE SENSOR DRIVER |
3298 | M: Guenter Roeck <[email protected]> | |
3299 | L: [email protected] | |
3300 | S: Maintained | |
3301 | F: drivers/hwmon/jc42.c | |
3302 | F: Documentation/hwmon/jc42 | |
3303 | ||
e2d1d6c0 | 3304 | JFS FILESYSTEM |
8b58be88 | 3305 | M: Dave Kleikamp <[email protected]> |
e2d1d6c0 RD |
3306 | L: [email protected] |
3307 | W: http://jfs.sourceforge.net/ | |
54e5881d | 3308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 3309 | S: Maintained |
679655da JP |
3310 | F: Documentation/filesystems/jfs.txt |
3311 | F: fs/jfs/ | |
e2d1d6c0 | 3312 | |
95252236 | 3313 | JME NETWORK DRIVER |
8b58be88 | 3314 | M: Guo-Fu Tseng <[email protected]> |
95252236 GFT |
3315 | L: [email protected] |
3316 | S: Maintained | |
679655da | 3317 | F: drivers/net/jme.* |
95252236 | 3318 | |
1da177e4 | 3319 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 3320 | M: David Woodhouse <[email protected]> |
6d85d066 DW |
3321 | L: [email protected] |
3322 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 3323 | S: Maintained |
679655da JP |
3324 | F: fs/jffs2/ |
3325 | F: include/linux/jffs2.h | |
1da177e4 | 3326 | |
de456d37 | 3327 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 3328 | M: Andrew Morton <[email protected]> |
19003c18 | 3329 | M: Jan Kara <[email protected]> |
72be2ccf | 3330 | L: [email protected] |
ae0718f8 | 3331 | S: Maintained |
679655da JP |
3332 | F: fs/jbd*/ |
3333 | F: include/linux/ext*jbd*.h | |
3334 | F: include/linux/jbd*.h | |
ae0718f8 | 3335 | |
4660cb35 | 3336 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 3337 | M: Rudolf Marek <[email protected]> |
4660cb35 | 3338 | L: [email protected] |
ae0718f8 | 3339 | S: Maintained |
679655da JP |
3340 | F: Documentation/hwmon/k8temp |
3341 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 3342 | |
1da177e4 | 3343 | KCONFIG |
8b58be88 | 3344 | M: Roman Zippel <[email protected]> |
347d12d7 | 3345 | L: [email protected] |
8a6e2535 | 3346 | Q: http://patchwork.kernel.org/project/linux-kbuild/list/ |
1da177e4 | 3347 | S: Maintained |
679655da JP |
3348 | F: Documentation/kbuild/kconfig-language.txt |
3349 | F: scripts/kconfig/ | |
1da177e4 | 3350 | |
ea6c2089 | 3351 | KDUMP |
8b58be88 JP |
3352 | M: Vivek Goyal <[email protected]> |
3353 | M: Haren Myneni <[email protected]> | |
34633993 | 3354 | L: [email protected] |
ea6c2089 VG |
3355 | W: http://lse.sourceforge.net/kdump/ |
3356 | S: Maintained | |
80811493 | 3357 | F: Documentation/kdump/ |
ea6c2089 | 3358 | |
1da177e4 | 3359 | KERNEL AUTOMOUNTER (AUTOFS) |
8b58be88 | 3360 | M: "H. Peter Anvin" <[email protected]> |
1da177e4 LT |
3361 | L: [email protected] |
3362 | S: Odd Fixes | |
679655da | 3363 | F: fs/autofs/ |
1da177e4 LT |
3364 | |
3365 | KERNEL AUTOMOUNTER v4 (AUTOFS4) | |
8b58be88 | 3366 | M: Ian Kent <[email protected]> |
1da177e4 LT |
3367 | L: [email protected] |
3368 | S: Maintained | |
679655da | 3369 | F: fs/autofs4/ |
1da177e4 | 3370 | |
70fb7ba6 | 3371 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 3372 | M: Michal Marek <[email protected]> |
3631d9a2 MM |
3373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next |
3374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes | |
347d12d7 | 3375 | L: [email protected] |
5ce45962 | 3376 | S: Maintained |
679655da JP |
3377 | F: Documentation/kbuild/ |
3378 | F: Makefile | |
3379 | F: scripts/Makefile.* | |
70fb7ba6 MM |
3380 | F: scripts/basic/ |
3381 | F: scripts/mk* | |
3382 | F: scripts/package/ | |
1da177e4 LT |
3383 | |
3384 | KERNEL JANITORS | |
c3000e03 | 3385 | L: [email protected] |
ee709b0c JP |
3386 | W: http://janitor.kernelnewbies.org/ |
3387 | S: Odd Fixes | |
1da177e4 | 3388 | |
e8b43555 | 3389 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 JP |
3390 | M: "J. Bruce Fields" <[email protected]> |
3391 | M: Neil Brown <[email protected]> | |
16141c02 | 3392 | L: [email protected] |
1da177e4 | 3393 | W: http://nfs.sourceforge.net/ |
98fac23f | 3394 | S: Supported |
679655da JP |
3395 | F: fs/nfsd/ |
3396 | F: include/linux/nfsd/ | |
3397 | F: fs/lockd/ | |
3398 | F: fs/nfs_common/ | |
3399 | F: net/sunrpc/ | |
3400 | F: include/linux/lockd/ | |
3401 | F: include/linux/sunrpc/ | |
1da177e4 | 3402 | |
426d62e2 | 3403 | KERNEL VIRTUAL MACHINE (KVM) |
8b58be88 | 3404 | M: Avi Kivity <[email protected]> |
8e616fc8 | 3405 | M: Marcelo Tosatti <[email protected]> |
1fc9d2bf AK |
3406 | L: [email protected] |
3407 | W: http://kvm.qumranet.com | |
426d62e2 | 3408 | S: Supported |
679655da JP |
3409 | F: Documentation/*/kvm.txt |
3410 | F: arch/*/kvm/ | |
3411 | F: arch/*/include/asm/kvm* | |
3412 | F: include/linux/kvm* | |
3413 | F: virt/kvm/ | |
426d62e2 | 3414 | |
ad8003d3 | 3415 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
8b58be88 | 3416 | M: Joerg Roedel <[email protected]> |
1fc9d2bf AK |
3417 | L: [email protected] |
3418 | W: http://kvm.qumranet.com | |
426d62e2 | 3419 | S: Supported |
679655da | 3420 | F: arch/x86/include/asm/svm.h |
679655da | 3421 | F: arch/x86/kvm/svm.c |
426d62e2 | 3422 | |
513014b7 | 3423 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 3424 | M: Alexander Graf <[email protected]> |
1fc9d2bf AK |
3425 | L: [email protected] |
3426 | W: http://kvm.qumranet.com | |
513014b7 | 3427 | S: Supported |
679655da JP |
3428 | F: arch/powerpc/include/asm/kvm* |
3429 | F: arch/powerpc/kvm/ | |
513014b7 | 3430 | |
1fc9d2bf | 3431 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 3432 | M: Xiantao Zhang <[email protected]> |
1fc9d2bf AK |
3433 | L: [email protected] |
3434 | W: http://kvm.qumranet.com | |
920ed9f1 | 3435 | S: Supported |
679655da JP |
3436 | F: Documentation/ia64/kvm.txt |
3437 | F: arch/ia64/include/asm/kvm* | |
3438 | F: arch/ia64/kvm/ | |
920ed9f1 | 3439 | |
85f8fffe | 3440 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 JP |
3441 | M: Carsten Otte <[email protected]> |
3442 | M: Christian Borntraeger <[email protected]> | |
85f8fffe CB |
3443 | M: [email protected] |
3444 | L: [email protected] | |
3445 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
3446 | S: Supported | |
679655da JP |
3447 | F: Documentation/s390/kvm.txt |
3448 | F: arch/s390/include/asm/kvm* | |
80811493 | 3449 | F: arch/s390/kvm/ |
a968cd3e | 3450 | F: drivers/s390/kvm/ |
85f8fffe | 3451 | |
dc009d92 | 3452 | KEXEC |
8b58be88 | 3453 | M: Eric Biederman <[email protected]> |
2f327dad | 3454 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 3455 | L: [email protected] |
dc009d92 | 3456 | S: Maintained |
679655da JP |
3457 | F: include/linux/kexec.h |
3458 | F: kernel/kexec.c | |
dc009d92 | 3459 | |
e971461f DH |
3460 | KEYS/KEYRINGS: |
3461 | M: David Howells <[email protected]> | |
3462 | L: [email protected] | |
3463 | S: Maintained | |
3464 | F: Documentation/keys.txt | |
3465 | F: include/linux/key.h | |
3466 | F: include/linux/key-type.h | |
3467 | F: include/keys/ | |
3468 | F: security/keys/ | |
3469 | ||
5b778dad | 3470 | KGDB / KDB /debug_core |
8b58be88 | 3471 | M: Jason Wessel <[email protected]> |
4063eb5f | 3472 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
3473 | L: [email protected] |
3474 | S: Maintained | |
679655da JP |
3475 | F: Documentation/DocBook/kgdb.tmpl |
3476 | F: drivers/misc/kgdbts.c | |
3477 | F: drivers/serial/kgdboc.c | |
5b778dad | 3478 | F: include/linux/kdb.h |
679655da | 3479 | F: include/linux/kgdb.h |
4063eb5f | 3480 | F: kernel/debug/ |
e3e2aaf7 | 3481 | |
456db8cc | 3482 | KMEMCHECK |
8b58be88 | 3483 | M: Vegard Nossum <[email protected]> |
410d7a97 | 3484 | M: Pekka Enberg <[email protected]> |
b9ce08c0 | 3485 | S: Maintained |
410d7a97 JP |
3486 | F: Documentation/kmemcheck.txt |
3487 | F: arch/x86/include/asm/kmemcheck.h | |
3488 | F: arch/x86/mm/kmemcheck/ | |
3489 | F: include/linux/kmemcheck.h | |
3490 | F: mm/kmemcheck.c | |
b9ce08c0 | 3491 | |
c3bb4d24 | 3492 | KMEMLEAK |
8b58be88 | 3493 | M: Catalin Marinas <[email protected]> |
c3bb4d24 CM |
3494 | S: Maintained |
3495 | F: Documentation/kmemleak.txt | |
3496 | F: include/linux/kmemleak.h | |
3497 | F: mm/kmemleak.c | |
3498 | F: mm/kmemleak-test.c | |
3499 | ||
89559a61 | 3500 | KPROBES |
8b58be88 JP |
3501 | M: Ananth N Mavinakayanahalli <[email protected]> |
3502 | M: Anil S Keshavamurthy <[email protected]> | |
3503 | M: "David S. Miller" <[email protected]> | |
97c29e74 | 3504 | M: Masami Hiramatsu <[email protected]> |
89559a61 | 3505 | S: Maintained |
679655da JP |
3506 | F: Documentation/kprobes.txt |
3507 | F: include/linux/kprobes.h | |
3508 | F: kernel/kprobes.c | |
89559a61 | 3509 | |
70e84049 | 3510 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 3511 | M: Miguel Ojeda Sandonis <[email protected]> |
450c622e MO |
3512 | W: http://miguelojeda.es/auxdisplay.htm |
3513 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 3514 | S: Maintained |
679655da JP |
3515 | F: Documentation/auxdisplay/ks0108 |
3516 | F: drivers/auxdisplay/ks0108.c | |
3517 | F: include/linux/ks0108.h | |
70e84049 | 3518 | |
1da177e4 | 3519 | LAPB module |
1da177e4 | 3520 | L: [email protected] |
bf9915cc | 3521 | S: Orphan |
679655da JP |
3522 | F: Documentation/networking/lapb-module.txt |
3523 | F: include/*/lapb.h | |
3524 | F: net/lapb/ | |
1da177e4 LT |
3525 | |
3526 | LASI 53c700 driver for PARISC | |
8b58be88 | 3527 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
3528 | L: [email protected] |
3529 | S: Maintained | |
679655da JP |
3530 | F: Documentation/scsi/53c700.txt |
3531 | F: drivers/scsi/53c700* | |
1da177e4 | 3532 | |
263de9b5 | 3533 | LED SUBSYSTEM |
8b58be88 | 3534 | M: Richard Purdie <[email protected]> |
263de9b5 | 3535 | S: Maintained |
679655da JP |
3536 | F: drivers/leds/ |
3537 | F: include/linux/leds.h | |
263de9b5 | 3538 | |
1da177e4 | 3539 | LEGO USB Tower driver |
8b58be88 | 3540 | M: Juergen Stuber <[email protected]> |
1da177e4 LT |
3541 | L: [email protected] |
3542 | W: http://legousb.sourceforge.net/ | |
3543 | S: Maintained | |
679655da | 3544 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 3545 | |
568a17ff | 3546 | LGUEST |
8b58be88 | 3547 | M: Rusty Russell <[email protected]> |
a4724ed6 | 3548 | L: [email protected] |
568a17ff | 3549 | W: http://lguest.ozlabs.org/ |
72e91863 | 3550 | S: Odd Fixes |
679655da JP |
3551 | F: Documentation/lguest/ |
3552 | F: arch/x86/lguest/ | |
3553 | F: drivers/lguest/ | |
3554 | F: include/linux/lguest*.h | |
3555 | F: arch/x86/include/asm/lguest*.h | |
568a17ff | 3556 | |
1da177e4 | 3557 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 3558 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
3559 | W: http://www.ibm.com/linux/ltc/projects/ppc |
3560 | S: Supported | |
11c34c7d | 3561 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 3562 | |
852bb9f5 | 3563 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
3564 | M: Benjamin Herrenschmidt <[email protected]> |
3565 | M: Paul Mackerras <[email protected]> | |
1da177e4 | 3566 | W: http://www.penguinppc.org/ |
a4724ed6 | 3567 | L: [email protected] |
8a6e2535 | 3568 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 3569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 3570 | S: Supported |
11c34c7d JP |
3571 | F: Documentation/powerpc/ |
3572 | F: arch/powerpc/ | |
1da177e4 LT |
3573 | |
3574 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 3575 | M: Benjamin Herrenschmidt <[email protected]> |
1da177e4 | 3576 | W: http://www.penguinppc.org/ |
a4724ed6 | 3577 | L: [email protected] |
1da177e4 | 3578 | S: Maintained |
11c34c7d JP |
3579 | F: arch/powerpc/platforms/powermac/ |
3580 | F: drivers/macintosh/ | |
1da177e4 | 3581 | |
77a76369 | 3582 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
8b58be88 | 3583 | M: Grant Likely <[email protected]> |
a4724ed6 | 3584 | L: [email protected] |
9d37a90f | 3585 | T: git git://git.secretlab.ca/git/linux-2.6.git |
1da177e4 | 3586 | S: Maintained |
11c34c7d JP |
3587 | F: arch/powerpc/platforms/512x/ |
3588 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
3589 | |
3590 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
8b58be88 JP |
3591 | M: Josh Boyer <[email protected]> |
3592 | M: Matt Porter <[email protected]> | |
1da177e4 | 3593 | W: http://www.penguinppc.org/ |
a4724ed6 | 3594 | L: [email protected] |
9ae2ccf2 | 3595 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 3596 | S: Maintained |
11c34c7d JP |
3597 | F: arch/powerpc/platforms/40x/ |
3598 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 3599 | |
260c02a9 | 3600 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
8b58be88 | 3601 | M: Grant Likely <[email protected]> |
f210d43c | 3602 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
a4724ed6 | 3603 | L: [email protected] |
9d37a90f | 3604 | T: git git://git.secretlab.ca/git/linux-2.6.git |
1da177e4 | 3605 | S: Maintained |
11c34c7d JP |
3606 | F: arch/powerpc/*/*virtex* |
3607 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 3608 | |
e93adf1e | 3609 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
3610 | M: Vitaly Bordug <[email protected]> |
3611 | M: Marcelo Tosatti <[email protected]> | |
e93adf1e | 3612 | W: http://www.penguinppc.org/ |
a4724ed6 | 3613 | L: [email protected] |
e93adf1e | 3614 | S: Maintained |
a2b1f7c8 | 3615 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 3616 | |
1da177e4 | 3617 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 3618 | M: Kumar Gala <[email protected]> |
ce00f85c | 3619 | W: http://www.penguinppc.org/ |
a4724ed6 | 3620 | L: [email protected] |
ce00f85c | 3621 | S: Maintained |
11c34c7d | 3622 | F: arch/powerpc/platforms/83xx/ |
1da177e4 | 3623 | |
ab06ff3a | 3624 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 3625 | M: Olof Johansson <[email protected]> |
a4724ed6 | 3626 | L: [email protected] |
92e19709 | 3627 | S: Maintained |
11c34c7d JP |
3628 | F: arch/powerpc/platforms/pasemi/ |
3629 | F: drivers/*/*pasemi* | |
3630 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 3631 | |
1da177e4 | 3632 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 3633 | M: Chris Wright <[email protected]> |
1a4520be | 3634 | L: [email protected] |
54e5881d | 3635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git |
1da177e4 LT |
3636 | S: Supported |
3637 | ||
e2d1d6c0 | 3638 | LLC (802.2) |
8b58be88 | 3639 | M: Arnaldo Carvalho de Melo <[email protected]> |
e2d1d6c0 | 3640 | S: Maintained |
679655da JP |
3641 | F: include/linux/llc.h |
3642 | F: include/net/llc* | |
3643 | F: net/llc/ | |
e2d1d6c0 | 3644 | |
455fbdd3 | 3645 | LIS3LV02D ACCELEROMETER DRIVER |
8b58be88 | 3646 | M: Eric Piel <[email protected]> |
455fbdd3 | 3647 | S: Maintained |
679655da JP |
3648 | F: Documentation/hwmon/lis3lv02d |
3649 | F: drivers/hwmon/lis3lv02d.* | |
455fbdd3 | 3650 | |
4e233cbe AD |
3651 | LM73 HARDWARE MONITOR DRIVER |
3652 | M: Guillaume Ligneul <[email protected]> | |
3653 | L: [email protected] | |
3654 | S: Maintained | |
3655 | F: drivers/hwmon/lm73.c | |
3656 | ||
1da177e4 | 3657 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 3658 | M: Jean Delvare <[email protected]> |
cc0b07ed | 3659 | L: [email protected] |
1da177e4 | 3660 | S: Maintained |
679655da JP |
3661 | F: Documentation/hwmon/lm83 |
3662 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
3663 | |
3664 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 3665 | M: Jean Delvare <[email protected]> |
cc0b07ed | 3666 | L: [email protected] |
1da177e4 | 3667 | S: Maintained |
679655da JP |
3668 | F: Documentation/hwmon/lm90 |
3669 | F: drivers/hwmon/lm90.c | |
1da177e4 | 3670 | |
512e67f9 | 3671 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
3672 | M: Peter Zijlstra <[email protected]> |
3673 | M: Ingo Molnar <[email protected]> | |
54e5881d | 3674 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git |
512e67f9 | 3675 | S: Maintained |
679655da JP |
3676 | F: Documentation/lockdep*.txt |
3677 | F: Documentation/lockstat.txt | |
3678 | F: include/linux/lockdep.h | |
3679 | F: kernel/lockdep* | |
512e67f9 | 3680 | |
dde33348 | 3681 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 3682 | M: "Richard Russon (FlatCap)" <[email protected]> |
dde33348 AA |
3683 | L: [email protected] |
3684 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 3685 | S: Maintained |
679655da JP |
3686 | F: Documentation/ldm.txt |
3687 | F: fs/partitions/ldm.* | |
1da177e4 | 3688 | |
ef6ada3d JE |
3689 | LogFS |
3690 | M: Joern Engel <[email protected]> | |
3691 | L: [email protected] | |
3692 | W: logfs.org | |
3693 | S: Maintained | |
3694 | F: fs/logfs/ | |
3695 | ||
c87e34ef | 3696 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
8b58be88 | 3697 | M: Eric Moore <[email protected]> |
d8a82d7b | 3698 | M: [email protected] |
cec744fb | 3699 | L: [email protected] |
c87e34ef MED |
3700 | L: [email protected] |
3701 | W: http://www.lsilogic.com/support | |
3702 | S: Supported | |
679655da | 3703 | F: drivers/message/fusion/ |
c87e34ef | 3704 | |
1da177e4 | 3705 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 3706 | M: Matthew Wilcox <[email protected]> |
1da177e4 LT |
3707 | L: [email protected] |
3708 | S: Maintained | |
679655da | 3709 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 3710 | |
81365c31 | 3711 | LTP (Linux Test Project) |
763458e0 R |
3712 | M: Rishikesh K Rajak <[email protected]> |
3713 | M: Garrett Cooper <[email protected]> | |
28b8e8d4 JP |
3714 | M: Mike Frysinger <[email protected]> |
3715 | M: Subrata Modak <[email protected]> | |
81365c31 MF |
3716 | L: [email protected] (subscribers-only) |
3717 | W: http://ltp.sourceforge.net/ | |
a5fe2475 | 3718 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
3719 | S: Maintained |
3720 | ||
c12a54b3 | 3721 | M32R ARCHITECTURE |
8b58be88 | 3722 | M: Hirokazu Takata <[email protected]> |
c12a54b3 HT |
3723 | L: [email protected] |
3724 | L: [email protected] (in Japanese) | |
3725 | W: http://www.linux-m32r.org/ | |
3726 | S: Maintained | |
679655da | 3727 | F: arch/m32r/ |
c12a54b3 | 3728 | |
1da177e4 | 3729 | M68K ARCHITECTURE |
8b58be88 JP |
3730 | M: Geert Uytterhoeven <[email protected]> |
3731 | M: Roman Zippel <[email protected]> | |
1da177e4 LT |
3732 | L: [email protected] |
3733 | W: http://www.linux-m68k.org/ | |
54e5881d | 3734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 3735 | S: Maintained |
679655da | 3736 | F: arch/m68k/ |
9db35182 | 3737 | F: drivers/zorro/ |
1da177e4 LT |
3738 | |
3739 | M68K ON APPLE MACINTOSH | |
8b58be88 | 3740 | M: Joshua Thompson <[email protected]> |
1da177e4 | 3741 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 3742 | L: [email protected] |
1da177e4 | 3743 | S: Maintained |
9db35182 | 3744 | F: arch/m68k/mac/ |
1da177e4 LT |
3745 | |
3746 | M68K ON HP9000/300 | |
8b58be88 | 3747 | M: Philip Blundell <[email protected]> |
1da177e4 LT |
3748 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
3749 | S: Maintained | |
679655da | 3750 | F: arch/m68k/hp300/ |
1da177e4 | 3751 | |
64a327a7 | 3752 | MAC80211 |
8b58be88 | 3753 | M: Johannes Berg <[email protected]> |
64a327a7 JB |
3754 | L: [email protected] |
3755 | W: http://linuxwireless.org/ | |
54e5881d | 3756 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
64a327a7 | 3757 | S: Maintained |
679655da JP |
3758 | F: Documentation/networking/mac80211-injection.txt |
3759 | F: include/net/mac80211.h | |
3760 | F: net/mac80211/ | |
64a327a7 | 3761 | |
1036d864 | 3762 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
3763 | M: Stefano Brivio <[email protected]> |
3764 | M: Mattias Nissler <[email protected]> | |
1036d864 SB |
3765 | L: [email protected] |
3766 | W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID | |
54e5881d | 3767 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
1036d864 | 3768 | S: Maintained |
679655da | 3769 | F: net/mac80211/rc80211_pid* |
1036d864 | 3770 | |
b863ceb7 | 3771 | MACVLAN DRIVER |
8b58be88 | 3772 | M: Patrick McHardy <[email protected]> |
b863ceb7 PM |
3773 | L: [email protected] |
3774 | S: Maintained | |
679655da JP |
3775 | F: drivers/net/macvlan.c |
3776 | F: include/linux/if_macvlan.h | |
b863ceb7 | 3777 | |
faf1668c | 3778 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 3779 | M: Michael Kerrisk <[email protected]> |
795fb7e7 | 3780 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 3781 | L: [email protected] |
1b53dc74 | 3782 | S: Maintained |
faf1668c | 3783 | |
74cda169 | 3784 | MARVELL LIBERTAS WIRELESS DRIVER |
8b58be88 | 3785 | M: Dan Williams <[email protected]> |
74cda169 SB |
3786 | L: [email protected] |
3787 | S: Maintained | |
679655da | 3788 | F: drivers/net/wireless/libertas/ |
74cda169 | 3789 | |
b60d6975 | 3790 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 3791 | M: Lennert Buytenhek <[email protected]> |
979b6c13 | 3792 | L: [email protected] |
f5ca8502 | 3793 | S: Maintained |
679655da JP |
3794 | F: drivers/net/mv643xx_eth.* |
3795 | F: include/linux/mv643xx.h | |
1da177e4 | 3796 | |
a2c3f656 | 3797 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 3798 | M: Lennert Buytenhek <[email protected]> |
a2c3f656 | 3799 | L: [email protected] |
16345910 | 3800 | S: Odd Fixes |
a2c3f656 LB |
3801 | F: drivers/net/wireless/mwl8k.c |
3802 | ||
2a69567b | 3803 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 3804 | M: Nicolas Pitre <[email protected]> |
18e2842b NP |
3805 | S: Odd Fixes |
3806 | F: drivers/mmc/host/mvsdio.* | |
2a69567b | 3807 | |
e2d1d6c0 | 3808 | MARVELL YUKON / SYSKONNECT DRIVER |
8b58be88 JP |
3809 | M: Mirko Lindner <[email protected]> |
3810 | M: Ralph Roesler <[email protected]> | |
e2d1d6c0 RD |
3811 | W: http://www.syskonnect.com |
3812 | S: Supported | |
3813 | ||
1da177e4 | 3814 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 3815 | L: [email protected] |
52653199 | 3816 | S: Orphan |
679655da JP |
3817 | F: drivers/video/matrox/matroxfb_* |
3818 | F: include/linux/matroxfb.h | |
1da177e4 | 3819 | |
d20620de | 3820 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
8b58be88 | 3821 | M: "Hans J. Koch" <[email protected]> |
d20620de HJK |
3822 | L: [email protected] |
3823 | S: Maintained | |
679655da JP |
3824 | F: Documentation/hwmon/max6650 |
3825 | F: drivers/hwmon/max6650.c | |
d20620de | 3826 | |
127c49ae | 3827 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
8b58be88 | 3828 | M: Mauro Carvalho Chehab <[email protected]> |
127c49ae JP |
3829 | P: LinuxTV.org Project |
3830 | L: [email protected] | |
3831 | W: http://linuxtv.org | |
8a6e2535 | 3832 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
127c49ae JP |
3833 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
3834 | S: Maintained | |
3835 | F: Documentation/dvb/ | |
3836 | F: Documentation/video4linux/ | |
3837 | F: drivers/media/ | |
3838 | F: include/media/ | |
3839 | F: include/linux/dvb/ | |
3840 | F: include/linux/videodev*.h | |
d20620de | 3841 | |
757e0108 | 3842 | MEGARAID SCSI DRIVERS |
8b58be88 | 3843 | M: Neela Syam Kolli <[email protected]> |
baaea1dc | 3844 | L: [email protected] |
ce00f85c JC |
3845 | W: http://megaraid.lsilogic.com |
3846 | S: Maintained | |
679655da JP |
3847 | F: Documentation/scsi/megaraid.txt |
3848 | F: drivers/scsi/megaraid.* | |
3849 | F: drivers/scsi/megaraid/ | |
757e0108 | 3850 | |
70ea91f1 SR |
3851 | MEMORY MANAGEMENT |
3852 | L: [email protected] | |
70ea91f1 SR |
3853 | W: http://www.linux-mm.org |
3854 | S: Maintained | |
679655da JP |
3855 | F: include/linux/mm.h |
3856 | F: mm/ | |
70ea91f1 | 3857 | |
938a9204 | 3858 | MEMORY RESOURCE CONTROLLER |
8b58be88 | 3859 | M: Balbir Singh <[email protected]> |
a38374b8 | 3860 | M: Daisuke Nishimura <[email protected]> |
8b58be88 | 3861 | M: KAMEZAWA Hiroyuki <[email protected]> |
938a9204 | 3862 | L: [email protected] |
938a9204 | 3863 | S: Maintained |
679655da | 3864 | F: mm/memcontrol.c |
938a9204 | 3865 | |
f4e9ce66 | 3866 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 3867 | M: David Woodhouse <[email protected]> |
1da177e4 | 3868 | L: [email protected] |
8a6e2535 JP |
3869 | W: http://www.linux-mtd.infradead.org/ |
3870 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 3871 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 3872 | S: Maintained |
679655da JP |
3873 | F: drivers/mtd/ |
3874 | F: include/linux/mtd/ | |
3875 | F: include/mtd/ | |
1da177e4 | 3876 | |
c6375b0a | 3877 | MICROBLAZE ARCHITECTURE |
8b58be88 | 3878 | M: Michal Simek <[email protected]> |
c6375b0a MS |
3879 | L: [email protected] |
3880 | W: http://www.monstr.eu/fdt/ | |
3881 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
3882 | S: Supported | |
0a8c7914 | 3883 | F: arch/microblaze/ |
1da177e4 LT |
3884 | |
3885 | MICROTEK X6 SCANNER | |
8b58be88 | 3886 | M: Oliver Neukum <[email protected]> |
1da177e4 | 3887 | S: Maintained |
679655da | 3888 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
3889 | |
3890 | MIPS | |
8b58be88 | 3891 | M: Ralf Baechle <[email protected]> |
d50f7ec9 | 3892 | W: http://www.linux-mips.org/ |
1da177e4 | 3893 | L: [email protected] |
54e5881d | 3894 | T: git git://git.linux-mips.org/pub/scm/linux.git |
7425b340 | 3895 | S: Supported |
679655da JP |
3896 | F: Documentation/mips/ |
3897 | F: arch/mips/ | |
1da177e4 LT |
3898 | |
3899 | MISCELLANEOUS MCA-SUPPORT | |
8b58be88 | 3900 | M: James Bottomley <[email protected]> |
1da177e4 | 3901 | S: Maintained |
679655da JP |
3902 | F: Documentation/ia64/mca.txt |
3903 | F: Documentation/mca.txt | |
3904 | F: drivers/mca/ | |
3905 | F: include/linux/mca* | |
1da177e4 LT |
3906 | |
3907 | MODULE SUPPORT | |
8b58be88 | 3908 | M: Rusty Russell <[email protected]> |
1da177e4 | 3909 | S: Maintained |
679655da JP |
3910 | F: include/linux/module.h |
3911 | F: kernel/module.c | |
1da177e4 LT |
3912 | |
3913 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
8b58be88 | 3914 | M: Stelian Pop <[email protected]> |
1da177e4 LT |
3915 | W: http://popies.net/meye/ |
3916 | S: Maintained | |
679655da JP |
3917 | F: Documentation/video4linux/meye.txt |
3918 | F: drivers/media/video/meye.* | |
3919 | F: include/linux/meye.h | |
1da177e4 | 3920 | |
c58ff04a | 3921 | MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 3922 | M: Pavel Pisa <[email protected]> |
efc03ecb | 3923 | L: [email protected] (moderated for non-subscribers) |
c58ff04a | 3924 | S: Maintained |
679655da | 3925 | F: drivers/mmc/host/imxmmc.* |
c58ff04a | 3926 | |
1da177e4 | 3927 | MOUSE AND MISC DEVICES [GENERAL] |
8b58be88 | 3928 | M: Alessandro Rubini <[email protected]> |
1da177e4 | 3929 | S: Maintained |
679655da JP |
3930 | F: drivers/input/mouse/ |
3931 | F: include/linux/gpio_mouse.h | |
1da177e4 | 3932 | |
b9705b60 | 3933 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 3934 | M: Jiri Slaby <[email protected]> |
d735410a | 3935 | S: Maintained |
679655da JP |
3936 | F: Documentation/serial/moxa-smartio |
3937 | F: drivers/char/mxser.* | |
d735410a | 3938 | |
8c4c731a | 3939 | MSI LAPTOP SUPPORT |
58e226c6 | 3940 | M: Lee, Chun-Yi <[email protected]> |
d0944853 | 3941 | L: [email protected] |
8c4c731a | 3942 | S: Maintained |
679655da | 3943 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 3944 | |
0f1006b1 AA |
3945 | MSI WMI SUPPORT |
3946 | M: Anisse Astier <[email protected]> | |
d0944853 | 3947 | L: [email protected] |
0f1006b1 AA |
3948 | S: Supported |
3949 | F: drivers/platform/x86/msi-wmi.c | |
3950 | ||
4e0d13cb | 3951 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 3952 | M: Samuel Ortiz <[email protected]> |
54e5881d | 3953 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
4e0d13cb | 3954 | S: Supported |
679655da | 3955 | F: drivers/mfd/ |
4e0d13cb | 3956 | |
5c4e6f13 | 3957 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 3958 | M: Chris Ball <[email protected]> |
b2503a94 | 3959 | L: [email protected] |
245feaa6 CB |
3960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
3961 | S: Maintained | |
679655da JP |
3962 | F: drivers/mmc/ |
3963 | F: include/linux/mmc/ | |
baca2da4 | 3964 | |
15a0580c | 3965 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
8b58be88 | 3966 | M: David Brownell <[email protected]> |
baaea1dc | 3967 | S: Odd Fixes |
679655da JP |
3968 | F: drivers/mmc/host/mmc_spi.c |
3969 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 3970 | |
1da177e4 | 3971 | MULTISOUND SOUND DRIVER |
8b58be88 | 3972 | M: Andrew Veliath <[email protected]> |
1da177e4 | 3973 | S: Maintained |
679655da JP |
3974 | F: Documentation/sound/oss/MultiSound |
3975 | F: sound/oss/msnd* | |
1da177e4 | 3976 | |
d735410a | 3977 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 3978 | S: Orphan |
679655da JP |
3979 | F: drivers/char/isicom.c |
3980 | F: include/linux/isicom.h | |
d735410a | 3981 | |
550a7375 | 3982 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 3983 | M: Felipe Balbi <[email protected]> |
795fb7e7 | 3984 | L: [email protected] |
8a700f3d | 3985 | T: git git://gitorious.org/usb/usb.git |
795fb7e7 | 3986 | S: Maintained |
679655da | 3987 | F: drivers/usb/musb/ |
550a7375 | 3988 | |
2d3cf588 | 3989 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
8b58be88 JP |
3990 | M: Andrew Gallatin <[email protected]> |
3991 | M: Brice Goglin <[email protected]> | |
2d3cf588 BG |
3992 | L: [email protected] |
3993 | W: http://www.myri.com/scs/download-Myri10GE.html | |
3994 | S: Supported | |
679655da | 3995 | F: drivers/net/myri10ge/ |
2d3cf588 | 3996 | |
1da177e4 | 3997 | NATSEMI ETHERNET DRIVER (DP8381x) |
8b58be88 | 3998 | M: Tim Hockin <[email protected]> |
1da177e4 | 3999 | S: Maintained |
679655da | 4000 | F: drivers/net/natsemi.c |
1da177e4 LT |
4001 | |
4002 | NCP FILESYSTEM | |
52653199 PV |
4003 | M: Petr Vandrovec <[email protected]> |
4004 | S: Odd Fixes | |
679655da | 4005 | F: fs/ncpfs/ |
1da177e4 LT |
4006 | |
4007 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 4008 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 LT |
4009 | L: [email protected] |
4010 | S: Maintained | |
679655da | 4011 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 4012 | |
3c2d774c | 4013 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 JP |
4014 | M: Faisal Latif <[email protected]> |
4015 | M: Chien Tung <[email protected]> | |
e6cc0fd1 | 4016 | L: [email protected] |
3c2d774c GS |
4017 | W: http://www.neteffect.com |
4018 | S: Supported | |
4019 | F: drivers/infiniband/hw/nes/ | |
4020 | ||
be2f2e84 | 4021 | NETEM NETWORK EMULATOR |
8b58be88 | 4022 | M: Stephen Hemminger <[email protected]> |
f318a63b | 4023 | L: [email protected] |
be2f2e84 | 4024 | S: Maintained |
679655da | 4025 | F: net/sched/sch_netem.c |
be2f2e84 | 4026 | |
b2f5a051 JM |
4027 | NETERION 10GbE DRIVERS (s2io/vxge) |
4028 | M: Ramkrishna Vepa <[email protected]> | |
4029 | M: Sivakumar Subramani <[email protected]> | |
4030 | M: Sreenivasa Honnur <[email protected]> | |
4031 | M: Jon Mason <[email protected]> | |
4a58448b | 4032 | L: [email protected] |
b136d1cb RV |
4033 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous |
4034 | W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous | |
4a58448b | 4035 | S: Supported |
679655da JP |
4036 | F: Documentation/networking/s2io.txt |
4037 | F: drivers/net/s2io* | |
b2f5a051 JM |
4038 | F: Documentation/networking/vxge.txt |
4039 | F: drivers/net/vxge/ | |
4a58448b | 4040 | |
1da177e4 LT |
4041 | NETFILTER/IPTABLES/IPCHAINS |
4042 | P: Rusty Russell | |
4043 | P: Marc Boucher | |
4044 | P: James Morris | |
4045 | P: Harald Welte | |
4046 | P: Jozsef Kadlecsik | |
8b58be88 | 4047 | M: Patrick McHardy <[email protected]> |
1a03b81d PM |
4048 | L: [email protected] |
4049 | L: [email protected] | |
82b98543 | 4050 | L: [email protected] |
1da177e4 LT |
4051 | W: http://www.netfilter.org/ |
4052 | W: http://www.iptables.org/ | |
34693710 | 4053 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git |
1da177e4 | 4054 | S: Supported |
679655da JP |
4055 | F: include/linux/netfilter* |
4056 | F: include/linux/netfilter/ | |
4057 | F: include/net/netfilter/ | |
4058 | F: net/*/netfilter.c | |
4059 | F: net/*/netfilter/ | |
4060 | F: net/netfilter/ | |
1da177e4 | 4061 | |
4cc67735 | 4062 | NETLABEL |
8b58be88 | 4063 | M: Paul Moore <[email protected]> |
4cc67735 PM |
4064 | W: http://netlabel.sf.net |
4065 | L: [email protected] | |
4066 | S: Supported | |
80811493 | 4067 | F: Documentation/netlabel/ |
679655da JP |
4068 | F: include/net/netlabel.h |
4069 | F: net/netlabel/ | |
4cc67735 | 4070 | |
1da177e4 | 4071 | NETROM NETWORK LAYER |
8b58be88 | 4072 | M: Ralf Baechle <[email protected]> |
1da177e4 | 4073 | L: [email protected] |
d34cb28a | 4074 | W: http://www.linux-ax25.org/ |
1da177e4 | 4075 | S: Maintained |
679655da JP |
4076 | F: include/linux/netrom.h |
4077 | F: include/net/netrom.h | |
4078 | F: net/netrom/ | |
1da177e4 | 4079 | |
5ddb88c0 | 4080 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 4081 | M: Paul Clements <[email protected]> |
1da177e4 | 4082 | S: Maintained |
679655da JP |
4083 | F: Documentation/blockdev/nbd.txt |
4084 | F: drivers/block/nbd.c | |
4085 | F: include/linux/nbd.h | |
1da177e4 | 4086 | |
6e43650c NH |
4087 | NETWORK DROP MONITOR |
4088 | M: Neil Horman <[email protected]> | |
4089 | L: [email protected] | |
4090 | S: Maintained | |
4091 | W: https://fedorahosted.org/dropwatch/ | |
4092 | F: net/core/drop_monitor.c | |
4093 | ||
1da177e4 | 4094 | NETWORKING [GENERAL] |
8b58be88 | 4095 | M: "David S. Miller" <[email protected]> |
979b6c13 | 4096 | L: [email protected] |
b1e8fd54 | 4097 | W: http://www.linuxfoundation.org/en/Net |
d1f6803a | 4098 | W: http://patchwork.ozlabs.org/project/netdev/list/ |
b1e8fd54 | 4099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
dffc1436 | 4100 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git |
1da177e4 | 4101 | S: Maintained |
679655da JP |
4102 | F: net/ |
4103 | F: include/net/ | |
018d21ed JP |
4104 | F: include/linux/in.h |
4105 | F: include/linux/net.h | |
4106 | F: include/linux/netdevice.h | |
1da177e4 LT |
4107 | |
4108 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
4109 | M: "David S. Miller" <[email protected]> |
4110 | M: Alexey Kuznetsov <[email protected]> | |
4111 | M: "Pekka Savola (ipv6)" <[email protected]> | |
4112 | M: James Morris <[email protected]> | |
4113 | M: Hideaki YOSHIFUJI <[email protected]> | |
4114 | M: Patrick McHardy <[email protected]> | |
979b6c13 | 4115 | L: [email protected] |
54e5881d | 4116 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
1da177e4 | 4117 | S: Maintained |
679655da JP |
4118 | F: net/ipv4/ |
4119 | F: net/ipv6/ | |
4120 | F: include/net/ip* | |
1da177e4 | 4121 | |
10e2ff1c | 4122 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
8b58be88 | 4123 | M: Paul Moore <[email protected]> |
10e2ff1c JM |
4124 | L: [email protected] |
4125 | S: Maintained | |
4126 | ||
29f8f632 | 4127 | NETWORKING [WIRELESS] |
8b58be88 | 4128 | M: "John W. Linville" <[email protected]> |
2cb4abd1 | 4129 | L: [email protected] |
8a6e2535 | 4130 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
54e5881d | 4131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git |
29f8f632 | 4132 | S: Maintained |
34b921cf JP |
4133 | F: net/mac80211/ |
4134 | F: net/rfkill/ | |
679655da JP |
4135 | F: net/wireless/ |
4136 | F: include/net/ieee80211* | |
cc8b4a2b | 4137 | F: include/linux/wireless.h |
c984e24d | 4138 | F: include/net/iw_handler.h |
34b921cf | 4139 | F: drivers/net/wireless/ |
29f8f632 | 4140 | |
788873ac JP |
4141 | NETWORKING DRIVERS |
4142 | L: [email protected] | |
4143 | W: http://www.linuxfoundation.org/en/Net | |
4144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git | |
3af26f58 | 4145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git |
788873ac JP |
4146 | S: Odd Fixes |
4147 | F: drivers/net/ | |
018d21ed JP |
4148 | F: include/linux/if_* |
4149 | F: include/linux/*device.h | |
788873ac | 4150 | |
3d396eb1 | 4151 | NETXEN (1/10) GbE SUPPORT |
9c2b5bde | 4152 | M: Amit Kumar Salecha <[email protected]> |
3d396eb1 | 4153 | L: [email protected] |
9c2b5bde | 4154 | W: http://www.qlogic.com |
3d396eb1 | 4155 | S: Supported |
679655da | 4156 | F: drivers/net/netxen/ |
3d396eb1 | 4157 | |
e8b43555 | 4158 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 4159 | M: Trond Myklebust <[email protected]> |
78f58153 TM |
4160 | L: [email protected] |
4161 | W: http://client.linux-nfs.org | |
4162 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 4163 | S: Maintained |
679655da JP |
4164 | F: fs/lockd/ |
4165 | F: fs/nfs/ | |
4166 | F: fs/nfs_common/ | |
4167 | F: net/sunrpc/ | |
4168 | F: include/linux/lockd/ | |
4169 | F: include/linux/nfs* | |
4170 | F: include/linux/sunrpc/ | |
1da177e4 LT |
4171 | |
4172 | NI5010 NETWORK DRIVER | |
8b58be88 JP |
4173 | M: Jan-Pascal van Best <[email protected]> |
4174 | M: Andreas Mohr <[email protected]> | |
979b6c13 | 4175 | L: [email protected] |
1da177e4 | 4176 | S: Maintained |
679655da | 4177 | F: drivers/net/ni5010.* |
1da177e4 | 4178 | |
85ef9cea | 4179 | NILFS2 FILESYSTEM |
8b58be88 | 4180 | M: KONISHI Ryusuke <[email protected]> |
6aff43f8 | 4181 | L: [email protected] |
85ef9cea RK |
4182 | W: http://www.nilfs.org/en/ |
4183 | S: Supported | |
679655da JP |
4184 | F: Documentation/filesystems/nilfs2.txt |
4185 | F: fs/nilfs2/ | |
4186 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 4187 | |
1da177e4 | 4188 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 4189 | M: YOKOTA Hiroshi <[email protected]> |
1da177e4 LT |
4190 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
4191 | S: Maintained | |
679655da JP |
4192 | F: Documentation/scsi/NinjaSCSI.txt |
4193 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
4194 | |
4195 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
4196 | M: GOTO Masanori <[email protected]> |
4197 | M: YOKOTA Hiroshi <[email protected]> | |
1da177e4 LT |
4198 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
4199 | S: Maintained | |
679655da JP |
4200 | F: Documentation/scsi/NinjaSCSI.txt |
4201 | F: drivers/scsi/nsp32* | |
1da177e4 | 4202 | |
1da177e4 | 4203 | NTFS FILESYSTEM |
8b58be88 | 4204 | M: Anton Altaparmakov <[email protected]> |
1da177e4 | 4205 | L: [email protected] |
169ccbd4 | 4206 | W: http://www.linux-ntfs.org/ |
54e5881d | 4207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git |
1da177e4 | 4208 | S: Maintained |
679655da JP |
4209 | F: Documentation/filesystems/ntfs.txt |
4210 | F: fs/ntfs/ | |
1da177e4 | 4211 | |
9eb8ef74 | 4212 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 4213 | M: Antonino Daplas <[email protected]> |
c69f677c | 4214 | L: [email protected] |
ce00f85c | 4215 | S: Maintained |
679655da JP |
4216 | F: drivers/video/riva/ |
4217 | F: drivers/video/nvidia/ | |
1da177e4 | 4218 | |
f5525786 | 4219 | OMAP SUPPORT |
0e24bdd4 | 4220 | M: Tony Lindgren <[email protected]> |
f5525786 TL |
4221 | L: [email protected] |
4222 | W: http://www.muru.com/linux/omap/ | |
4223 | W: http://linux.omap.com/ | |
8a6e2535 | 4224 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
f5525786 TL |
4225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git |
4226 | S: Maintained | |
4e04d5a3 | 4227 | F: arch/arm/*omap*/ |
f5525786 TL |
4228 | |
4229 | OMAP CLOCK FRAMEWORK SUPPORT | |
8b58be88 | 4230 | M: Paul Walmsley <[email protected]> |
f5525786 TL |
4231 | L: [email protected] |
4232 | S: Maintained | |
4233 | F: arch/arm/*omap*/*clock* | |
4234 | ||
4235 | OMAP POWER MANAGEMENT SUPPORT | |
8b58be88 | 4236 | M: Kevin Hilman <[email protected]> |
f5525786 TL |
4237 | L: [email protected] |
4238 | S: Maintained | |
4239 | F: arch/arm/*omap*/*pm* | |
4240 | ||
4241 | OMAP AUDIO SUPPORT | |
8b58be88 | 4242 | M: Jarkko Nikula <[email protected]> |
f5525786 TL |
4243 | L: [email protected] (subscribers-only) |
4244 | L: [email protected] | |
4245 | S: Maintained | |
4246 | F: sound/soc/omap/ | |
4247 | ||
4248 | OMAP FRAMEBUFFER SUPPORT | |
3043c10a | 4249 | M: Tomi Valkeinen <[email protected]> |
c69f677c | 4250 | L: [email protected] |
f5525786 TL |
4251 | L: [email protected] |
4252 | S: Maintained | |
4253 | F: drivers/video/omap/ | |
4254 | ||
676eec0d | 4255 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
178ff4c9 TV |
4256 | M: Tomi Valkeinen <[email protected]> |
4257 | L: [email protected] | |
676eec0d | 4258 | L: [email protected] |
178ff4c9 | 4259 | S: Maintained |
676eec0d | 4260 | F: drivers/video/omap2/ |
178ff4c9 TV |
4261 | F: Documentation/arm/OMAP/DSS |
4262 | ||
f5525786 | 4263 | OMAP MMC SUPPORT |
8b58be88 | 4264 | M: Jarkko Lavinen <[email protected]> |
f5525786 TL |
4265 | L: [email protected] |
4266 | S: Maintained | |
653f41b5 MC |
4267 | F: drivers/mmc/host/omap.c |
4268 | ||
4269 | OMAP HS MMC SUPPORT | |
4270 | M: Madhusudhan Chikkature <[email protected]> | |
4271 | L: [email protected] | |
4272 | S: Maintained | |
4273 | F: drivers/mmc/host/omap_hsmmc.c | |
f5525786 TL |
4274 | |
4275 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 4276 | M: Deepak Saxena <[email protected]> |
f5525786 TL |
4277 | S: Maintained |
4278 | F: drivers/char/hw_random/omap-rng.c | |
4279 | ||
4280 | OMAP USB SUPPORT | |
f299470a | 4281 | M: Felipe Balbi <[email protected]> |
8b58be88 | 4282 | M: David Brownell <[email protected]> |
f5525786 TL |
4283 | L: [email protected] |
4284 | L: [email protected] | |
4285 | S: Maintained | |
a16fbd65 JP |
4286 | F: drivers/usb/*/*omap* |
4287 | F: arch/arm/*omap*/usb* | |
f5525786 | 4288 | |
0ad122d9 | 4289 | OMFS FILESYSTEM |
8b58be88 | 4290 | M: Bob Copeland <[email protected]> |
0ad122d9 BC |
4291 | L: [email protected] |
4292 | S: Maintained | |
679655da JP |
4293 | F: Documentation/filesystems/omfs.txt |
4294 | F: fs/omfs/ | |
0ad122d9 | 4295 | |
c1986ee9 | 4296 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 4297 | M: Harald Welte <[email protected]> |
c1986ee9 | 4298 | S: Maintained |
679655da JP |
4299 | F: drivers/char/pcmcia/cm4000_cs.c |
4300 | F: include/linux/cm4000_cs.h | |
c1986ee9 | 4301 | |
77c44ab1 | 4302 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 4303 | M: Harald Welte <[email protected]> |
77c44ab1 | 4304 | S: Maintained |
679655da | 4305 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 4306 | |
77d5140f | 4307 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 4308 | M: Jonathan Corbet <[email protected]> |
661263b5 | 4309 | L: [email protected] |
54e5881d | 4310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
77d5140f | 4311 | S: Maintained |
679655da | 4312 | F: drivers/media/video/ov7670.c |
77d5140f | 4313 | |
431bca73 | 4314 | ONENAND FLASH DRIVER |
8b58be88 | 4315 | M: Kyungmin Park <[email protected]> |
431bca73 TG |
4316 | L: [email protected] |
4317 | S: Maintained | |
679655da JP |
4318 | F: drivers/mtd/onenand/ |
4319 | F: include/linux/mtd/onenand*.h | |
431bca73 | 4320 | |
1da177e4 | 4321 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 4322 | M: Willem Riede <[email protected]> |
1da177e4 LT |
4323 | L: [email protected] |
4324 | L: [email protected] | |
4325 | S: Maintained | |
679655da JP |
4326 | F: drivers/scsi/osst* |
4327 | F: drivers/scsi/st* | |
1da177e4 | 4328 | |
e2d1d6c0 | 4329 | OPENCORES I2C BUS DRIVER |
8b58be88 | 4330 | M: Peter Korsgaard <[email protected]> |
846557d3 | 4331 | L: [email protected] |
e2d1d6c0 | 4332 | S: Maintained |
679655da JP |
4333 | F: Documentation/i2c/busses/i2c-ocores |
4334 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 4335 | |
860c44c1 GL |
4336 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
4337 | M: Grant Likely <[email protected]> | |
4338 | L: [email protected] | |
4339 | W: http://fdt.secretlab.ca | |
3bbf9b9b | 4340 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 GL |
4341 | S: Maintained |
4342 | F: drivers/of | |
4343 | F: include/linux/of*.h | |
4344 | K: of_get_property | |
4345 | ||
1da177e4 | 4346 | OPROFILE |
8b58be88 | 4347 | M: Robert Richter <[email protected]> |
1da177e4 LT |
4348 | L: [email protected] |
4349 | S: Maintained | |
81c4a8a6 | 4350 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
4351 | F: arch/*/oprofile/ |
4352 | F: drivers/oprofile/ | |
4353 | F: include/linux/oprofile.h | |
1da177e4 | 4354 | |
e2d1d6c0 | 4355 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 JP |
4356 | M: Mark Fasheh <[email protected]> |
4357 | M: Joel Becker <[email protected]> | |
e2d1d6c0 RD |
4358 | L: [email protected] (moderated for non-subscribers) |
4359 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 4360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 4361 | S: Supported |
679655da JP |
4362 | F: Documentation/filesystems/ocfs2.txt |
4363 | F: Documentation/filesystems/dlmfs.txt | |
4364 | F: fs/ocfs2/ | |
e2d1d6c0 | 4365 | |
1da177e4 | 4366 | ORINOCO DRIVER |
8b58be88 JP |
4367 | M: Pavel Roskin <[email protected]> |
4368 | M: David Gibson <[email protected]> | |
724c6b35 | 4369 | L: [email protected] |
ecffdde6 PR |
4370 | L: [email protected] |
4371 | L: [email protected] | |
4372 | W: http://www.nongnu.org/orinoco/ | |
1da177e4 | 4373 | S: Maintained |
679655da | 4374 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 4375 | |
42c55aa8 | 4376 | OSD LIBRARY and FILESYSTEM |
8b58be88 JP |
4377 | M: Boaz Harrosh <[email protected]> |
4378 | M: Benny Halevy <[email protected]> | |
68274794 BH |
4379 | L: [email protected] |
4380 | W: http://open-osd.org | |
54e5881d | 4381 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 4382 | S: Maintained |
42c55aa8 | 4383 | F: drivers/scsi/osd/ |
6b6f0b6c | 4384 | F: include/scsi/osd_* |
42c55aa8 | 4385 | F: fs/exofs/ |
68274794 | 4386 | |
e2d1d6c0 | 4387 | P54 WIRELESS DRIVER |
084cb0fe | 4388 | M: Christian Lamparter <[email protected]> |
e2d1d6c0 | 4389 | L: [email protected] |
084cb0fe | 4390 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 4391 | S: Maintained |
679655da | 4392 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 4393 | |
f5cd7872 | 4394 | PA SEMI ETHERNET DRIVER |
8b58be88 | 4395 | M: Olof Johansson <[email protected]> |
f5cd7872 OJ |
4396 | L: [email protected] |
4397 | S: Maintained | |
679655da | 4398 | F: drivers/net/pasemi_mac.* |
f5cd7872 | 4399 | |
beb58aa3 | 4400 | PA SEMI SMBUS DRIVER |
8b58be88 | 4401 | M: Olof Johansson <[email protected]> |
846557d3 | 4402 | L: [email protected] |
beb58aa3 | 4403 | S: Maintained |
679655da | 4404 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 4405 | |
709ee531 | 4406 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 4407 | M: Harald Welte <[email protected]> |
d0944853 | 4408 | L: [email protected] |
709ee531 | 4409 | S: Maintained |
679655da | 4410 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 4411 | |
4fa97181 | 4412 | PANASONIC MN10300/AM33 PORT |
8b58be88 JP |
4413 | M: David Howells <[email protected]> |
4414 | M: Koichi Yasutake <[email protected]> | |
4fa97181 DH |
4415 | L: [email protected] (moderated for non-subscribers) |
4416 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
4417 | S: Maintained | |
679655da JP |
4418 | F: Documentation/mn10300/ |
4419 | F: arch/mn10300/ | |
4fa97181 | 4420 | |
1da177e4 | 4421 | PARALLEL PORT SUPPORT |
3dd1a329 | 4422 | L: [email protected] (subscribers-only) |
5fdc2abe | 4423 | S: Orphan |
679655da JP |
4424 | F: drivers/parport/ |
4425 | F: include/linux/parport*.h | |
4426 | F: drivers/char/ppdev.c | |
4427 | F: include/linux/ppdev.h | |
1da177e4 | 4428 | |
4cdf6bc2 | 4429 | PARAVIRT_OPS INTERFACE |
8b58be88 JP |
4430 | M: Jeremy Fitzhardinge <[email protected]> |
4431 | M: Chris Wright <[email protected]> | |
4432 | M: Alok Kataria <[email protected]> | |
4433 | M: Rusty Russell <[email protected]> | |
4cdf6bc2 | 4434 | L: [email protected] |
4cdf6bc2 | 4435 | S: Supported |
679655da JP |
4436 | F: Documentation/ia64/paravirt_ops.txt |
4437 | F: arch/*/kernel/paravirt* | |
4438 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 4439 | |
e2d1d6c0 | 4440 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 4441 | M: Tim Waugh <[email protected]> |
e2d1d6c0 RD |
4442 | L: [email protected] (subscribers-only) |
4443 | W: http://www.torque.net/linux-pp.html | |
4444 | S: Maintained | |
679655da JP |
4445 | F: Documentation/blockdev/paride.txt |
4446 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
4447 | |
4448 | PARISC ARCHITECTURE | |
8b58be88 JP |
4449 | M: Kyle McMartin <[email protected]> |
4450 | M: Helge Deller <[email protected]> | |
b8828770 | 4451 | M: "James E.J. Bottomley" <[email protected]> |
e2d1d6c0 RD |
4452 | L: [email protected] |
4453 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 4454 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
54e5881d | 4455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git |
e2d1d6c0 | 4456 | S: Maintained |
679655da JP |
4457 | F: arch/parisc/ |
4458 | F: drivers/parisc/ | |
e2d1d6c0 | 4459 | |
1662d32c | 4460 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 4461 | M: Jim Cromie <[email protected]> |
1662d32c JC |
4462 | L: [email protected] |
4463 | S: Maintained | |
679655da JP |
4464 | F: Documentation/hwmon/pc87360 |
4465 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
4466 | |
4467 | PC8736x GPIO DRIVER | |
8b58be88 | 4468 | M: Jim Cromie <[email protected]> |
1662d32c | 4469 | S: Maintained |
679655da | 4470 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 4471 | |
1ad107fd JD |
4472 | PC87427 HARDWARE MONITORING DRIVER |
4473 | M: Jean Delvare <[email protected]> | |
4474 | L: [email protected] | |
4475 | S: Maintained | |
4476 | F: Documentation/hwmon/pc87427 | |
4477 | F: drivers/hwmon/pc87427.c | |
4478 | ||
b26e0ed4 | 4479 | PCA9532 LED DRIVER |
8b58be88 | 4480 | M: Riku Voipio <[email protected]> |
b26e0ed4 | 4481 | S: Maintained |
d5ca6918 JP |
4482 | F: drivers/leds/leds-pca9532.c |
4483 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 4484 | |
a1867d36 WS |
4485 | PCA9564/PCA9665 I2C BUS DRIVER |
4486 | M: Wolfram Sang <[email protected]> | |
4487 | L: [email protected] | |
4488 | S: Maintained | |
4489 | F: drivers/i2c/algos/i2c-algo-pca.c | |
4490 | F: drivers/i2c/busses/i2c-pca-* | |
4491 | F: include/linux/i2c-algo-pca.h | |
4492 | F: include/linux/i2c-pca-platform.h | |
4493 | ||
065c6359 | 4494 | PCI ERROR RECOVERY |
8b58be88 | 4495 | M: Linas Vepstas <[email protected]> |
c1f69db7 | 4496 | L: [email protected] |
065c6359 | 4497 | S: Supported |
679655da JP |
4498 | F: Documentation/PCI/pci-error-recovery.txt |
4499 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
065c6359 | 4500 | |
1da177e4 | 4501 | PCI SUBSYSTEM |
8b58be88 | 4502 | M: Jesse Barnes <[email protected]> |
2905474d | 4503 | L: [email protected] |
8a6e2535 | 4504 | Q: http://patchwork.kernel.org/project/linux-pci/list/ |
54e5881d | 4505 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git |
1da177e4 | 4506 | S: Supported |
679655da JP |
4507 | F: Documentation/PCI/ |
4508 | F: drivers/pci/ | |
4509 | F: include/linux/pci* | |
1da177e4 | 4510 | |
be3652b8 JB |
4511 | PCI HOTPLUG |
4512 | M: Jesse Barnes <[email protected]> | |
64dab204 | 4513 | L: [email protected] |
8b59a454 | 4514 | S: Supported |
be3652b8 | 4515 | F: drivers/pci/hotplug |
8cf4c195 | 4516 | |
1da177e4 | 4517 | PCMCIA SUBSYSTEM |
4230dfc9 | 4518 | P: Linux PCMCIA Team |
f5df5881 | 4519 | L: [email protected] |
6650e0a5 | 4520 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 4521 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 4522 | S: Maintained |
679655da JP |
4523 | F: Documentation/pcmcia/ |
4524 | F: drivers/pcmcia/ | |
4525 | F: include/pcmcia/ | |
1da177e4 LT |
4526 | |
4527 | PCNET32 NETWORK DRIVER | |
8b58be88 | 4528 | M: Don Fry <[email protected]> |
979b6c13 | 4529 | L: [email protected] |
1da177e4 | 4530 | S: Maintained |
679655da | 4531 | F: drivers/net/pcnet32.c |
1da177e4 | 4532 | |
ad4ecbcb | 4533 | PER-TASK DELAY ACCOUNTING |
8b58be88 | 4534 | M: Balbir Singh <[email protected]> |
ad4ecbcb | 4535 | S: Maintained |
679655da JP |
4536 | F: include/linux/delayacct.h |
4537 | F: kernel/delayacct.c | |
ad4ecbcb | 4538 | |
57c0c15b | 4539 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
4540 | M: Peter Zijlstra <[email protected]> |
4541 | M: Paul Mackerras <[email protected]> | |
4542 | M: Ingo Molnar <[email protected]> | |
cfb581bc | 4543 | M: Arnaldo Carvalho de Melo <[email protected]> |
6c0b3244 | 4544 | S: Supported |
141c4296 | 4545 | F: kernel/perf_event*.c |
a003236c | 4546 | F: include/linux/perf_event.h |
141c4296 RR |
4547 | F: arch/*/kernel/perf_event*.c |
4548 | F: arch/*/kernel/*/perf_event*.c | |
4549 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 4550 | F: arch/*/include/asm/perf_event.h |
141c4296 | 4551 | F: arch/*/lib/perf_event*.c |
a003236c VL |
4552 | F: arch/*/kernel/perf_callchain.c |
4553 | F: tools/perf/ | |
6c0b3244 | 4554 | |
dd49d0f5 | 4555 | PERSONALITY HANDLING |
8b58be88 | 4556 | M: Christoph Hellwig <[email protected]> |
dd49d0f5 JC |
4557 | L: [email protected] |
4558 | S: Maintained | |
679655da | 4559 | F: include/linux/personality.h |
dd49d0f5 | 4560 | |
1da177e4 | 4561 | PHRAM MTD DRIVER |
8b58be88 | 4562 | M: Joern Engel <[email protected]> |
1da177e4 LT |
4563 | L: [email protected] |
4564 | S: Maintained | |
679655da | 4565 | F: drivers/mtd/devices/phram.c |
1da177e4 | 4566 | |
249a6771 | 4567 | PKTCDVD DRIVER |
8b58be88 | 4568 | M: Peter Osterlund <[email protected]> |
249a6771 | 4569 | S: Maintained |
679655da JP |
4570 | F: drivers/block/pktcdvd.c |
4571 | F: include/linux/pktcdvd.h | |
249a6771 | 4572 | |
89a36810 | 4573 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 4574 | M: Anil Ravindranath <[email protected]> |
89a36810 AR |
4575 | L: [email protected] |
4576 | W: http://www.pmc-sierra.com/ | |
4577 | S: Supported | |
4578 | F: drivers/scsi/pmcraid.* | |
4579 | ||
dbf9bfe6 | 4580 | PMC SIERRA PM8001 DRIVER |
4581 | M: [email protected] | |
4582 | M: [email protected] | |
4583 | L: [email protected] | |
4584 | S: Supported | |
4585 | F: drivers/scsi/pm8001/ | |
4586 | ||
1da177e4 | 4587 | POSIX CLOCKS and TIMERS |
8b58be88 | 4588 | M: Thomas Gleixner <[email protected]> |
1da177e4 | 4589 | S: Supported |
679655da JP |
4590 | F: fs/timerfd.c |
4591 | F: include/linux/timer* | |
4592 | F: kernel/*timer* | |
1da177e4 | 4593 | |
3be86148 | 4594 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
8b58be88 JP |
4595 | M: Anton Vorontsov <[email protected]> |
4596 | M: David Woodhouse <[email protected]> | |
54e5881d | 4597 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 4598 | S: Maintained |
679655da JP |
4599 | F: include/linux/power_supply.h |
4600 | F: drivers/power/power_supply* | |
3be86148 | 4601 | |
1da177e4 | 4602 | PNP SUPPORT |
8b58be88 JP |
4603 | M: Adam Belay <[email protected]> |
4604 | M: Bjorn Helgaas <[email protected]> | |
1da177e4 | 4605 | S: Maintained |
679655da | 4606 | F: drivers/pnp/ |
1da177e4 | 4607 | |
999445d4 | 4608 | PNXxxxx I2C DRIVER |
8b58be88 | 4609 | M: Vitaly Wool <[email protected]> |
846557d3 | 4610 | L: [email protected] |
999445d4 | 4611 | S: Maintained |
679655da | 4612 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 4613 | |
1da177e4 | 4614 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 4615 | M: Paul Mackerras <[email protected]> |
1da177e4 LT |
4616 | L: [email protected] |
4617 | S: Maintained | |
679655da | 4618 | F: drivers/net/ppp_* |
1da177e4 LT |
4619 | |
4620 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 4621 | M: Mitchell Blank Jr <[email protected]> |
1da177e4 | 4622 | S: Maintained |
679655da JP |
4623 | F: net/atm/pppoatm.c |
4624 | F: include/linux/atmppp.h | |
1da177e4 LT |
4625 | |
4626 | PPP OVER ETHERNET | |
8b58be88 | 4627 | M: Michal Ostrowski <[email protected]> |
1da177e4 | 4628 | S: Maintained |
679655da JP |
4629 | F: drivers/net/pppoe.c |
4630 | F: drivers/net/pppox.c | |
1da177e4 | 4631 | |
a6d2370b | 4632 | PPP OVER L2TP |
8b58be88 | 4633 | M: James Chapman <[email protected]> |
a6d2370b | 4634 | S: Maintained |
90ca28d1 | 4635 | F: net/l2tp/l2tp_ppp.c |
679655da | 4636 | F: include/linux/if_pppol2tp.h |
a6d2370b | 4637 | |
eae9d2ba | 4638 | PPS SUPPORT |
8b58be88 | 4639 | M: Rodolfo Giometti <[email protected]> |
eae9d2ba RG |
4640 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
4641 | L: [email protected] (subscribers-only) | |
4642 | S: Maintained | |
cabaaf41 JP |
4643 | F: Documentation/pps/ |
4644 | F: drivers/pps/ | |
4645 | F: include/linux/pps*.h | |
eae9d2ba | 4646 | |
1da177e4 | 4647 | PREEMPTIBLE KERNEL |
8b58be88 | 4648 | M: Robert Love <[email protected]> |
1da177e4 LT |
4649 | L: [email protected] |
4650 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
4651 | S: Supported | |
679655da JP |
4652 | F: Documentation/preempt-locking.txt |
4653 | F: include/linux/preempt.h | |
1da177e4 LT |
4654 | |
4655 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 4656 | M: "Luis R. Rodriguez" <[email protected]> |
724c6b35 | 4657 | L: [email protected] |
9ef80804 | 4658 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 4659 | S: Obsolete |
679655da | 4660 | F: drivers/net/wireless/prism54/ |
1da177e4 | 4661 | |
b3277dfa | 4662 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 4663 | M: Mikael Pettersson <[email protected]> |
b3277dfa MP |
4664 | L: [email protected] |
4665 | S: Maintained | |
679655da | 4666 | F: drivers/ata/sata_promise.* |
b3277dfa | 4667 | |
02c18891 | 4668 | PS3 NETWORK SUPPORT |
b809b9ca | 4669 | M: Geoff Levand <[email protected]> |
02c18891 | 4670 | L: [email protected] |
a4724ed6 | 4671 | L: [email protected] |
b809b9ca | 4672 | S: Maintained |
679655da | 4673 | F: drivers/net/ps3_gelic_net.* |
02c18891 | 4674 | |
f58a9d17 | 4675 | PS3 PLATFORM SUPPORT |
b809b9ca | 4676 | M: Geoff Levand <[email protected]> |
a4724ed6 SR |
4677 | L: [email protected] |
4678 | L: [email protected] | |
b809b9ca | 4679 | S: Maintained |
679655da JP |
4680 | F: arch/powerpc/boot/ps3* |
4681 | F: arch/powerpc/include/asm/lv1call.h | |
4682 | F: arch/powerpc/include/asm/ps3*.h | |
4683 | F: arch/powerpc/platforms/ps3/ | |
4684 | F: drivers/*/ps3* | |
4685 | F: drivers/ps3/ | |
fec629b8 | 4686 | F: drivers/rtc/rtc-ps3.c |
679655da | 4687 | F: drivers/usb/host/*ps3.c |
fec629b8 | 4688 | F: sound/ppc/snd_ps3* |
f58a9d17 | 4689 | |
cffb4add | 4690 | PS3VRAM DRIVER |
8b58be88 | 4691 | M: Jim Paris <[email protected]> |
a4724ed6 | 4692 | L: [email protected] |
cffb4add | 4693 | S: Maintained |
8a3977cb | 4694 | F: drivers/block/ps3vram.c |
cffb4add | 4695 | |
cf94a4d1 | 4696 | PTRACE SUPPORT |
8b58be88 JP |
4697 | M: Roland McGrath <[email protected]> |
4698 | M: Oleg Nesterov <[email protected]> | |
cf94a4d1 CH |
4699 | S: Maintained |
4700 | F: include/asm-generic/syscall.h | |
4701 | F: include/linux/ptrace.h | |
4702 | F: include/linux/regset.h | |
4703 | F: include/linux/tracehook.h | |
4704 | F: kernel/ptrace.c | |
4705 | ||
8320204a | 4706 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 4707 | M: Mike Isely <[email protected]> |
16e9495d | 4708 | L: [email protected] (subscribers-only) |
661263b5 | 4709 | L: [email protected] |
8320204a | 4710 | W: http://www.isely.net/pvrusb2/ |
54e5881d | 4711 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
8320204a | 4712 | S: Maintained |
679655da JP |
4713 | F: Documentation/video4linux/README.pvrusb2 |
4714 | F: drivers/media/video/pvrusb2/ | |
8320204a | 4715 | |
30ec261e | 4716 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
4717 | M: Eric Miao <[email protected]> |
4718 | M: Russell King <[email protected]> | |
efc03ecb | 4719 | L: [email protected] (moderated for non-subscribers) |
1da177e4 | 4720 | S: Maintained |
679655da JP |
4721 | F: arch/arm/mach-pxa/ |
4722 | F: drivers/pcmcia/pxa2xx* | |
4723 | F: drivers/spi/pxa2xx* | |
4724 | F: drivers/usb/gadget/pxa2* | |
4725 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
4726 | F: sound/arm/pxa* |
4727 | F: sound/soc/pxa | |
1da177e4 | 4728 | |
a6bb4bab | 4729 | PXA168 SUPPORT |
8b58be88 JP |
4730 | M: Eric Miao <[email protected]> |
4731 | M: Jason Chagas <[email protected]> | |
efc03ecb | 4732 | L: [email protected] (moderated for non-subscribers) |
54e5881d | 4733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
7517b3fb | 4734 | S: Maintained |
a6bb4bab | 4735 | |
5fa82eb8 | 4736 | PXA910 SUPPORT |
8b58be88 | 4737 | M: Eric Miao <[email protected]> |
efc03ecb | 4738 | L: [email protected] (moderated for non-subscribers) |
54e5881d | 4739 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git |
7517b3fb | 4740 | S: Maintained |
5fa82eb8 | 4741 | |
e8e6cb32 EM |
4742 | MMP2 SUPPORT (aka ARMADA610) |
4743 | M: Haojian Zhuang <[email protected]> | |
4744 | M: Eric Miao <[email protected]> | |
4745 | L: [email protected] (moderated for non-subscribers) | |
4746 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git | |
4747 | S: Maintained | |
4748 | ||
272f133a PO |
4749 | PXA MMCI DRIVER |
4750 | S: Orphan | |
4751 | ||
57f63bc8 | 4752 | PXA RTC DRIVER |
8b58be88 | 4753 | M: Robert Jarzmik <[email protected]> |
57f63bc8 RJ |
4754 | L: [email protected] |
4755 | S: Maintained | |
4756 | ||
5e9772b9 JS |
4757 | QLOGIC QLA1280 SCSI DRIVER |
4758 | M: Michael Reed <[email protected]> | |
4759 | L: [email protected] | |
4760 | S: Maintained | |
4761 | F: drivers/scsi/qla1280.[ch] | |
4762 | ||
1da177e4 | 4763 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 4764 | M: Andrew Vasquez <[email protected]> |
95e6a856 | 4765 | M: [email protected] |
1da177e4 LT |
4766 | L: [email protected] |
4767 | S: Supported | |
679655da JP |
4768 | F: Documentation/scsi/LICENSE.qla2xxx |
4769 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 4770 | |
883c98fe RA |
4771 | QLOGIC QLA4XXX iSCSI DRIVER |
4772 | M: Ravi Anand <[email protected]> | |
4773 | M: Vikas Chaudhary <[email protected]> | |
4774 | M: [email protected] | |
4775 | L: [email protected] | |
4776 | S: Supported | |
4777 | F: drivers/scsi/qla4xxx/ | |
4778 | ||
5a4faa87 | 4779 | QLOGIC QLA3XXX NETWORK DRIVER |
8b58be88 | 4780 | M: Ron Mercer <[email protected]> |
5a4faa87 RM |
4781 | M: [email protected] |
4782 | L: [email protected] | |
4783 | S: Supported | |
679655da JP |
4784 | F: Documentation/networking/LICENSE.qla3xxx |
4785 | F: drivers/net/qla3xxx.* | |
5a4faa87 | 4786 | |
0ec00f03 AKS |
4787 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
4788 | M: Amit Kumar Salecha <[email protected]> | |
7b39f90f | 4789 | M: Anirban Chakraborty <[email protected]> |
0ec00f03 AKS |
4790 | M: [email protected] |
4791 | L: [email protected] | |
4792 | S: Supported | |
4793 | F: drivers/net/qlcnic/ | |
4794 | ||
c4e84bde | 4795 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
8b58be88 | 4796 | M: Ron Mercer <[email protected]> |
4cbfbe25 | 4797 | M: [email protected] |
c4e84bde RM |
4798 | L: [email protected] |
4799 | S: Supported | |
679655da | 4800 | F: drivers/net/qlge/ |
c4e84bde | 4801 | |
1da177e4 | 4802 | QNX4 FILESYSTEM |
8b58be88 | 4803 | M: Anders Larsen <[email protected]> |
1da177e4 LT |
4804 | W: http://www.alarsen.net/linux/qnx4fs/ |
4805 | S: Maintained | |
80811493 | 4806 | F: fs/qnx4/ |
679655da JP |
4807 | F: include/linux/qnx4_fs.h |
4808 | F: include/linux/qnxtypes.h | |
1da177e4 LT |
4809 | |
4810 | RADEON FRAMEBUFFER DISPLAY DRIVER | |
8b58be88 | 4811 | M: Benjamin Herrenschmidt <[email protected]> |
c69f677c | 4812 | L: [email protected] |
1da177e4 | 4813 | S: Maintained |
679655da JP |
4814 | F: drivers/video/aty/radeon* |
4815 | F: include/linux/radeonfb.h | |
1da177e4 LT |
4816 | |
4817 | RAGE128 FRAMEBUFFER DISPLAY DRIVER | |
8b58be88 | 4818 | M: Paul Mackerras <[email protected]> |
c69f677c | 4819 | L: [email protected] |
1da177e4 | 4820 | S: Maintained |
679655da | 4821 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 4822 | |
e7839f25 | 4823 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 4824 | P: rt2x00 project |
e1a6542f | 4825 | M: Ivo van Doorn <[email protected]> |
4a7bd3ec | 4826 | M: Gertjan van Wingerde <[email protected]> |
95ea3627 | 4827 | L: [email protected] |
83fc9c89 | 4828 | L: [email protected] (moderated for non-subscribers) |
95ea3627 ID |
4829 | W: http://rt2x00.serialmonkey.com/ |
4830 | S: Maintained | |
54e5881d | 4831 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
4832 | F: drivers/net/wireless/rt2x00/ |
4833 | ||
9db5579b | 4834 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 4835 | M: Nick Piggin <[email protected]> |
9db5579b | 4836 | S: Maintained |
679655da JP |
4837 | F: Documentation/blockdev/ramdisk.txt |
4838 | F: drivers/block/brd.c | |
9db5579b | 4839 | |
9e95ce27 | 4840 | RANDOM NUMBER DRIVER |
8b58be88 | 4841 | M: Matt Mackall <[email protected]> |
9e95ce27 | 4842 | S: Maintained |
679655da | 4843 | F: drivers/char/random.c |
9e95ce27 | 4844 | |
394b701c | 4845 | RAPIDIO SUBSYSTEM |
8b58be88 | 4846 | M: Matt Porter <[email protected]> |
394b701c | 4847 | S: Maintained |
679655da | 4848 | F: drivers/rapidio/ |
394b701c | 4849 | |
e2d1d6c0 | 4850 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 4851 | L: [email protected] |
f52a5490 | 4852 | S: Orphan |
679655da | 4853 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
4854 | |
4855 | RCUTORTURE MODULE | |
8b58be88 JP |
4856 | M: Josh Triplett <[email protected]> |
4857 | M: "Paul E. McKenney" <[email protected]> | |
f9094d8e | 4858 | S: Supported |
6cb6cbea | 4859 | T: git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git |
679655da JP |
4860 | F: Documentation/RCU/torture.txt |
4861 | F: kernel/rcutorture.c | |
e2d1d6c0 | 4862 | |
c1f766b5 | 4863 | RDC R-321X SoC |
8b58be88 | 4864 | M: Florian Fainelli <[email protected]> |
c1f766b5 FF |
4865 | S: Maintained |
4866 | ||
db17f395 | 4867 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 4868 | M: Florian Fainelli <[email protected]> |
db17f395 FF |
4869 | L: [email protected] |
4870 | S: Maintained | |
679655da | 4871 | F: drivers/net/r6040.c |
db17f395 | 4872 | |
a09ed661 | 4873 | RDS - RELIABLE DATAGRAM SOCKETS |
8b58be88 | 4874 | M: Andy Grover <[email protected]> |
fbb5a558 | 4875 | L: [email protected] (moderated for non-subscribers) |
a09ed661 | 4876 | S: Supported |
679655da | 4877 | F: net/rds/ |
a09ed661 | 4878 | |
595182bc | 4879 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
4880 | M: Dipankar Sarma <[email protected]> |
4881 | M: "Paul E. McKenney" <[email protected]> | |
595182bc | 4882 | W: http://www.rdrop.com/users/paulmck/rclock/ |
595182bc | 4883 | S: Supported |
6cb6cbea | 4884 | T: git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git |
f9094d8e PM |
4885 | F: Documentation/RCU/ |
4886 | F: include/linux/rcu* | |
4887 | F: include/linux/srcu* | |
4888 | F: kernel/rcu* | |
4889 | F: kernel/srcu* | |
4890 | X: kernel/rcutorture.c | |
595182bc | 4891 | |
b7bbbf35 | 4892 | REAL TIME CLOCK DRIVER (LEGACY) |
8b58be88 | 4893 | M: Paul Gortmaker <[email protected]> |
1da177e4 | 4894 | S: Maintained |
b7bbbf35 | 4895 | F: drivers/char/rtc.c |
1da177e4 | 4896 | |
0c86edc0 | 4897 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 4898 | M: Alessandro Zummo <[email protected]> |
76465493 | 4899 | L: [email protected] |
8a6e2535 | 4900 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 4901 | S: Maintained |
679655da JP |
4902 | F: Documentation/rtc.txt |
4903 | F: drivers/rtc/ | |
4904 | F: include/linux/rtc.h | |
0c86edc0 | 4905 | |
1da177e4 | 4906 | REISERFS FILE SYSTEM |
76c4e5ea | 4907 | L: [email protected] |
1da177e4 | 4908 | S: Supported |
679655da | 4909 | F: fs/reiserfs/ |
1da177e4 | 4910 | |
e0897645 | 4911 | RFKILL |
8b58be88 | 4912 | M: Johannes Berg <[email protected]> |
19d337df | 4913 | L: [email protected] |
e0897645 | 4914 | S: Maintained |
505c9247 | 4915 | F: Documentation/rfkill.txt |
80811493 | 4916 | F: net/rfkill/ |
e0897645 | 4917 | |
67e054e9 ML |
4918 | RICOH SMARTMEDIA/XD DRIVER |
4919 | M: Maxim Levitsky <[email protected]> | |
4920 | S: Maintained | |
21c26f50 JP |
4921 | F: drivers/mtd/nand/r852.c |
4922 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 4923 | |
e2d1d6c0 RD |
4924 | RISCOM8 DRIVER |
4925 | S: Orphan | |
679655da JP |
4926 | F: Documentation/serial/riscom8.txt |
4927 | F: drivers/char/riscom8* | |
e2d1d6c0 | 4928 | |
1da177e4 LT |
4929 | ROCKETPORT DRIVER |
4930 | P: Comtrol Corp. | |
1da177e4 LT |
4931 | W: http://www.comtrol.com |
4932 | S: Maintained | |
679655da JP |
4933 | F: Documentation/serial/rocket.txt |
4934 | F: drivers/char/rocket* | |
1da177e4 LT |
4935 | |
4936 | ROSE NETWORK LAYER | |
8b58be88 | 4937 | M: Ralf Baechle <[email protected]> |
1da177e4 | 4938 | L: [email protected] |
d34cb28a | 4939 | W: http://www.linux-ax25.org/ |
1da177e4 | 4940 | S: Maintained |
679655da JP |
4941 | F: include/linux/rose.h |
4942 | F: include/net/rose.h | |
4943 | F: net/rose/ | |
1da177e4 | 4944 | |
59840488 | 4945 | RTL8180 WIRELESS DRIVER |
8b58be88 | 4946 | M: "John W. Linville" <[email protected]> |
605bebe2 MW |
4947 | L: [email protected] |
4948 | W: http://linuxwireless.org/ | |
54e5881d | 4949 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 4950 | S: Maintained |
2b3daf58 | 4951 | F: drivers/net/wireless/rtl818x/rtl8180* |
605bebe2 | 4952 | |
59840488 | 4953 | RTL8187 WIRELESS DRIVER |
8b58be88 JP |
4954 | M: Herton Ronaldo Krzesinski <[email protected]> |
4955 | M: Hin-Tak Leung <[email protected]> | |
4956 | M: Larry Finger <[email protected]> | |
7d2c86b5 JP |
4957 | L: [email protected] |
4958 | W: http://linuxwireless.org/ | |
54e5881d | 4959 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 4960 | S: Maintained |
679655da | 4961 | F: drivers/net/wireless/rtl818x/rtl8187* |
59840488 | 4962 | |
9eb8ef74 | 4963 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 4964 | M: Antonino Daplas <[email protected]> |
c69f677c | 4965 | L: [email protected] |
ce00f85c | 4966 | S: Maintained |
679655da | 4967 | F: drivers/video/savage/ |
9eb8ef74 | 4968 | |
1da177e4 | 4969 | S390 |
8b58be88 JP |
4970 | M: Martin Schwidefsky <[email protected]> |
4971 | M: Heiko Carstens <[email protected]> | |
1da177e4 | 4972 | M: [email protected] |
d58140cc | 4973 | L: [email protected] |
5238da45 HC |
4974 | W: http://www.ibm.com/developerworks/linux/linux390/ |
4975 | S: Supported | |
679655da | 4976 | F: arch/s390/ |
a968cd3e | 4977 | F: drivers/s390/ |
3bfe6858 JN |
4978 | F: fs/partitions/ibm.c |
4979 | F: Documentation/s390/ | |
4980 | F: Documentation/DocBook/s390* | |
5238da45 HC |
4981 | |
4982 | S390 NETWORK DRIVERS | |
8b58be88 JP |
4983 | M: Ursula Braun <[email protected]> |
4984 | M: Frank Blaschka <[email protected]> | |
5238da45 | 4985 | M: [email protected] |
d58140cc | 4986 | L: [email protected] |
5238da45 HC |
4987 | W: http://www.ibm.com/developerworks/linux/linux390/ |
4988 | S: Supported | |
679655da | 4989 | F: drivers/s390/net/ |
5238da45 | 4990 | |
feed9b62 | 4991 | S390 ZCRYPT DRIVER |
8b58be88 JP |
4992 | M: Felix Beck <[email protected]> |
4993 | M: Ralph Wuerthner <[email protected]> | |
feed9b62 FB |
4994 | M: [email protected] |
4995 | L: [email protected] | |
a968cd3e | 4996 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 4997 | S: Supported |
d5ca6918 | 4998 | F: drivers/s390/crypto/ |
feed9b62 | 4999 | |
5238da45 | 5000 | S390 ZFCP DRIVER |
8b58be88 | 5001 | M: Christof Schmitt <[email protected]> |
07bbd0fa | 5002 | M: Swen Schillig <[email protected]> |
5238da45 | 5003 | M: [email protected] |
d58140cc | 5004 | L: [email protected] |
5238da45 | 5005 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 5006 | S: Supported |
679655da | 5007 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 5008 | |
dd96df2c | 5009 | S390 IUCV NETWORK LAYER |
8b58be88 | 5010 | M: Ursula Braun <[email protected]> |
dd96df2c UB |
5011 | M: [email protected] |
5012 | L: [email protected] | |
5013 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5014 | S: Supported | |
679655da JP |
5015 | F: drivers/s390/net/*iucv* |
5016 | F: include/net/iucv/ | |
5017 | F: net/iucv/ | |
dd96df2c | 5018 | |
4dde7f75 | 5019 | S3C24XX SD/MMC Driver |
8b58be88 | 5020 | M: Ben Dooks <[email protected]> |
efc03ecb | 5021 | L: [email protected] (moderated for non-subscribers) |
4dde7f75 | 5022 | S: Supported |
679655da | 5023 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 5024 | |
1da177e4 | 5025 | SAA7146 VIDEO4LINUX-2 DRIVER |
8b58be88 | 5026 | M: Michael Hunold <[email protected]> |
661263b5 | 5027 | L: [email protected] |
54e5881d | 5028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
1da177e4 LT |
5029 | W: http://www.mihu.de/linux/saa7146 |
5030 | S: Maintained | |
679655da JP |
5031 | F: drivers/media/common/saa7146* |
5032 | F: drivers/media/video/*7146* | |
5033 | F: include/media/*7146* | |
1da177e4 | 5034 | |
4a109cc0 MB |
5035 | SAMSUNG AUDIO (ASoC) DRIVERS |
5036 | M: Jassi Brar <[email protected]> | |
5037 | L: [email protected] (moderated for non-subscribers) | |
5038 | S: Supported | |
5039 | F: sound/soc/s3c24xx | |
5040 | ||
5b3f03f0 | 5041 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 JP |
5042 | M: Huang Shijie <[email protected]> |
5043 | M: Kang Yong <[email protected]> | |
5044 | M: Zhang Xiaobing <[email protected]> | |
5b3f03f0 HS |
5045 | S: Supported |
5046 | F: drivers/media/video/tlg2300 | |
5047 | ||
1da177e4 | 5048 | SC1200 WDT DRIVER |
8b58be88 | 5049 | M: Zwane Mwaikambo <[email protected]> |
1da177e4 | 5050 | S: Maintained |
679655da | 5051 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
5052 | |
5053 | SCHEDULER | |
8b58be88 JP |
5054 | M: Ingo Molnar <[email protected]> |
5055 | M: Peter Zijlstra <[email protected]> | |
1da177e4 | 5056 | S: Maintained |
679655da JP |
5057 | F: kernel/sched* |
5058 | F: include/linux/sched.h | |
1da177e4 | 5059 | |
6bcf6737 | 5060 | SCORE ARCHITECTURE |
a2681a75 JP |
5061 | M: Chen Liqin <[email protected]> |
5062 | M: Lennox Wu <[email protected]> | |
6bcf6737 CL |
5063 | W: http://www.sunplusct.com |
5064 | S: Supported | |
a2681a75 | 5065 | F: arch/score/ |
6bcf6737 | 5066 | |
1da177e4 | 5067 | SCSI CDROM DRIVER |
8b58be88 | 5068 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
5069 | L: [email protected] |
5070 | W: http://www.kernel.dk | |
5071 | S: Maintained | |
679655da | 5072 | F: drivers/scsi/sr* |
1da177e4 LT |
5073 | |
5074 | SCSI SG DRIVER | |
8b58be88 | 5075 | M: Doug Gilbert <[email protected]> |
1da177e4 LT |
5076 | L: [email protected] |
5077 | W: http://www.torque.net/sg | |
5078 | S: Maintained | |
679655da JP |
5079 | F: drivers/scsi/sg.c |
5080 | F: include/scsi/sg.h | |
1da177e4 LT |
5081 | |
5082 | SCSI SUBSYSTEM | |
60df75c1 | 5083 | M: "James E.J. Bottomley" <[email protected]> |
1da177e4 | 5084 | L: [email protected] |
54e5881d JP |
5085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
5086 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
5087 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 5088 | S: Maintained |
679655da JP |
5089 | F: drivers/scsi/ |
5090 | F: include/scsi/ | |
1da177e4 LT |
5091 | |
5092 | SCSI TAPE DRIVER | |
8b58be88 | 5093 | M: Kai Mäkisara <[email protected]> |
1da177e4 LT |
5094 | L: [email protected] |
5095 | S: Maintained | |
679655da JP |
5096 | F: Documentation/scsi/st.txt |
5097 | F: drivers/scsi/st* | |
1da177e4 LT |
5098 | |
5099 | SCTP PROTOCOL | |
8b58be88 JP |
5100 | M: Vlad Yasevich <[email protected]> |
5101 | M: Sridhar Samudrala <[email protected]> | |
1a418796 | 5102 | L: [email protected] |
5f85813c | 5103 | W: http://lksctp.sourceforge.net |
ce00f85c | 5104 | S: Supported |
679655da JP |
5105 | F: Documentation/networking/sctp.txt |
5106 | F: include/linux/sctp.h | |
5107 | F: include/net/sctp/ | |
5108 | F: net/sctp/ | |
1da177e4 LT |
5109 | |
5110 | SCx200 CPU SUPPORT | |
8b58be88 | 5111 | M: Jim Cromie <[email protected]> |
1662d32c | 5112 | S: Odd Fixes |
679655da JP |
5113 | F: Documentation/i2c/busses/scx200_acb |
5114 | F: arch/x86/kernel/scx200_32.c | |
5115 | F: drivers/watchdog/scx200_wdt.c | |
5116 | F: drivers/i2c/busses/scx200* | |
5117 | F: drivers/mtd/maps/scx200_docflash.c | |
5118 | F: include/linux/scx200.h | |
1662d32c JC |
5119 | |
5120 | SCx200 GPIO DRIVER | |
8b58be88 | 5121 | M: Jim Cromie <[email protected]> |
1662d32c | 5122 | S: Maintained |
679655da JP |
5123 | F: drivers/char/scx200_gpio.c |
5124 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
5125 | |
5126 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 5127 | M: Jim Cromie <[email protected]> |
1662d32c | 5128 | S: Maintained |
679655da | 5129 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 5130 | |
6a36913a | 5131 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 5132 | M: Sascha Sommer <[email protected]> |
6a36913a SS |
5133 | L: [email protected] (subscribers-only) |
5134 | S: Maintained | |
679655da | 5135 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 5136 | |
e7839f25 | 5137 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 5138 | M: Chris Ball <[email protected]> |
7a241d6e | 5139 | L: [email protected] |
245feaa6 CB |
5140 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5141 | S: Maintained | |
7a241d6e | 5142 | F: drivers/mmc/host/sdhci.* |
e2d1d6c0 | 5143 | |
3085e9c1 | 5144 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
8b58be88 | 5145 | M: Anton Vorontsov <[email protected]> |
a4724ed6 | 5146 | L: [email protected] |
7a241d6e | 5147 | L: [email protected] |
e2d1d6c0 | 5148 | S: Maintained |
7a241d6e | 5149 | F: drivers/mmc/host/sdhci-of.* |
e2d1d6c0 | 5150 | |
0d1bb41a | 5151 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 5152 | M: Ben Dooks <[email protected]> |
7a241d6e | 5153 | L: [email protected] |
0d1bb41a BD |
5154 | S: Maintained |
5155 | F: drivers/mmc/host/sdhci-s3c.c | |
5156 | ||
c63b3cba VK |
5157 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
5158 | M: Viresh Kumar <[email protected]> | |
5159 | L: [email protected] | |
5160 | S: Maintained | |
5161 | F: drivers/mmc/host/sdhci-spear.c | |
5162 | ||
8711cca2 | 5163 | SECURITY SUBSYSTEM |
8b58be88 | 5164 | M: James Morris <[email protected]> |
8711cca2 | 5165 | L: [email protected] (suggested Cc:) |
df69f0da | 5166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
c8334dc8 | 5167 | W: http://security.wiki.kernel.org/ |
8711cca2 | 5168 | S: Supported |
7d2c86b5 | 5169 | F: security/ |
8711cca2 | 5170 | |
1da177e4 | 5171 | SECURITY CONTACT |
8b58be88 | 5172 | M: Security Officers <[email protected]> |
1da177e4 LT |
5173 | S: Supported |
5174 | ||
5175 | SELINUX SECURITY MODULE | |
8b58be88 JP |
5176 | M: Stephen Smalley <[email protected]> |
5177 | M: James Morris <[email protected]> | |
5178 | M: Eric Paris <[email protected]> | |
7d2c86b5 | 5179 | L: [email protected] (subscribers-only, general discussion) |
f058925b | 5180 | W: http://selinuxproject.org |
54e5881d | 5181 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git |
1da177e4 | 5182 | S: Supported |
679655da JP |
5183 | F: include/linux/selinux* |
5184 | F: security/selinux/ | |
1da177e4 | 5185 | |
c1c124e9 JJ |
5186 | APPARMOR SECURITY MODULE |
5187 | M: John Johansen <[email protected]> | |
5188 | L: [email protected] (subscribers-only, general discussion) | |
5189 | W: apparmor.wiki.kernel.org | |
5190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
5191 | S: Supported | |
5192 | F: security/apparmor/ | |
5193 | ||
cef2cf07 | 5194 | SENSABLE PHANTOM |
8b58be88 | 5195 | M: Jiri Slaby <[email protected]> |
cef2cf07 | 5196 | S: Maintained |
679655da JP |
5197 | F: drivers/misc/phantom.c |
5198 | F: include/linux/phantom.h | |
cef2cf07 | 5199 | |
4480f15b | 5200 | SERIAL ATA (SATA) SUBSYSTEM |
8b58be88 | 5201 | M: Jeff Garzik <[email protected]> |
1da177e4 | 5202 | L: [email protected] |
54e5881d | 5203 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
1da177e4 | 5204 | S: Supported |
d5ca6918 JP |
5205 | F: drivers/ata/ |
5206 | F: include/linux/ata.h | |
5207 | F: include/linux/libata.h | |
1da177e4 | 5208 | |
6733b39a | 5209 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
3387f656 JP |
5210 | M: Jayamohan Kallickal <[email protected]> |
5211 | L: [email protected] | |
5212 | W: http://www.serverengines.com | |
5213 | S: Supported | |
5214 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 5215 | |
6b7c5b94 | 5216 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
8b58be88 JP |
5217 | M: Sathya Perla <[email protected]> |
5218 | M: Subbu Seetharaman <[email protected]> | |
f66d744d AK |
5219 | M: Sarveshwar Bandi <[email protected]> |
5220 | M: Ajit Khaparde <[email protected]> | |
7d2c86b5 JP |
5221 | L: [email protected] |
5222 | W: http://www.serverengines.com | |
5223 | S: Supported | |
679655da | 5224 | F: drivers/net/benet/ |
6b7c5b94 | 5225 | |
8ceee660 | 5226 | SFC NETWORK DRIVER |
c06f51ea JP |
5227 | M: Solarflare linux maintainers <[email protected]> |
5228 | M: Steve Hodgson <[email protected]> | |
5229 | M: Ben Hutchings <[email protected]> | |
5230 | L: [email protected] | |
8ceee660 | 5231 | S: Supported |
679655da | 5232 | F: drivers/net/sfc/ |
8ceee660 | 5233 | |
e2d1d6c0 | 5234 | SGI GRU DRIVER |
8b58be88 | 5235 | M: Jack Steiner <[email protected]> |
e2d1d6c0 | 5236 | S: Maintained |
679655da | 5237 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
5238 | |
5239 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 5240 | M: Pat Gefre <[email protected]> |
e2d1d6c0 RD |
5241 | L: [email protected] |
5242 | S: Supported | |
679655da JP |
5243 | F: Documentation/ia64/serial.txt |
5244 | F: drivers/serial/ioc?_serial.c | |
5245 | F: include/linux/ioc?.h | |
e2d1d6c0 | 5246 | |
1da177e4 | 5247 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 5248 | M: Andrey Panin <[email protected]> |
1da177e4 LT |
5249 | L: [email protected] |
5250 | W: http://linux-visws.sf.net | |
5251 | S: Maintained for 2.6. | |
679655da | 5252 | F: Documentation/sgi-visws.txt |
1da177e4 | 5253 | |
75312619 | 5254 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 5255 | M: Robin Holt <[email protected]> |
75312619 | 5256 | S: Maintained |
679655da | 5257 | F: drivers/misc/sgi-xp/ |
75312619 | 5258 | |
e2d1d6c0 | 5259 | SHARP LH SUPPORT (LH7952X & LH7A40X) |
8b58be88 | 5260 | M: Marc Singer <[email protected]> |
e2d1d6c0 | 5261 | W: http://projects.buici.com/arm |
efc03ecb | 5262 | L: [email protected] (moderated for non-subscribers) |
e2d1d6c0 | 5263 | S: Maintained |
679655da JP |
5264 | F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen |
5265 | F: arch/arm/mach-lh7a40x/ | |
5266 | F: drivers/serial/serial_lh7a40x.c | |
5267 | F: drivers/usb/gadget/lh7a40* | |
5268 | F: drivers/usb/host/ohci-lh7a40* | |
e2d1d6c0 | 5269 | |
6349d997 | 5270 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 5271 | M: Len Brown <[email protected]> |
6349d997 LB |
5272 | L: [email protected] |
5273 | W: http://simplefirmware.org/ | |
5274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 5275 | S: Supported |
6349d997 LB |
5276 | F: arch/x86/kernel/*sfi* |
5277 | F: drivers/sfi/ | |
5278 | F: include/linux/sfi*.h | |
e2d1d6c0 | 5279 | |
1da177e4 LT |
5280 | SIMTEC EB110ATX (Chalice CATS) |
5281 | P: Ben Dooks | |
8b58be88 | 5282 | M: Vincent Sanders <[email protected]> |
1da177e4 LT |
5283 | W: http://www.simtec.co.uk/products/EB110ATX/ |
5284 | S: Supported | |
5285 | ||
5286 | SIMTEC EB2410ITX (BAST) | |
5287 | P: Ben Dooks | |
8b58be88 | 5288 | M: Vincent Sanders <[email protected]> |
1da177e4 LT |
5289 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
5290 | S: Supported | |
679655da JP |
5291 | F: arch/arm/mach-s3c2410/ |
5292 | F: drivers/*/*s3c2410* | |
5293 | F: drivers/*/*/*s3c2410* | |
1da177e4 | 5294 | |
4c5adde7 KH |
5295 | TI DAVINCI MACHINE SUPPORT |
5296 | P: Kevin Hilman | |
5297 | M: [email protected] | |
8a6e2535 | 5298 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
5299 | S: Supported |
5300 | F: arch/arm/mach-davinci | |
5301 | ||
92aab3c0 | 5302 | SIS 190 ETHERNET DRIVER |
8b58be88 | 5303 | M: Francois Romieu <[email protected]> |
92aab3c0 FR |
5304 | L: [email protected] |
5305 | S: Maintained | |
679655da | 5306 | F: drivers/net/sis190.c |
92aab3c0 | 5307 | |
1da177e4 | 5308 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 5309 | M: Daniele Venzano <[email protected]> |
1da177e4 | 5310 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 5311 | L: [email protected] |
1da177e4 | 5312 | S: Maintained |
679655da | 5313 | F: drivers/net/sis900.* |
1da177e4 | 5314 | |
6ea884db | 5315 | SIS 96X I2C/SMBUS DRIVER |
8b58be88 | 5316 | M: "Mark M. Hoffman" <[email protected]> |
846557d3 | 5317 | L: [email protected] |
6ea884db | 5318 | S: Maintained |
679655da JP |
5319 | F: Documentation/i2c/busses/i2c-sis96x |
5320 | F: drivers/i2c/busses/i2c-sis96x.c | |
6ea884db | 5321 | |
1da177e4 | 5322 | SIS FRAMEBUFFER DRIVER |
8b58be88 | 5323 | M: Thomas Winischhofer <[email protected]> |
1da177e4 | 5324 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 5325 | S: Maintained |
679655da JP |
5326 | F: Documentation/fb/sisfb.txt |
5327 | F: drivers/video/sis/ | |
5328 | F: include/video/sisfb.h | |
1da177e4 LT |
5329 | |
5330 | SIS USB2VGA DRIVER | |
8b58be88 | 5331 | M: Thomas Winischhofer <[email protected]> |
1da177e4 LT |
5332 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
5333 | S: Maintained | |
679655da | 5334 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 5335 | |
e2d1d6c0 | 5336 | SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS |
8b58be88 | 5337 | M: Stephen Hemminger <[email protected]> |
e2d1d6c0 RD |
5338 | L: [email protected] |
5339 | S: Maintained | |
679655da JP |
5340 | F: drivers/net/skge.* |
5341 | F: drivers/net/sky2.* | |
e2d1d6c0 | 5342 | |
415ad26d | 5343 | SLAB ALLOCATOR |
8b58be88 JP |
5344 | M: Christoph Lameter <[email protected]> |
5345 | M: Pekka Enberg <[email protected]> | |
5346 | M: Matt Mackall <[email protected]> | |
415ad26d CL |
5347 | L: [email protected] |
5348 | S: Maintained | |
679655da JP |
5349 | F: include/linux/sl?b*.h |
5350 | F: mm/sl?b.c | |
415ad26d | 5351 | |
1da177e4 | 5352 | SMC91x ETHERNET DRIVER |
2f82af08 | 5353 | M: Nicolas Pitre <[email protected]> |
18e2842b | 5354 | S: Odd Fixes |
679655da | 5355 | F: drivers/net/smc91x.* |
1da177e4 | 5356 | |
920fa1ff GR |
5357 | SMM665 HARDWARE MONITOR DRIVER |
5358 | M: Guenter Roeck <[email protected]> | |
5359 | L: [email protected] | |
5360 | S: Maintained | |
5361 | F: Documentation/hwmon/smm665 | |
5362 | F: drivers/hwmon/smm665.c | |
5363 | ||
9df7305b SG |
5364 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
5365 | M: Steve Glendinning <[email protected]> | |
5366 | L: [email protected] | |
5367 | S: Supported | |
5368 | F: Documentation/hwmon/emc2103 | |
5369 | F: drivers/hwmon/emc2103.c | |
5370 | ||
6ea884db | 5371 | SMSC47B397 HARDWARE MONITOR DRIVER |
8b58be88 | 5372 | M: "Mark M. Hoffman" <[email protected]> |
6ea884db MH |
5373 | L: [email protected] |
5374 | S: Maintained | |
679655da JP |
5375 | F: Documentation/hwmon/smsc47b397 |
5376 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 5377 | |
fd9abb3d | 5378 | SMSC911x ETHERNET DRIVER |
8b58be88 | 5379 | M: Steve Glendinning <[email protected]> |
2cb37728 SG |
5380 | L: [email protected] |
5381 | S: Supported | |
679655da JP |
5382 | F: include/linux/smsc911x.h |
5383 | F: drivers/net/smsc911x.* | |
2cb37728 SG |
5384 | |
5385 | SMSC9420 PCI ETHERNET DRIVER | |
8b58be88 | 5386 | M: Steve Glendinning <[email protected]> |
fd9abb3d SG |
5387 | L: [email protected] |
5388 | S: Supported | |
679655da | 5389 | F: drivers/net/smsc9420.* |
fd9abb3d | 5390 | |
e2d1d6c0 | 5391 | SN-IA64 (Itanium) SUB-PLATFORM |
8b58be88 | 5392 | M: Jes Sorensen <[email protected]> |
e2d1d6c0 RD |
5393 | L: [email protected] |
5394 | L: [email protected] | |
5395 | W: http://www.sgi.com/altix | |
5396 | S: Maintained | |
679655da | 5397 | F: arch/ia64/sn/ |
e2d1d6c0 | 5398 | |
668acf32 | 5399 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 5400 | M: Guennadi Liakhovetski <[email protected]> |
661263b5 | 5401 | L: [email protected] |
54e5881d | 5402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
795fb7e7 | 5403 | S: Maintained |
679655da JP |
5404 | F: include/media/v4l2* |
5405 | F: drivers/media/video/v4l2* | |
668acf32 | 5406 | |
e2d1d6c0 | 5407 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 5408 | M: Chris Boot <[email protected]> |
e2d1d6c0 | 5409 | S: Maintained |
679655da | 5410 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 5411 | |
1da177e4 | 5412 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 5413 | M: Neil Brown <[email protected]> |
1da177e4 | 5414 | L: [email protected] |
524418bb | 5415 | S: Supported |
679655da JP |
5416 | F: drivers/md/ |
5417 | F: include/linux/raid/ | |
1da177e4 | 5418 | |
1da177e4 | 5419 | SONIC NETWORK DRIVER |
8b58be88 | 5420 | M: Thomas Bogendoerfer <[email protected]> |
979b6c13 | 5421 | L: [email protected] |
1da177e4 | 5422 | S: Maintained |
679655da | 5423 | F: drivers/net/sonic.* |
1da177e4 | 5424 | |
61e115a5 | 5425 | SONICS SILICON BACKPLANE DRIVER (SSB) |
8b58be88 | 5426 | M: Michael Buesch <[email protected]> |
61e115a5 MB |
5427 | L: [email protected] |
5428 | S: Maintained | |
679655da JP |
5429 | F: drivers/ssb/ |
5430 | F: include/linux/ssb/ | |
61e115a5 | 5431 | |
1da177e4 | 5432 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 5433 | M: Mattia Dongili <[email protected]> |
d0944853 | 5434 | L: [email protected] |
5b18167d | 5435 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 5436 | S: Maintained |
679655da JP |
5437 | F: Documentation/laptops/sony-laptop.txt |
5438 | F: drivers/char/sonypi.c | |
5439 | F: drivers/platform/x86/sony-laptop.c | |
5440 | F: include/linux/sony-laptop.h | |
1da177e4 | 5441 | |
baf8532a | 5442 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 5443 | M: Alex Dubov <[email protected]> |
baf8532a AD |
5444 | W: http://tifmxx.berlios.de/ |
5445 | S: Maintained | |
679655da | 5446 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 5447 | |
1da177e4 | 5448 | SOUND |
8b58be88 JP |
5449 | M: Jaroslav Kysela <[email protected]> |
5450 | M: Takashi Iwai <[email protected]> | |
93711660 | 5451 | L: [email protected] (moderated for non-subscribers) |
3126a179 JP |
5452 | W: http://www.alsa-project.org/ |
5453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git | |
5454 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1da177e4 | 5455 | S: Maintained |
3126a179 JP |
5456 | F: Documentation/sound/ |
5457 | F: include/sound/ | |
679655da | 5458 | F: sound/ |
1da177e4 | 5459 | |
bd903bde | 5460 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
8b58be88 JP |
5461 | M: Liam Girdwood <[email protected]> |
5462 | M: Mark Brown <[email protected]> | |
bb74a6e5 | 5463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git |
93711660 | 5464 | L: [email protected] (moderated for non-subscribers) |
b0b8daf7 | 5465 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 5466 | S: Supported |
679655da | 5467 | F: sound/soc/ |
e6e55122 | 5468 | F: include/sound/soc* |
eb1a6af3 | 5469 | |
473321fc | 5470 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 5471 | M: "David S. Miller" <[email protected]> |
1da177e4 | 5472 | L: [email protected] |
8a6e2535 | 5473 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
54e5881d JP |
5474 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git |
5475 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git | |
1da177e4 | 5476 | S: Maintained |
679655da | 5477 | F: arch/sparc/ |
7765b8bb | 5478 | F: drivers/sbus/ |
1da177e4 | 5479 | |
6404fcca DM |
5480 | SPARC SERIAL DRIVERS |
5481 | M: "David S. Miller" <[email protected]> | |
5482 | L: [email protected] | |
5483 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git | |
5484 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git | |
5485 | S: Maintained | |
5486 | F: drivers/serial/suncore.c | |
5487 | F: drivers/serial/suncore.h | |
5488 | F: drivers/serial/sunhv.c | |
5489 | F: drivers/serial/sunsab.c | |
5490 | F: drivers/serial/sunsab.h | |
5491 | F: drivers/serial/sunsu.c | |
5492 | F: drivers/serial/sunzilog.c | |
5493 | F: drivers/serial/sunzilog.h | |
5494 | ||
fc0c195a VK |
5495 | SPEAR PLATFORM SUPPORT |
5496 | M: Viresh Kumar <[email protected]> | |
5497 | W: http://www.st.com/spear | |
5498 | S: Maintained | |
5499 | F: arch/arm/plat-spear/ | |
5500 | ||
5501 | SPEAR3XX MACHINE SUPPORT | |
5502 | M: Viresh Kumar <[email protected]> | |
5503 | W: http://www.st.com/spear | |
5504 | S: Maintained | |
5505 | F: arch/arm/mach-spear3xx/ | |
5506 | ||
5507 | SPEAR6XX MACHINE SUPPORT | |
5508 | M: Rajeev Kumar <[email protected]> | |
5509 | W: http://www.st.com/spear | |
5510 | S: Maintained | |
5511 | F: arch/arm/mach-spear6xx/ | |
5512 | ||
5513 | SPEAR CLOCK FRAMEWORK SUPPORT | |
5514 | M: Viresh Kumar <[email protected]> | |
5515 | W: http://www.st.com/spear | |
5516 | S: Maintained | |
5517 | F: arch/arm/mach-spear*/clock.c | |
5518 | F: arch/arm/mach-spear*/include/mach/clkdev.h | |
5519 | F: arch/arm/plat-spear/clock.c | |
83823b72 JP |
5520 | F: arch/arm/plat-spear/include/plat/clkdev.h |
5521 | F: arch/arm/plat-spear/include/plat/clock.h | |
fc0c195a VK |
5522 | |
5523 | SPEAR PAD MULTIPLEXING SUPPORT | |
5524 | M: Viresh Kumar <[email protected]> | |
5525 | W: http://www.st.com/spear | |
5526 | S: Maintained | |
5527 | F: arch/arm/plat-spear/include/plat/padmux.h | |
5528 | F: arch/arm/plat-spear/padmux.c | |
5529 | F: arch/arm/mach-spear*/spear*xx.c | |
5530 | F: arch/arm/mach-spear*/include/mach/generic.h | |
5531 | F: arch/arm/mach-spear3xx/spear3*0.c | |
5532 | F: arch/arm/mach-spear3xx/spear3*0_evb.c | |
5533 | F: arch/arm/mach-spear6xx/spear600.c | |
5534 | F: arch/arm/mach-spear6xx/spear600_evb.c | |
5535 | ||
1da177e4 | 5536 | SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER |
8b58be88 | 5537 | M: Roger Wolff <[email protected]> |
1da177e4 | 5538 | S: Supported |
679655da JP |
5539 | F: Documentation/serial/specialix.txt |
5540 | F: drivers/char/specialix* | |
1da177e4 | 5541 | |
e2d1d6c0 | 5542 | SPI SUBSYSTEM |
8b58be88 | 5543 | M: David Brownell <[email protected]> |
d33c861e | 5544 | M: Grant Likely <[email protected]> |
e2d1d6c0 | 5545 | L: [email protected] |
8a6e2535 | 5546 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
3bbf9b9b | 5547 | T: git git://git.secretlab.ca/git/linux-2.6.git |
e2d1d6c0 | 5548 | S: Maintained |
679655da JP |
5549 | F: Documentation/spi/ |
5550 | F: drivers/spi/ | |
5551 | F: include/linux/spi/ | |
e2d1d6c0 | 5552 | |
2752e401 | 5553 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
5554 | M: Ishizaki Kou <[email protected]> |
5555 | M: Jens Osterkamp <[email protected]> | |
2752e401 JL |
5556 | L: [email protected] |
5557 | S: Supported | |
679655da JP |
5558 | F: Documentation/networking/spider_net.txt |
5559 | F: drivers/net/spider_net* | |
2752e401 | 5560 | |
e2d1d6c0 | 5561 | SPU FILE SYSTEM |
8b58be88 | 5562 | M: Jeremy Kerr <[email protected]> |
a4724ed6 SR |
5563 | L: [email protected] |
5564 | L: [email protected] | |
e2d1d6c0 RD |
5565 | W: http://www.ibm.com/developerworks/power/cell/ |
5566 | S: Supported | |
679655da JP |
5567 | F: Documentation/filesystems/spufs.txt |
5568 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 5569 | |
fc555841 | 5570 | SQUASHFS FILE SYSTEM |
8b58be88 | 5571 | M: Phillip Lougher <[email protected]> |
fc555841 PL |
5572 | L: [email protected] (subscribers-only) |
5573 | W: http://squashfs.org.uk | |
5574 | S: Maintained | |
679655da JP |
5575 | F: Documentation/filesystems/squashfs.txt |
5576 | F: fs/squashfs/ | |
fc555841 | 5577 | |
1da177e4 | 5578 | SRM (Alpha) environment access |
8b58be88 | 5579 | M: Jan-Benedict Glaw <[email protected]> |
1da177e4 | 5580 | S: Maintained |
679655da | 5581 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 5582 | |
26e9a397 | 5583 | STABLE BRANCH |
8b58be88 JP |
5584 | M: Greg Kroah-Hartman <[email protected]> |
5585 | M: Chris Wright <[email protected]> | |
e2d1d6c0 RD |
5586 | L: [email protected] |
5587 | S: Maintained | |
5588 | ||
26e9a397 | 5589 | STAGING SUBSYSTEM |
8b58be88 | 5590 | M: Greg Kroah-Hartman <[email protected]> |
dbc6c2cc | 5591 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
1c6ccf62 | 5592 | L: [email protected] |
dbc6c2cc | 5593 | S: Maintained |
679655da | 5594 | F: drivers/staging/ |
dbc6c2cc | 5595 | |
1da177e4 | 5596 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 5597 | M: Ion Badulescu <[email protected]> |
b4f90189 | 5598 | S: Odd Fixes |
679655da | 5599 | F: drivers/net/starfire* |
1da177e4 | 5600 | |
1da177e4 | 5601 | STRADIS MPEG-2 DECODER DRIVER |
8b58be88 | 5602 | M: Nathan Laredo <[email protected]> |
1da177e4 LT |
5603 | W: http://www.stradis.com/ |
5604 | S: Maintained | |
679655da | 5605 | F: drivers/media/video/stradis.c |
1da177e4 | 5606 | |
e2d1d6c0 | 5607 | SUN3/3X |
8b58be88 | 5608 | M: Sam Creasey <[email protected]> |
e2d1d6c0 RD |
5609 | W: http://sammy.net/sun3/ |
5610 | S: Maintained | |
679655da JP |
5611 | F: arch/m68k/kernel/*sun3* |
5612 | F: arch/m68k/sun3*/ | |
5613 | F: arch/m68k/include/asm/sun3* | |
e2d1d6c0 | 5614 | |
2cbb12a4 | 5615 | SUPERH |
8b58be88 | 5616 | M: Paul Mundt <[email protected]> |
2cbb12a4 | 5617 | L: [email protected] |
1da177e4 | 5618 | W: http://www.linux-sh.org |
8a6e2535 | 5619 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
54e5881d | 5620 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git |
5c806b20 | 5621 | S: Supported |
066069e1 | 5622 | F: Documentation/sh/ |
679655da | 5623 | F: arch/sh/ |
066069e1 | 5624 | F: drivers/sh/ |
1da177e4 | 5625 | |
4480f15b | 5626 | SUSPEND TO RAM |
8b58be88 JP |
5627 | M: Len Brown <[email protected]> |
5628 | M: Pavel Machek <[email protected]> | |
5629 | M: "Rafael J. Wysocki" <[email protected]> | |
e2d1d6c0 RD |
5630 | L: [email protected] |
5631 | S: Supported | |
679655da JP |
5632 | F: Documentation/power/ |
5633 | F: arch/x86/kernel/acpi/ | |
5634 | F: drivers/base/power/ | |
5635 | F: kernel/power/ | |
5636 | F: include/linux/suspend.h | |
5637 | F: include/linux/freezer.h | |
5638 | F: include/linux/pm.h | |
1da177e4 LT |
5639 | |
5640 | SVGA HANDLING | |
8b58be88 | 5641 | M: Martin Mares <[email protected]> |
1da177e4 LT |
5642 | L: [email protected] |
5643 | S: Maintained | |
679655da JP |
5644 | F: Documentation/svga.txt |
5645 | F: arch/x86/boot/video* | |
1da177e4 LT |
5646 | |
5647 | SYSV FILESYSTEM | |
8b58be88 | 5648 | M: Christoph Hellwig <[email protected]> |
1da177e4 | 5649 | S: Maintained |
679655da JP |
5650 | F: Documentation/filesystems/sysv-fs.txt |
5651 | F: fs/sysv/ | |
5652 | F: include/linux/sysv_fs.h | |
1da177e4 | 5653 | |
4e68852d | 5654 | TASKSTATS STATISTICS INTERFACE |
8b58be88 | 5655 | M: Balbir Singh <[email protected]> |
4e68852d | 5656 | S: Maintained |
679655da JP |
5657 | F: Documentation/accounting/taskstats* |
5658 | F: include/linux/taskstats* | |
5659 | F: kernel/taskstats.c | |
4e68852d | 5660 | |
781b456a | 5661 | TC CLASSIFIER |
8b58be88 | 5662 | M: Jamal Hadi Salim <[email protected]> |
781b456a SH |
5663 | L: [email protected] |
5664 | S: Maintained | |
679655da JP |
5665 | F: include/linux/pkt_cls.h |
5666 | F: include/net/pkt_cls.h | |
5667 | F: net/sched/ | |
781b456a | 5668 | |
5067f08a | 5669 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
5670 | M: "Wong Hoi Sing, Edison" <[email protected]> |
5671 | M: "Hung Hing Lun, Mike" <[email protected]> | |
5067f08a WHSE |
5672 | W: http://tcp-lp-mod.sourceforge.net/ |
5673 | S: Maintained | |
679655da | 5674 | F: net/ipv4/tcp_lp.c |
5067f08a | 5675 | |
84b9414b EG |
5676 | TEGRA SUPPORT |
5677 | M: Colin Cross <[email protected]> | |
5678 | M: Erik Gilling <[email protected]> | |
5679 | M: Olof Johansson <[email protected]> | |
5680 | L: [email protected] | |
5681 | T: git git://android.git.kernel.org/kernel/tegra.git | |
5682 | S: Supported | |
5683 | F: arch/arm/mach-tegra | |
5684 | ||
1a348ccc | 5685 | TEHUTI ETHERNET DRIVER |
8b58be88 JP |
5686 | M: Alexander Indenbaum <[email protected]> |
5687 | M: Andy Gospodarek <[email protected]> | |
1a348ccc AG |
5688 | L: [email protected] |
5689 | S: Supported | |
679655da | 5690 | F: drivers/net/tehuti* |
1a348ccc | 5691 | |
4e68852d | 5692 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 5693 | M: Mark Gross <[email protected]> |
4e68852d | 5694 | S: Supported |
679655da | 5695 | F: drivers/char/tlclk.c |
4e68852d | 5696 | |
4480f15b | 5697 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 5698 | M: Chris Zankel <[email protected]> |
4e68852d | 5699 | S: Maintained |
679655da | 5700 | F: arch/xtensa/ |
4e68852d AC |
5701 | |
5702 | THINKPAD ACPI EXTRAS DRIVER | |
8b58be88 | 5703 | M: Henrique de Moraes Holschuh <[email protected]> |
4e68852d | 5704 | L: [email protected] |
d0944853 | 5705 | L: [email protected] |
4e68852d AC |
5706 | W: http://ibm-acpi.sourceforge.net |
5707 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 5708 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 5709 | S: Maintained |
679655da | 5710 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 5711 | |
4020f2d7 | 5712 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 5713 | M: Alex Dubov <[email protected]> |
795fb7e7 | 5714 | S: Maintained |
679655da JP |
5715 | F: drivers/misc/tifm* |
5716 | F: drivers/mmc/host/tifm_sd.c | |
5717 | F: include/linux/tifm.h | |
4020f2d7 | 5718 | |
dd5e8e6b | 5719 | TI TWL4030 SERIES SOC CODEC DRIVER |
8b58be88 | 5720 | M: Peter Ujfalusi <[email protected]> |
dd5e8e6b PU |
5721 | L: [email protected] (moderated for non-subscribers) |
5722 | S: Maintained | |
5723 | F: sound/soc/codecs/twl4030* | |
5724 | ||
e86eaa3a | 5725 | TIPC NETWORK LAYER |
8b58be88 JP |
5726 | M: Jon Maloy <[email protected]> |
5727 | M: Allan Stephens <[email protected]> | |
e86eaa3a PL |
5728 | L: [email protected] |
5729 | W: http://tipc.sourceforge.net/ | |
5730 | W: http://tipc.cslab.ericsson.net/ | |
54e5881d | 5731 | T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git |
e86eaa3a | 5732 | S: Maintained |
679655da JP |
5733 | F: include/linux/tipc*.h |
5734 | F: include/net/tipc/ | |
5735 | F: net/tipc/ | |
e86eaa3a | 5736 | |
867e359b CM |
5737 | TILE ARCHITECTURE |
5738 | M: Chris Metcalf <[email protected]> | |
5739 | W: http://www.tilera.com/scm/ | |
5740 | S: Supported | |
5741 | F: arch/tile/ | |
5742 | ||
1da177e4 | 5743 | TLAN NETWORK DRIVER |
8b58be88 | 5744 | M: Samuel Chessman <[email protected]> |
88c07dde | 5745 | L: [email protected] (subscribers-only) |
1da177e4 LT |
5746 | W: http://sourceforge.net/projects/tlan/ |
5747 | S: Maintained | |
679655da JP |
5748 | F: Documentation/networking/tlan.txt |
5749 | F: drivers/net/tlan.* | |
1da177e4 | 5750 | |
d74db3b2 | 5751 | TOMOYO SECURITY MODULE |
8b58be88 JP |
5752 | M: Kentaro Takeda <[email protected]> |
5753 | M: Tetsuo Handa <[email protected]> | |
d74db3b2 KT |
5754 | L: [email protected] (subscribers-only, for developers and users in English) |
5755 | L: [email protected] (subscribers-only, for developers in Japanese) | |
5756 | L: [email protected] (subscribers-only, for users in Japanese) | |
5757 | W: http://tomoyo.sourceforge.jp/ | |
e6f6a4cc | 5758 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/ |
d74db3b2 | 5759 | S: Maintained |
679655da | 5760 | F: security/tomoyo/ |
d74db3b2 | 5761 | |
9caeb532 HRK |
5762 | TOPSTAR LAPTOP EXTRAS DRIVER |
5763 | M: Herton Ronaldo Krzesinski <[email protected]> | |
d0944853 | 5764 | L: [email protected] |
9caeb532 HRK |
5765 | S: Maintained |
5766 | F: drivers/platform/x86/topstar-laptop.c | |
5767 | ||
1da177e4 | 5768 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 5769 | L: [email protected] |
15065531 | 5770 | S: Orphan |
679655da | 5771 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
5772 | |
5773 | TOSHIBA SMM DRIVER | |
8b58be88 | 5774 | M: Jonathan Buzzard <[email protected]> |
1da177e4 LT |
5775 | L: [email protected] |
5776 | W: http://www.buzzard.org.uk/toshiba/ | |
5777 | S: Maintained | |
679655da JP |
5778 | F: drivers/char/toshiba.c |
5779 | F: include/linux/toshiba.h | |
1da177e4 | 5780 | |
d719f900 | 5781 | TMIO MMC DRIVER |
8b58be88 | 5782 | M: Ian Molton <[email protected]> |
d719f900 | 5783 | S: Maintained |
d5ca6918 | 5784 | F: drivers/mmc/host/tmio_mmc.* |
d719f900 | 5785 | |
98f32602 | 5786 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 5787 | M: Hugh Dickins <[email protected]> |
98f32602 HD |
5788 | L: [email protected] |
5789 | S: Maintained | |
5790 | F: include/linux/shmem_fs.h | |
5791 | F: mm/shmem.c | |
5792 | ||
4e68852d | 5793 | TPM DEVICE DRIVER |
8b58be88 JP |
5794 | M: Debora Velarde <[email protected]> |
5795 | M: Rajiv Andrade <[email protected]> | |
4e68852d | 5796 | W: http://tpmdd.sourceforge.net |
8b58be88 | 5797 | M: Marcel Selhorst <[email protected]> |
7dcce133 | 5798 | W: http://www.sirrix.com |
63a10dfd | 5799 | L: [email protected] (moderated for non-subscribers) |
4e68852d | 5800 | S: Maintained |
679655da | 5801 | F: drivers/char/tpm/ |
4e68852d | 5802 | |
d6f005a1 JP |
5803 | TRACING |
5804 | M: Steven Rostedt <[email protected]> | |
5805 | M: Frederic Weisbecker <[email protected]> | |
5806 | M: Ingo Molnar <[email protected]> | |
86a8c63f | 5807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core |
d6f005a1 JP |
5808 | S: Maintained |
5809 | F: Documentation/trace/ftrace.txt | |
5810 | F: arch/*/*/*/ftrace.h | |
5811 | F: arch/*/kernel/ftrace.c | |
5812 | F: include/*/ftrace.h | |
5813 | F: include/linux/trace*.h | |
5814 | F: include/trace/ | |
5815 | F: kernel/trace/ | |
5816 | ||
1da177e4 | 5817 | TRIVIAL PATCHES |
8b58be88 | 5818 | M: Jiri Kosina <[email protected]> |
54e5881d | 5819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 LT |
5820 | S: Maintained |
5821 | ||
4e68852d | 5822 | TTY LAYER |
57d7f282 GKH |
5823 | M: Greg Kroah-Hartman <[email protected]> |
5824 | S: Maintained | |
5825 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ | |
e3288775 AC |
5826 | F: drivers/char/tty_* |
5827 | F: drivers/serial/serial_core.c | |
5828 | F: include/linux/serial_core.h | |
5829 | F: include/linux/serial.h | |
5830 | F: include/linux/tty.h | |
4e68852d | 5831 | |
740db6d7 | 5832 | TULIP NETWORK DRIVERS |
8b58be88 JP |
5833 | M: Grant Grundler <[email protected]> |
5834 | M: Kyle McMartin <[email protected]> | |
740db6d7 GG |
5835 | L: [email protected] |
5836 | S: Maintained | |
679655da | 5837 | F: drivers/net/tulip/ |
1da177e4 LT |
5838 | |
5839 | TUN/TAP driver | |
8b58be88 | 5840 | M: Maxim Krasnyansky <[email protected]> |
1da177e4 LT |
5841 | L: [email protected] |
5842 | W: http://vtun.sourceforge.net/tun | |
5843 | S: Maintained | |
679655da JP |
5844 | F: Documentation/networking/tuntap.txt |
5845 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 5846 | |
b454cc66 | 5847 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 5848 | M: "Maciej W. Rozycki" <[email protected]> |
b454cc66 | 5849 | S: Maintained |
679655da JP |
5850 | F: drivers/tc/ |
5851 | F: include/linux/tc.h | |
b454cc66 | 5852 | |
1da177e4 | 5853 | U14-34F SCSI DRIVER |
8b58be88 | 5854 | M: Dario Ballabio <[email protected]> |
1da177e4 LT |
5855 | L: [email protected] |
5856 | S: Maintained | |
679655da | 5857 | F: drivers/scsi/u14-34f.c |
1da177e4 | 5858 | |
e2d1d6c0 | 5859 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 5860 | M: Artem Bityutskiy <[email protected]> |
8b58be88 | 5861 | M: Adrian Hunter <[email protected]> |
e2d1d6c0 | 5862 | L: [email protected] |
e2966cbe | 5863 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
5864 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
5865 | S: Maintained | |
679655da JP |
5866 | F: Documentation/filesystems/ubifs.txt |
5867 | F: fs/ubifs/ | |
e2d1d6c0 | 5868 | |
cc2020e6 | 5869 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 5870 | M: Greg Ungerer <[email protected]> |
cc2020e6 AC |
5871 | W: http://www.uclinux.org/ |
5872 | L: [email protected] (subscribers-only) | |
5873 | S: Maintained | |
679655da | 5874 | F: arch/m68knommu/ |
cc2020e6 | 5875 | |
14fadca7 | 5876 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 5877 | M: Yoshinori Sato <[email protected]> |
cc2020e6 AC |
5878 | W: http://uclinux-h8.sourceforge.jp/ |
5879 | S: Supported | |
a7e4fd93 JP |
5880 | F: arch/h8300/ |
5881 | F: drivers/ide/ide-h8300.c | |
5882 | F: drivers/net/ne-h8300.c | |
cc2020e6 | 5883 | |
1da177e4 | 5884 | UDF FILESYSTEM |
8b58be88 | 5885 | M: Jan Kara <[email protected]> |
1da177e4 LT |
5886 | W: http://linux-udf.sourceforge.net |
5887 | S: Maintained | |
679655da JP |
5888 | F: Documentation/filesystems/udf.txt |
5889 | F: fs/udf/ | |
1da177e4 | 5890 | |
cc2020e6 | 5891 | UFS FILESYSTEM |
8b58be88 | 5892 | M: Evgeniy Dushistov <[email protected]> |
cc2020e6 | 5893 | S: Maintained |
679655da JP |
5894 | F: Documentation/filesystems/ufs.txt |
5895 | F: fs/ufs/ | |
cc2020e6 | 5896 | |
18332a80 | 5897 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
8b58be88 | 5898 | M: David Vrabel <[email protected]> |
18332a80 DV |
5899 | L: [email protected] |
5900 | S: Supported | |
355ffe69 DV |
5901 | F: drivers/uwb/ |
5902 | X: drivers/uwb/wlp/ | |
5903 | X: drivers/uwb/i1480/i1480u-wlp/ | |
5904 | X: drivers/uwb/i1480/i1480-wlp.h | |
679655da JP |
5905 | F: include/linux/uwb.h |
5906 | F: include/linux/uwb/ | |
18332a80 | 5907 | |
d8379ab1 TF |
5908 | UNIFDEF |
5909 | M: Tony Finch <[email protected]> | |
5910 | W: http://dotat.at/prog/unifdef | |
5911 | S: Maintained | |
5912 | F: scripts/unifdef.c | |
5913 | ||
1da177e4 | 5914 | UNIFORM CDROM DRIVER |
8b58be88 | 5915 | M: Jens Axboe <[email protected]> |
1da177e4 LT |
5916 | W: http://www.kernel.dk |
5917 | S: Maintained | |
679655da JP |
5918 | F: Documentation/cdrom/ |
5919 | F: drivers/cdrom/cdrom.c | |
5920 | F: include/linux/cdrom.h | |
1da177e4 | 5921 | |
e2d1d6c0 | 5922 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 5923 | M: Artem Bityutskiy <[email protected]> |
e2d1d6c0 RD |
5924 | W: http://www.linux-mtd.infradead.org/ |
5925 | L: [email protected] | |
e2966cbe | 5926 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 5927 | S: Maintained |
80811493 | 5928 | F: drivers/mtd/ubi/ |
679655da JP |
5929 | F: include/linux/mtd/ubi.h |
5930 | F: include/mtd/ubi-user.h | |
e2d1d6c0 | 5931 | |
1da177e4 | 5932 | USB ACM DRIVER |
8b58be88 | 5933 | M: Oliver Neukum <[email protected]> |
6372594a | 5934 | L: [email protected] |
1da177e4 | 5935 | S: Maintained |
679655da JP |
5936 | F: Documentation/usb/acm.txt |
5937 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 LT |
5938 | |
5939 | USB BLOCK DRIVER (UB ub) | |
8b58be88 | 5940 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 5941 | L: [email protected] |
1da177e4 | 5942 | S: Supported |
679655da | 5943 | F: drivers/block/ub.c |
1da177e4 | 5944 | |
1da177e4 | 5945 | USB CDC ETHERNET DRIVER |
f0348d44 | 5946 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 5947 | L: [email protected] |
1da177e4 | 5948 | S: Maintained |
679655da JP |
5949 | F: drivers/net/usb/cdc_*.c |
5950 | F: include/linux/usb/cdc.h | |
1da177e4 | 5951 | |
b02b371e | 5952 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 5953 | M: Peter Korsgaard <[email protected]> |
b02b371e PK |
5954 | L: [email protected] |
5955 | S: Maintained | |
679655da | 5956 | F: drivers/usb/c67x00/ |
b02b371e | 5957 | |
d0374f4f | 5958 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 5959 | M: Peter Korsgaard <[email protected]> |
043600a6 | 5960 | L: [email protected] |
d0374f4f PK |
5961 | W: http://www.linux-usb.org/usbnet |
5962 | S: Maintained | |
679655da | 5963 | F: drivers/net/usb/dm9601.c |
d0374f4f | 5964 | |
cc2020e6 | 5965 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 5966 | M: Cesar Miquel <[email protected]> |
cc2020e6 AC |
5967 | L: [email protected] |
5968 | W: http://rio500.sourceforge.net | |
5969 | S: Maintained | |
679655da | 5970 | F: drivers/usb/misc/rio500* |
cc2020e6 | 5971 | |
1da177e4 | 5972 | USB EHCI DRIVER |
8b58be88 | 5973 | M: David Brownell <[email protected]> |
795fb7e7 | 5974 | L: [email protected] |
23d8c90e | 5975 | S: Odd Fixes |
679655da JP |
5976 | F: Documentation/usb/ehci.txt |
5977 | F: drivers/usb/host/ehci* | |
1da177e4 | 5978 | |
7ce08c93 | 5979 | USB ET61X[12]51 DRIVER |
8b58be88 | 5980 | M: Luca Risolia <[email protected]> |
795fb7e7 | 5981 | L: [email protected] |
661263b5 | 5982 | L: [email protected] |
54e5881d | 5983 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
7ce08c93 LR |
5984 | W: http://www.linux-projects.org |
5985 | S: Maintained | |
679655da | 5986 | F: drivers/media/video/et61x251/ |
7ce08c93 | 5987 | |
69ae9e3e | 5988 | USB GADGET/PERIPHERAL SUBSYSTEM |
8b58be88 | 5989 | M: David Brownell <[email protected]> |
795fb7e7 | 5990 | L: [email protected] |
69ae9e3e DB |
5991 | W: http://www.linux-usb.org/gadget |
5992 | S: Maintained | |
679655da JP |
5993 | F: drivers/usb/gadget/ |
5994 | F: include/linux/usb/gadget* | |
69ae9e3e | 5995 | |
2dea64b4 | 5996 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 5997 | M: Jiri Kosina <[email protected]> |
795fb7e7 | 5998 | L: [email protected] |
54e5881d | 5999 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 6000 | S: Maintained |
679655da JP |
6001 | F: Documentation/usb/hiddev.txt |
6002 | F: drivers/hid/usbhid/ | |
1da177e4 | 6003 | |
959eea21 | 6004 | USB ISP116X DRIVER |
8b58be88 | 6005 | M: Olav Kongas <[email protected]> |
795fb7e7 | 6006 | L: [email protected] |
959eea21 | 6007 | S: Maintained |
679655da JP |
6008 | F: drivers/usb/host/isp116x* |
6009 | F: include/linux/usb/isp116x.h | |
959eea21 | 6010 | |
1da177e4 | 6011 | USB KAWASAKI LSI DRIVER |
8b58be88 | 6012 | M: Oliver Neukum <[email protected]> |
795fb7e7 | 6013 | L: [email protected] |
1da177e4 | 6014 | S: Maintained |
679655da | 6015 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
6016 | |
6017 | USB MASS STORAGE DRIVER | |
8b58be88 | 6018 | M: Matthew Dharm <[email protected]> |
795fb7e7 | 6019 | L: [email protected] |
8836aeb8 | 6020 | L: [email protected] |
1da177e4 LT |
6021 | S: Maintained |
6022 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 6023 | F: drivers/usb/storage/ |
1da177e4 LT |
6024 | |
6025 | USB OHCI DRIVER | |
8b58be88 | 6026 | M: David Brownell <[email protected]> |
795fb7e7 | 6027 | L: [email protected] |
23d8c90e | 6028 | S: Odd Fixes |
679655da JP |
6029 | F: Documentation/usb/ohci.txt |
6030 | F: drivers/usb/host/ohci* | |
1da177e4 | 6031 | |
ba460e48 | 6032 | USB OPTION-CARD DRIVER |
8b58be88 | 6033 | M: Matthias Urlichs <[email protected]> |
795fb7e7 | 6034 | L: [email protected] |
ba460e48 | 6035 | S: Maintained |
679655da | 6036 | F: drivers/usb/serial/option.c |
ba460e48 | 6037 | |
1da177e4 | 6038 | USB OV511 DRIVER |
8b58be88 | 6039 | M: Mark McClelland <[email protected]> |
795fb7e7 | 6040 | L: [email protected] |
1da177e4 LT |
6041 | W: http://alpha.dyndns.org/ov511/ |
6042 | S: Maintained | |
679655da | 6043 | F: drivers/media/video/ov511.* |
1da177e4 LT |
6044 | |
6045 | USB PEGASUS DRIVER | |
8b58be88 | 6046 | M: Petko Manolov <[email protected]> |
795fb7e7 | 6047 | L: [email protected] |
043600a6 | 6048 | L: [email protected] |
1da177e4 LT |
6049 | W: http://pegasus2.sourceforge.net/ |
6050 | S: Maintained | |
679655da | 6051 | F: drivers/net/usb/pegasus.* |
1da177e4 | 6052 | |
73e4fb3f | 6053 | USB PRINTER DRIVER (usblp) |
8b58be88 | 6054 | M: Pete Zaitcev <[email protected]> |
795fb7e7 | 6055 | L: [email protected] |
73e4fb3f | 6056 | S: Supported |
679655da | 6057 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
6058 | |
6059 | USB RTL8150 DRIVER | |
8b58be88 | 6060 | M: Petko Manolov <[email protected]> |
795fb7e7 | 6061 | L: [email protected] |
043600a6 | 6062 | L: [email protected] |
1da177e4 LT |
6063 | W: http://pegasus2.sourceforge.net/ |
6064 | S: Maintained | |
679655da | 6065 | F: drivers/net/usb/rtl8150.c |
1da177e4 LT |
6066 | |
6067 | USB SE401 DRIVER | |
8b58be88 | 6068 | M: Jeroen Vreeken <[email protected]> |
795fb7e7 | 6069 | L: [email protected] |
1da177e4 LT |
6070 | W: http://www.chello.nl/~j.vreeken/se401/ |
6071 | S: Maintained | |
679655da JP |
6072 | F: Documentation/video4linux/se401.txt |
6073 | F: drivers/media/video/se401.* | |
1da177e4 | 6074 | |
4e68852d | 6075 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 6076 | M: William Greathouse <[email protected]> |
795fb7e7 | 6077 | L: [email protected] |
4e68852d | 6078 | S: Maintained |
679655da | 6079 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
6080 | |
6081 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 6082 | M: Lonnie Mendez <[email protected]> |
795fb7e7 | 6083 | L: [email protected] |
4e68852d AC |
6084 | S: Maintained |
6085 | W: http://geocities.com/i0xox0i | |
6086 | W: http://firstlight.net/cvs | |
679655da | 6087 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 6088 | |
1da177e4 | 6089 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 6090 | M: Matthias Bruestle and Harald Welte <[email protected]> |
1da177e4 LT |
6091 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
6092 | S: Maintained | |
679655da | 6093 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
6094 | |
6095 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
6096 | M: Peter Berger <[email protected]> |
6097 | M: Al Borchers <[email protected]> | |
795fb7e7 | 6098 | L: [email protected] |
1da177e4 | 6099 | S: Maintained |
679655da | 6100 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
6101 | |
6102 | USB SERIAL DRIVER | |
8b58be88 | 6103 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 6104 | L: [email protected] |
1da177e4 | 6105 | S: Supported |
679655da JP |
6106 | F: Documentation/usb/usb-serial.txt |
6107 | F: drivers/usb/serial/generic.c | |
6108 | F: drivers/usb/serial/usb-serial.c | |
6109 | F: include/linux/usb/serial.h | |
1da177e4 | 6110 | |
1da177e4 | 6111 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 6112 | M: Gary Brubaker <[email protected]> |
795fb7e7 | 6113 | L: [email protected] |
1da177e4 | 6114 | S: Maintained |
679655da | 6115 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
6116 | |
6117 | USB SERIAL KEYSPAN DRIVER | |
8b58be88 | 6118 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 6119 | L: [email protected] |
1da177e4 LT |
6120 | W: http://www.kroah.com/linux/ |
6121 | S: Maintained | |
679655da | 6122 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
6123 | |
6124 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 6125 | M: Support Department <[email protected]> |
795fb7e7 | 6126 | L: [email protected] |
1da177e4 LT |
6127 | W: http://www.connecttech.com |
6128 | S: Supported | |
679655da | 6129 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 6130 | |
2f7ca802 | 6131 | USB SMSC95XX ETHERNET DRIVER |
8b58be88 | 6132 | M: Steve Glendinning <[email protected]> |
2f7ca802 SG |
6133 | L: [email protected] |
6134 | S: Supported | |
679655da | 6135 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 6136 | |
f423b9a8 | 6137 | USB SN9C1xx DRIVER |
8b58be88 | 6138 | M: Luca Risolia <[email protected]> |
795fb7e7 | 6139 | L: [email protected] |
661263b5 | 6140 | L: [email protected] |
54e5881d | 6141 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
1da177e4 LT |
6142 | W: http://www.linux-projects.org |
6143 | S: Maintained | |
679655da JP |
6144 | F: Documentation/video4linux/sn9c102.txt |
6145 | F: drivers/media/video/sn9c102/ | |
1da177e4 LT |
6146 | |
6147 | USB SUBSYSTEM | |
8b58be88 | 6148 | M: Greg Kroah-Hartman <[email protected]> |
795fb7e7 | 6149 | L: [email protected] |
1da177e4 | 6150 | W: http://www.linux-usb.org |
6fb0425b | 6151 | T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/ |
1da177e4 | 6152 | S: Supported |
679655da JP |
6153 | F: Documentation/usb/ |
6154 | F: drivers/net/usb/ | |
6155 | F: drivers/usb/ | |
6156 | F: include/linux/usb.h | |
6157 | F: include/linux/usb/ | |
1da177e4 LT |
6158 | |
6159 | USB UHCI DRIVER | |
8b58be88 | 6160 | M: Alan Stern <[email protected]> |
795fb7e7 | 6161 | L: [email protected] |
1da177e4 | 6162 | S: Maintained |
679655da | 6163 | F: drivers/usb/host/uhci* |
1da177e4 | 6164 | |
69ae9e3e | 6165 | USB "USBNET" DRIVER FRAMEWORK |
8b58be88 | 6166 | M: David Brownell <[email protected]> |
043600a6 | 6167 | L: [email protected] |
69ae9e3e | 6168 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 6169 | S: Maintained |
679655da JP |
6170 | F: drivers/net/usb/usbnet.c |
6171 | F: include/linux/usb/usbnet.h | |
1da177e4 | 6172 | |
c0efd232 | 6173 | USB VIDEO CLASS |
c53ac071 | 6174 | M: Laurent Pinchart <[email protected]> |
a67534a7 | 6175 | L: [email protected] (subscribers-only) |
661263b5 | 6176 | L: [email protected] |
54e5881d | 6177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
57c6d2e9 | 6178 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 6179 | S: Maintained |
679655da | 6180 | F: drivers/media/video/uvc/ |
c0efd232 | 6181 | |
1da177e4 | 6182 | USB W996[87]CF DRIVER |
8b58be88 | 6183 | M: Luca Risolia <[email protected]> |
795fb7e7 | 6184 | L: [email protected] |
661263b5 | 6185 | L: [email protected] |
54e5881d | 6186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
1da177e4 LT |
6187 | W: http://www.linux-projects.org |
6188 | S: Maintained | |
679655da JP |
6189 | F: Documentation/video4linux/w9968cf.txt |
6190 | F: drivers/media/video/w996* | |
1da177e4 | 6191 | |
bf164cc0 | 6192 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
8b58be88 | 6193 | M: Jussi Kivilinna <[email protected]> |
bf164cc0 JK |
6194 | L: [email protected] |
6195 | S: Maintained | |
679655da | 6196 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 6197 | |
eb6bab13 | 6198 | USB XHCI DRIVER |
36d0344c | 6199 | M: Sarah Sharp <[email protected]> |
eb6bab13 SS |
6200 | L: [email protected] |
6201 | S: Supported | |
36d0344c SS |
6202 | F: drivers/usb/host/xhci* |
6203 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 6204 | |
60f78052 | 6205 | USB ZC0301 DRIVER |
8b58be88 | 6206 | M: Luca Risolia <[email protected]> |
795fb7e7 | 6207 | L: [email protected] |
661263b5 | 6208 | L: [email protected] |
54e5881d | 6209 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
60f78052 LR |
6210 | W: http://www.linux-projects.org |
6211 | S: Maintained | |
679655da JP |
6212 | F: Documentation/video4linux/zc0301.txt |
6213 | F: drivers/media/video/zc0301/ | |
60f78052 | 6214 | |
1da177e4 | 6215 | USB ZD1201 DRIVER |
4086b9ca | 6216 | L: [email protected] |
1da177e4 | 6217 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 6218 | S: Orphan |
679655da | 6219 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 6220 | |
b7eee616 | 6221 | USB ZR364XX DRIVER |
8b58be88 | 6222 | M: Antoine Jacquet <[email protected]> |
795fb7e7 | 6223 | L: [email protected] |
661263b5 | 6224 | L: [email protected] |
54e5881d | 6225 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git |
b7eee616 AJ |
6226 | W: http://royale.zerezo.com/zr364xx/ |
6227 | S: Maintained | |
679655da JP |
6228 | F: Documentation/video4linux/zr364xx.txt |
6229 | F: drivers/media/video/zr364xx.c | |
b7eee616 | 6230 | |
e7839f25 | 6231 | USER-MODE LINUX (UML) |
8b58be88 | 6232 | M: Jeff Dike <[email protected]> |
1da177e4 LT |
6233 | L: [email protected] |
6234 | L: [email protected] | |
6235 | W: http://user-mode-linux.sourceforge.net | |
6236 | S: Maintained | |
679655da JP |
6237 | F: Documentation/uml/ |
6238 | F: arch/um/ | |
6239 | F: fs/hostfs/ | |
6240 | F: fs/hppfs/ | |
b7eee616 | 6241 | |
e5f114e9 | 6242 | USERSPACE I/O (UIO) |
8b58be88 JP |
6243 | M: "Hans J. Koch" <[email protected]> |
6244 | M: Greg Kroah-Hartman <[email protected]> | |
e5f114e9 | 6245 | S: Maintained |
679655da JP |
6246 | F: Documentation/DocBook/uio-howto.tmpl |
6247 | F: drivers/uio/ | |
6248 | F: include/linux/uio*.h | |
e5f114e9 | 6249 | |
f899b0ad | 6250 | UTIL-LINUX-NG PACKAGE |
8b58be88 | 6251 | M: Karel Zak <[email protected]> |
f899b0ad KZ |
6252 | L: [email protected] |
6253 | W: http://kernel.org/~kzak/util-linux-ng/ | |
54e5881d | 6254 | T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git |
f899b0ad KZ |
6255 | S: Maintained |
6256 | ||
c1fd1c07 | 6257 | UVESAFB DRIVER |
8b58be88 | 6258 | M: Michal Januszewski <[email protected]> |
c69f677c | 6259 | L: [email protected] |
c1fd1c07 MJ |
6260 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
6261 | S: Maintained | |
679655da JP |
6262 | F: Documentation/fb/uvesafb.txt |
6263 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 6264 | |
4480f15b | 6265 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 6266 | M: OGAWA Hirofumi <[email protected]> |
1da177e4 | 6267 | S: Maintained |
679655da JP |
6268 | F: Documentation/filesystems/vfat.txt |
6269 | F: fs/fat/ | |
1da177e4 | 6270 | |
9a82446b AS |
6271 | VIRTIO CONSOLE DRIVER |
6272 | M: Amit Shah <[email protected]> | |
6273 | L: [email protected] | |
6274 | S: Maintained | |
6275 | F: drivers/char/virtio_console.c | |
6276 | F: include/linux/virtio_console.h | |
6277 | ||
3a4d5c94 MT |
6278 | VIRTIO HOST (VHOST) |
6279 | M: "Michael S. Tsirkin" <[email protected]> | |
6280 | L: [email protected] | |
6281 | L: [email protected] | |
6282 | L: [email protected] | |
6283 | S: Maintained | |
6284 | F: drivers/vhost/ | |
6285 | F: include/linux/vhost.h | |
6286 | ||
1da177e4 | 6287 | VIA RHINE NETWORK DRIVER |
8b58be88 | 6288 | M: Roger Luethi <[email protected]> |
1da177e4 | 6289 | S: Maintained |
679655da | 6290 | F: drivers/net/via-rhine.c |
1da177e4 | 6291 | |
32c0a520 | 6292 | VIAPRO SMBUS DRIVER |
8b58be88 | 6293 | M: Jean Delvare <[email protected]> |
846557d3 | 6294 | L: [email protected] |
32c0a520 | 6295 | S: Maintained |
679655da JP |
6296 | F: Documentation/i2c/busses/i2c-viapro |
6297 | F: drivers/i2c/busses/i2c-viapro.c | |
32c0a520 | 6298 | |
f0bf7f61 | 6299 | VIA SD/MMC CARD CONTROLLER DRIVER |
8b58be88 JP |
6300 | M: Joseph Chan <[email protected]> |
6301 | M: Harald Welte <[email protected]> | |
f0bf7f61 HW |
6302 | S: Maintained |
6303 | F: drivers/mmc/host/via-sdmmc.c | |
6304 | ||
69e4a7c2 | 6305 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
8b58be88 | 6306 | M: Joseph Chan <[email protected]> |
c7babebd | 6307 | M: Florian Tobias Schandinat <[email protected]> |
c69f677c | 6308 | L: [email protected] |
69e4a7c2 | 6309 | S: Maintained |
c7babebd FTS |
6310 | F: include/linux/via-core.h |
6311 | F: include/linux/via-gpio.h | |
6312 | F: include/linux/via_i2c.h | |
679655da | 6313 | F: drivers/video/via/ |
69e4a7c2 | 6314 | |
01f20734 | 6315 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 6316 | M: Francois Romieu <[email protected]> |
01f20734 FR |
6317 | L: [email protected] |
6318 | S: Maintained | |
679655da | 6319 | F: drivers/net/via-velocity.* |
1da177e4 | 6320 | |
be7f8273 | 6321 | VLAN (802.1Q) |
8b58be88 | 6322 | M: Patrick McHardy <[email protected]> |
be7f8273 PM |
6323 | L: [email protected] |
6324 | S: Maintained | |
679655da JP |
6325 | F: drivers/net/macvlan.c |
6326 | F: include/linux/if_*vlan.h | |
6327 | F: net/8021q/ | |
be7f8273 | 6328 | |
55e331cf | 6329 | VLYNQ BUS |
8b58be88 | 6330 | M: Florian Fainelli <[email protected]> |
55e331cf FF |
6331 | L: [email protected] |
6332 | S: Maintained | |
6333 | F: drivers/vlynq/vlynq.c | |
6334 | F: include/linux/vlynq.h | |
6335 | ||
d1a890fa | 6336 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
6337 | M: Shreyas Bhatewara <[email protected]> |
6338 | M: "VMware, Inc." <[email protected]> | |
6339 | L: [email protected] | |
6340 | S: Maintained | |
6341 | F: drivers/net/vmxnet3/ | |
d1a890fa | 6342 | |
851b1642 AK |
6343 | VMware PVSCSI driver |
6344 | M: Alok Kataria <[email protected]> | |
6345 | M: VMware PV-Drivers <[email protected]> | |
6346 | L: [email protected] | |
6347 | S: Maintained | |
6348 | F: drivers/scsi/vmw_pvscsi.c | |
6349 | F: drivers/scsi/vmw_pvscsi.h | |
6350 | ||
e53e86c7 | 6351 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
8b58be88 JP |
6352 | M: Liam Girdwood <[email protected]> |
6353 | M: Mark Brown <[email protected]> | |
e53e86c7 | 6354 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 6355 | W: http://www.slimlogic.co.uk/?p=48 |
54e5881d | 6356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git |
e53e86c7 | 6357 | S: Supported |
679655da JP |
6358 | F: drivers/regulator/ |
6359 | F: include/linux/regulator/ | |
e53e86c7 | 6360 | |
ab41319e | 6361 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 6362 | M: Juerg Haefliger <[email protected]> |
ab41319e JH |
6363 | L: [email protected] |
6364 | S: Maintained | |
679655da JP |
6365 | F: Documentation/hwmon/vt1211 |
6366 | F: drivers/hwmon/vt1211.c | |
ab41319e | 6367 | |
1de9e371 | 6368 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 6369 | M: Roger Lucas <[email protected]> |
1de9e371 RL |
6370 | L: [email protected] |
6371 | S: Maintained | |
679655da | 6372 | F: drivers/hwmon/vt8231.c |
1de9e371 | 6373 | |
1da177e4 | 6374 | W1 DALLAS'S 1-WIRE BUS |
8b58be88 | 6375 | M: Evgeniy Polyakov <[email protected]> |
1da177e4 | 6376 | S: Maintained |
679655da JP |
6377 | F: Documentation/w1/ |
6378 | F: drivers/w1/ | |
1da177e4 | 6379 | |
13927079 | 6380 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 6381 | M: Marc Hulsman <[email protected]> |
13927079 | 6382 | L: [email protected] |
25845c22 | 6383 | S: Maintained |
679655da JP |
6384 | F: Documentation/hwmon/w83791d |
6385 | F: drivers/hwmon/w83791d.c | |
13927079 | 6386 | |
61db011d | 6387 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 6388 | M: Rudolf Marek <[email protected]> |
61db011d RM |
6389 | L: [email protected] |
6390 | S: Maintained | |
679655da JP |
6391 | F: Documentation/hwmon/w83793 |
6392 | F: drivers/hwmon/w83793.c | |
61db011d | 6393 | |
1da177e4 | 6394 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 6395 | M: Pierre Ossman <[email protected]> |
1da177e4 | 6396 | S: Maintained |
679655da | 6397 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 6398 | |
3527761c | 6399 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 6400 | M: Wim Van Sebroeck <[email protected]> |
230a5cef WVS |
6401 | L: [email protected] |
6402 | W: http://www.linux-watchdog.org/ | |
54e5881d | 6403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git |
3527761c | 6404 | S: Maintained |
679655da JP |
6405 | F: Documentation/watchdog/ |
6406 | F: drivers/watchdog/ | |
6407 | F: include/linux/watchdog.h | |
3527761c | 6408 | |
1da177e4 | 6409 | WD7000 SCSI DRIVER |
8b58be88 | 6410 | M: Miroslav Zagorac <[email protected]> |
1da177e4 LT |
6411 | L: [email protected] |
6412 | S: Maintained | |
679655da | 6413 | F: drivers/scsi/wd7000.c |
1da177e4 | 6414 | |
e258b80e | 6415 | WINBOND CIR DRIVER |
364e9e18 | 6416 | M: David Härdeman <[email protected]> |
e258b80e DH |
6417 | S: Maintained |
6418 | F: drivers/input/misc/winbond-cir.c | |
6419 | ||
8a70da82 | 6420 | WIMAX STACK |
8b58be88 | 6421 | M: Inaky Perez-Gonzalez <[email protected]> |
8a70da82 IPG |
6422 | M: [email protected] |
6423 | L: [email protected] | |
6424 | S: Supported | |
6425 | W: http://linuxwimax.org | |
315987dc JP |
6426 | F: Documentation/wimax/README.wimax |
6427 | F: include/linux/wimax.h | |
6428 | F: include/linux/wimax/debug.h | |
6429 | F: include/net/wimax.h | |
6430 | F: net/wimax/ | |
8a70da82 | 6431 | |
18332a80 | 6432 | WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM |
8b58be88 | 6433 | M: David Vrabel <[email protected]> |
355ffe69 | 6434 | L: [email protected] |
18332a80 | 6435 | S: Maintained |
679655da JP |
6436 | F: include/linux/wlp.h |
6437 | F: drivers/uwb/wlp/ | |
355ffe69 DV |
6438 | F: drivers/uwb/i1480/i1480u-wlp/ |
6439 | F: drivers/uwb/i1480/i1480-wlp.h | |
18332a80 | 6440 | |
5fc14680 | 6441 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 6442 | M: Miloslav Trmac <[email protected]> |
5fc14680 | 6443 | S: Maintained |
679655da | 6444 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 6445 | |
834da346 | 6446 | WL1251 WIRELESS DRIVER |
54f2d736 | 6447 | M: Kalle Valo <[email protected]> |
834da346 KV |
6448 | L: [email protected] |
6449 | W: http://wireless.kernel.org | |
6450 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git | |
6451 | S: Maintained | |
5e68ff65 LC |
6452 | F: drivers/net/wireless/wl12xx/* |
6453 | X: drivers/net/wireless/wl12xx/wl1271* | |
6454 | ||
6455 | WL1271 WIRELESS DRIVER | |
6456 | M: Luciano Coelho <[email protected]> | |
6457 | L: [email protected] | |
6458 | W: http://wireless.kernel.org | |
6459 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git | |
6460 | S: Maintained | |
6461 | F: drivers/net/wireless/wl12xx/wl1271* | |
834da346 | 6462 | |
1da177e4 | 6463 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 6464 | M: Arnaldo Carvalho de Melo <[email protected]> |
724c6b35 | 6465 | L: [email protected] |
926554c4 | 6466 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 6467 | S: Maintained |
679655da | 6468 | F: drivers/net/wireless/wl3501* |
1da177e4 | 6469 | |
febf1dff | 6470 | WM97XX TOUCHSCREEN DRIVERS |
8b58be88 JP |
6471 | M: Mark Brown <[email protected]> |
6472 | M: Liam Girdwood <[email protected]> | |
febf1dff MB |
6473 | L: [email protected] |
6474 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
6475 | W: http://opensource.wolfsonmicro.com/node/7 | |
6476 | S: Supported | |
679655da JP |
6477 | F: drivers/input/touchscreen/*wm97* |
6478 | F: include/linux/wm97xx.h | |
febf1dff | 6479 | |
055bcbcb | 6480 | WOLFSON MICROELECTRONICS DRIVERS |
27480ccc | 6481 | M: Mark Brown <[email protected]> |
a532f97c | 6482 | M: Ian Lartey <[email protected]> |
645a6599 | 6483 | M: Dimitris Papastamos <[email protected]> |
cf8eda3e | 6484 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 6485 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 6486 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 6487 | S: Supported |
3768f0b1 | 6488 | F: Documentation/hwmon/wm83?? |
b75ea16a MB |
6489 | F: drivers/leds/leds-wm83*.c |
6490 | F: drivers/mfd/wm8*.c | |
6491 | F: drivers/power/wm83*.c | |
6492 | F: drivers/rtc/rtc-wm83*.c | |
6493 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 6494 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 6495 | F: drivers/watchdog/wm83*_wdt.c |
3860e6c4 | 6496 | F: include/linux/mfd/wm831x/ |
b75ea16a | 6497 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 6498 | F: include/linux/mfd/wm8400* |
055bcbcb MB |
6499 | F: include/sound/wm????.h |
6500 | F: sound/soc/codecs/wm* | |
b75ea16a | 6501 | |
1da177e4 | 6502 | X.25 NETWORK LAYER |
8bf28059 | 6503 | M: Andrew Hendry <[email protected]> |
1da177e4 | 6504 | L: [email protected] |
8bf28059 | 6505 | S: Odd Fixes |
679655da JP |
6506 | F: Documentation/networking/x25* |
6507 | F: include/net/x25* | |
6508 | F: net/x25/ | |
1da177e4 | 6509 | |
e2d1d6c0 | 6510 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
6511 | M: Thomas Gleixner <[email protected]> |
6512 | M: Ingo Molnar <[email protected]> | |
6513 | M: "H. Peter Anvin" <[email protected]> | |
bcde563c | 6514 | M: [email protected] |
54e5881d | 6515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git |
e2d1d6c0 | 6516 | S: Maintained |
679655da JP |
6517 | F: Documentation/x86/ |
6518 | F: arch/x86/ | |
e2d1d6c0 | 6519 | |
d0944853 MG |
6520 | X86 PLATFORM DRIVERS |
6521 | M: Matthew Garrett <[email protected]> | |
6522 | L: [email protected] | |
28b8e8d4 | 6523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
6524 | S: Maintained |
6525 | F: drivers/platform/x86 | |
6526 | ||
4cdf6bc2 | 6527 | XEN HYPERVISOR INTERFACE |
8b58be88 JP |
6528 | M: Jeremy Fitzhardinge <[email protected]> |
6529 | M: Chris Wright <[email protected]> | |
4cdf6bc2 JF |
6530 | L: [email protected] |
6531 | L: [email protected] | |
6532 | S: Supported | |
679655da JP |
6533 | F: arch/x86/xen/ |
6534 | F: drivers/*/xen-*front.c | |
6535 | F: drivers/xen/ | |
6536 | F: arch/x86/include/asm/xen/ | |
6537 | F: include/xen/ | |
4cdf6bc2 | 6538 | |
1da177e4 LT |
6539 | XFS FILESYSTEM |
6540 | P: Silicon Graphics Inc | |
f08a59f1 | 6541 | M: Alex Elder <[email protected]> |
1da177e4 | 6542 | M: [email protected] |
d7ede1aa | 6543 | L: [email protected] |
1da177e4 | 6544 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 6545 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 6546 | S: Supported |
679655da JP |
6547 | F: Documentation/filesystems/xfs.txt |
6548 | F: fs/xfs/ | |
1da177e4 | 6549 | |
c9d3d8ec | 6550 | XILINX SYSTEMACE DRIVER |
8b58be88 | 6551 | M: Grant Likely <[email protected]> |
c9d3d8ec | 6552 | W: http://www.secretlab.ca/ |
c9d3d8ec | 6553 | S: Maintained |
679655da | 6554 | F: drivers/block/xsysace.c |
c9d3d8ec | 6555 | |
238b8721 | 6556 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 6557 | M: Peter Korsgaard <[email protected]> |
238b8721 PK |
6558 | L: [email protected] |
6559 | S: Maintained | |
679655da | 6560 | F: drivers/serial/uartlite.c |
238b8721 | 6561 | |
1da177e4 | 6562 | YAM DRIVER FOR AX.25 |
8b58be88 | 6563 | M: Jean-Paul Roubelat <[email protected]> |
1da177e4 LT |
6564 | L: [email protected] |
6565 | S: Maintained | |
679655da JP |
6566 | F: drivers/net/hamradio/yam* |
6567 | F: include/linux/yam.h | |
1da177e4 | 6568 | |
af64a5eb | 6569 | YEALINK PHONE DRIVER |
8b58be88 | 6570 | M: Henk Vergonet <[email protected]> |
af64a5eb HV |
6571 | L: [email protected] |
6572 | S: Maintained | |
679655da JP |
6573 | F: Documentation/input/yealink.txt |
6574 | F: drivers/input/misc/yealink.* | |
af64a5eb | 6575 | |
1da177e4 | 6576 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 6577 | M: Joerg Reuter <[email protected]> |
1da177e4 LT |
6578 | W: http://yaina.de/jreuter/ |
6579 | W: http://www.qsl.net/dl1bke/ | |
6580 | L: [email protected] | |
6581 | S: Maintained | |
679655da JP |
6582 | F: Documentation/networking/z8530drv.txt |
6583 | F: drivers/net/hamradio/*scc.c | |
6584 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 6585 | |
7c0c3afb | 6586 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
6587 | M: Daniel Drake <[email protected]> |
6588 | M: Ulrich Kunitz <[email protected]> | |
7c0c3afb | 6589 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 6590 | L: [email protected] |
7c0c3afb DD |
6591 | L: [email protected] (subscribers-only) |
6592 | S: Maintained | |
679655da | 6593 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 6594 | |
1da177e4 | 6595 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 6596 | L: [email protected] |
f63145e2 | 6597 | L: [email protected] |
1da177e4 | 6598 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
6599 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
6600 | S: Odd Fixes | |
679655da | 6601 | F: drivers/media/video/zoran/ |
1da177e4 | 6602 | |
8b4a4080 | 6603 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 6604 | M: "Maciej W. Rozycki" <[email protected]> |
8b4a4080 | 6605 | S: Maintained |
679655da | 6606 | F: drivers/serial/zs.* |
8b4a4080 | 6607 | |
1da177e4 | 6608 | THE REST |
8b58be88 | 6609 | M: Linus Torvalds <[email protected]> |
34d03cc1 | 6610 | L: [email protected] |
8a6e2535 | 6611 | Q: http://patchwork.kernel.org/project/LKML/list/ |
cfe81f76 | 6612 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git |
1da177e4 | 6613 | S: Buried alive in reporters |
34d03cc1 JP |
6614 | F: * |
6615 | F: */ |