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