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