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