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