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