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