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