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