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