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