blob: 08f01bba9b7e6251ebe3652dba1697fed6ac73d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. 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
193. 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
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. 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
33 generalized kernel feature ready for next time. See
34 Documentation/CodingStyle for guidance here.
35
36 PLEASE try to include any credit lines you want added with the
37 patch. It avoids people being missed off by mistake and makes
38 it easier to know who wants adding and who doesn't.
39
40 PLEASE document known bugs. If it doesn't work for everything
41 or does something very odd once a month document it.
42
Alan Coxc9ee1332006-05-20 15:00:12 -070043 PLEASE remember that submissions must be made under the terms
44 of the OSDL certificate of contribution
45 (http://www.osdl.org/newsroom/press_releases/2004/2004_05_24_dco.html)
46 and should include a Signed-off-by: line.
47
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486. Make sure you have the right to send any changes you make. If you
49 do changes at work you may find your employer owns the patch
50 not you.
51
Alan Coxc9ee1332006-05-20 15:00:12 -0700527. When sending security related changes or reports to a maintainer
53 please Cc: security@kernel.org, especially if the maintainer
54 does not respond.
55
568. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Antoine Jacquetb7eee612007-04-27 12:30:59 -030058 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60Maintainers List (try to look for most precise areas first)
61
62Note: For the hard of thinking, this list is meant to remain in alphabetical
63order. If you could add yourselves to it in alphabetical order that would be
64so much easier [Ed]
65
66P: Person
67M: Mail patches to
68L: Mailing list that is relevant to this area
69W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080070T: SCM tree type and location. Type is one of: git, hg, quilt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070071S: Status, one of the following:
72
73 Supported: Someone is actually paid to look after this.
74 Maintained: Someone actually looks after it.
75 Odd Fixes: It has a maintainer but they don't have time to do
76 much other than throw the odd patch in. See below..
77 Orphan: No current maintainer [but maybe you could take the
78 role as you write your new code].
79 Obsolete: Old code. Something tagged obsolete generally means
80 it has been replaced by a better system and you
81 should be using that.
82
833C359 NETWORK DRIVER
84P: Mike Phillips
85M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -070086L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070087L: linux-tr@linuxtr.net
88W: http://www.linuxtr.net
89S: Maintained
90
913C505 NETWORK DRIVER
92P: Philip Blundell
93M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -070094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070095S: Maintained
96
973CR990 NETWORK DRIVER
98P: David Dillow
99M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700100L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101S: Maintained
102
1033W-XXXX ATA-RAID CONTROLLER DRIVER
104P: Adam Radford
105M: linuxraid@amcc.com
106L: linux-scsi@vger.kernel.org
107W: http://www.amcc.com
108S: Supported
109
1103W-9XXX SATA-RAID CONTROLLER DRIVER
111P: Adam Radford
112M: linuxraid@amcc.com
113L: linux-scsi@vger.kernel.org
114W: http://www.amcc.com
115S: Supported
116
11753C700 AND 53C700-66 SCSI DRIVER
118P: James E.J. Bottomley
119M: James.Bottomley@HansenPartnership.com
120L: linux-scsi@vger.kernel.org
121S: Maintained
122
1236PACK NETWORK DRIVER FOR AX.25
124P: Andreas Koensgen
125M: ajk@iehk.rwth-aachen.de
126L: linux-hams@vger.kernel.org
127S: Maintained
128
1298139CP 10/100 FAST ETHERNET DRIVER
130P: Jeff Garzik
131M: jgarzik@pobox.com
132S: Maintained
133
1348139TOO 10/100 FAST ETHERNET DRIVER
135P: Jeff Garzik
136M: jgarzik@pobox.com
137W: http://sourceforge.net/projects/gkernel/
138S: Maintained
139
1408169 10/100/1000 GIGABIT ETHERNET DRIVER
141P: Francois Romieu
142M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700143L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144S: Maintained
145
1468250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147L: linux-serial@vger.kernel.org
148W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100149S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1518390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
152P: Paul Gortmaker
153M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155S: Maintained
156
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001579P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100158P: Eric Van Hensbergen
159M: ericvh@gmail.com
160P: Ron Minnich
161M: rminnich@lanl.gov
162P: Latchesar Ionkov
163M: lucho@ionkov.net
164L: v9fs-developer@lists.sourceforge.net
165W: http://v9fs.sf.net
166T: git kernel.org:/pub/scm/linux/kernel/ericvh/v9fs.git
167S: Maintained
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169A2232 SERIAL BOARD DRIVER
170P: Enver Haase
171M: ehaase@inf.fu-berlin.de
172M: A2232@gmx.net
173L: linux-m68k@lists.linux-m68k.org
174S: Maintained
175
176AIO
177P: Benjamin LaHaise
178M: bcrl@kvack.org
179L: linux-aio@kvack.org
180S: Supported
181
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200182ABIT UGURU HARDWARE MONITOR DRIVER
183P: Hans de Goede
184M: j.w.r.degoede@hhs.nl
185L: lm-sensors@lm-sensors.org
186S: Maintained
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188ACENIC DRIVER
189P: Jes Sorensen
190M: jes@trained-monkey.org
191L: linux-acenic@sunsite.dk
192S: Maintained
193
194ACI MIXER DRIVER
195P: Robert Siemer
196M: Robert.Siemer@gmx.de
197L: linux-sound@vger.kernel.org
198W: http://www.stud.uni-karlsruhe.de/~uh1b/
199S: Maintained
200
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700201IPS SCSI RAID DRIVER
202P: Adaptec OEM Raid Solutions
203M: aacraid@adaptec.com
204L: linux-scsi@vger.kernel.org
205W: http://www.adaptec.com/
206S: Maintained
207
208DPT_I2O SCSI RAID DRIVER
209P: Adaptec OEM Raid Solutions
210M: aacraid@adaptec.com
211L: linux-scsi@vger.kernel.org
212W: http://www.adaptec.com/
213S: Maintained
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215AACRAID SCSI RAID DRIVER
216P: Adaptec OEM Raid Solutions
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700217M: aacraid@adaptec.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218L: linux-scsi@vger.kernel.org
Salyzyn, Marke6d1fc32007-03-29 01:20:24 -0700219W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220S: Supported
221
222ACPI
223P: Len Brown
224M: len.brown@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500225M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500226L: linux-acpi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227W: http://acpi.sourceforge.net/
Jody McIntyre6fb04252005-11-18 09:31:06 -0800228T: git kernel.org:/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500229S: Supported
230
231ACPI BATTERY DRIVERS
232P: Vladimir P. Lebedev
233M: vladimir.p.lebedev@intel.com
234L: linux-acpi@vger.kernel.org
235W: http://acpi.sourceforge.net/
236S: Supported
237
238ACPI EC DRIVER
239P: Alexey Starikovskiy
240M: alexey.y.starikovskiy@linux.intel.com
241L: linux-acpi@vger.kernel.org
242W: http://acpi.sourceforge.net/
243S: Supported
244
245ACPI FAN DRIVER
246P: Konstantin A. Karasyov
247M: konstantin.a.karasyov@intel.com
248L: linux-acpi@vger.kernel.org
249W: http://acpi.sourceforge.net/
250S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700252ACPI PCI HOTPLUG DRIVER
253P: Kristen Carlson Accardi
254M: kristen.c.accardi@intel.com
255L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
257
258ACPI THERMAL DRIVER
259P: Konstantin A. Karasyov
260M: konstantin.a.karasyov@intel.com
261L: linux-acpi@vger.kernel.org
262W: http://acpi.sourceforge.net/
263S: Supported
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700264
Len Brown359acec2007-02-10 01:59:24 -0500265ACPI VIDEO DRIVER
266P: Luming Yu
267M: luming.yu@intel.com
268L: linux-acpi@vger.kernel.org
269W: http://acpi.sourceforge.net/
270S: Supported
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272AD1816 SOUND DRIVER
273P: Thorsten Knabe
274M: Thorsten Knabe <linux@thorsten-knabe.de>
275W: http://linux.thorsten-knabe.de
276S: Maintained
277
Kyle McMartin6958ae32005-10-21 23:11:27 -0400278AD1889 SOUND DRIVER
279P: Kyle McMartin
280M: kyle@parisc-linux.org
281P: Thibaut Varene
282M: T-Bone@parisc-linux.org
283W: http://wiki.parisc-linux.org/AD1889
284L: parisc-linux@lists.parisc-linux.org
285S: Maintained
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287ADM1025 HARDWARE MONITOR DRIVER
288P: Jean Delvare
289M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200290L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291S: Maintained
292
Corentin Labbecae2caa2007-02-14 21:15:04 +0100293ADM1029 HARDWARE MONITOR DRIVER
294P: Corentin Labbe
295M: corentin.labbe@geomatys.fr
296L: lm-sensors@lm-sensors.org
297S: Maintained
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299ADT746X FAN DRIVER
300P: Colin Leroy
301M: colin@colino.net
302S: Maintained
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304AEDSP16 DRIVER
305P: Riccardo Facchetti
306M: fizban@tin.it
307S: Maintained
308
309AFFS FILE SYSTEM
310P: Roman Zippel
311M: zippel@linux-m68k.org
312S: Maintained
313
314AGPGART DRIVER
315P: Dave Jones
316M: davej@codemonkey.org.uk
317W: http://www.codemonkey.org.uk/projects/agp/
Josh Boyer1adc1232005-11-23 15:44:15 -0800318T: git kernel.org:/pub/scm/linux/kernel/git/davej/agpgart.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319S: Maintained
320
321AHA152X SCSI DRIVER
322P: Juergen E. Fischer
323M: Juergen Fischer <fischer@norbit.de>
324L: linux-scsi@vger.kernel.org
325S: Maintained
326
327ALCATEL SPEEDTOUCH USB DRIVER
328P: Duncan Sands
329M: duncan.sands@free.fr
330L: linux-usb-users@lists.sourceforge.net
331L: linux-usb-devel@lists.sourceforge.net
332W: http://www.linux-usb.org/SpeedTouch/
333S: Maintained
334
Pierre Ossman272f1332007-05-14 21:25:26 +0200335ALCHEMY AU1XX0 MMC DRIVER
336S: Orphan
337
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000338ALI1563 I2C DRIVER
339P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100340M: r.marek@assembler.cz
Jean Delvare5d925fe2006-07-01 17:14:32 +0200341L: i2c@lm-sensors.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000342S: Maintained
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344ALPHA PORT
345P: Richard Henderson
346M: rth@twiddle.net
347S: Odd Fixes for 2.4; Maintained for 2.6.
348P: Ivan Kokshaysky
349M: ink@jurassic.park.msu.ru
350S: Maintained for 2.4; PCI support for 2.6.
351
Jordan Crousef90b8112006-01-06 00:12:14 -0800352AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100353P: Jordan Crouse
354M: info-linux@geode.amd.com
Jordan Crousef90b8112006-01-06 00:12:14 -0800355L: info-linux@geode.amd.com
356W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
357S: Supported
358
Stelian Pop284f42b2006-12-12 18:18:31 +0100359AMS (Apple Motion Sensor) DRIVER
360P: Stelian Pop
361M: stelian@popies.net
362P: Michael Hanselmann
363M: linux-kernel@hansmi.ch
364S: Supported
365
Tom Tuckerf94b5332006-09-22 15:22:48 -0700366AMSO1100 RNIC DRIVER
367P: Tom Tucker
368M: tom@opengridcomputing.com
369P: Steve Wise
370M: swise@opengridcomputing.com
371L: openib-general@openib.org
372S: Maintained
373
Johannes Berg42269062006-07-25 16:15:50 +0200374AOA (Apple Onboard Audio) ALSA DRIVER
375P: Johannes Berg
376M: johannes@sipsolutions.net
377L: linuxppc-dev@ozlabs.org
Takashi Iwai82622042007-04-16 12:32:52 +0200378L: alsa-devel@alsa-project.org (subscribers-only)
Johannes Berg42269062006-07-25 16:15:50 +0200379S: Maintained
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381APM DRIVER
382P: Stephen Rothwell
383M: sfr@canb.auug.org.au
384L: linux-laptop@vger.kernel.org
385W: http://www.canb.auug.org.au/~sfr/
386S: Supported
387
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700388APPLE SMC DRIVER
389P: Nicolas Boichat
390M: nicolas@boichat.ch
391L: mactel-linux-devel@lists.sourceforge.net
392S: Maintained
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394APPLETALK NETWORK LAYER
395P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300396M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397S: Maintained
398
Jaya Kumar1154ea72005-06-21 17:17:04 -0700399ARC FRAMEBUFFER DRIVER
400P: Jaya Kumar
401M: jayalk@intworks.biz
402S: Maintained
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404ARM26 ARCHITECTURE
405P: Ian Molton
406M: spyro@f2s.com
407S: Maintained
408
409ARM26/ARCHIMEDES
410P: Ian Molton
411M: spyro@f2s.com
412S: Maintained
413
414ARM26/A5000
415P: John Appleby
416M: john@dnsworld.co.uk
417S: Maintained
418
419ARM MFM AND FLOPPY DRIVERS
420P: Ian Molton
421M: spyro@f2s.com
422S: Maintained
423
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800424ARM/ADI ROADRUNNER MACHINE SUPPORT
425P: Lennert Buytenhek
426M: kernel@wantstofly.org
427L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
428S: Maintained
429
430ARM/ADS SPHERE MACHINE SUPPORT
431P: Lennert Buytenhek
432M: kernel@wantstofly.org
433L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
434S: Maintained
435
436ARM/AJECO 1ARM MACHINE SUPPORT
437P: Lennert Buytenhek
438M: kernel@wantstofly.org
439L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
440S: Maintained
441
Andrew Victord4a89c72006-12-04 13:56:21 +0100442ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
443P: Andrew Victor
444M: andrew@sanpeople.com
445L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
446W: http://maxim.org.za/at91_26.html
447S: Maintained
448
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800449ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
450P: Lennert Buytenhek
451M: kernel@wantstofly.org
452L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
453S: Maintained
454
455ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
456P: Lennert Buytenhek
457M: kernel@wantstofly.org
458L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
459S: Maintained
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461ARM/CORGI MACHINE SUPPORT
462P: Richard Purdie
463M: rpurdie@rpsys.net
464S: Maintained
465
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800466ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
467P: Lennert Buytenhek
468M: kernel@wantstofly.org
469L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
470S: Maintained
471
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100472ARM/HP JORNADA 7XX MACHINE SUPPORT
473P: Kristoffer Ericson
474M: kristoffer_e1@hotmail.com
475W: www.jlime.com
476S: Maintained
477
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800478ARM/INTEL IOP32X ARM ARCHITECTURE
479P: Lennert Buytenhek
480M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100481P: Dan Williams
482M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800483L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100484S: Supported
485
486ARM/INTEL IOP33X ARM ARCHITECTURE
487P: Dan Williams
488M: dan.j.williams@intel.com
489L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
490S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800491
492ARM/INTEL IOP13XX ARM ARCHITECTURE
493P: Lennert Buytenhek
494M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100495P: Dan Williams
496M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800497L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100498S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800499
500ARM/INTEL IQ81342EX MACHINE SUPPORT
501P: Lennert Buytenhek
502M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100503P: Dan Williams
504M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800505L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100506S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800507
508ARM/INTEL IXP2000 ARM ARCHITECTURE
509P: Lennert Buytenhek
510M: kernel@wantstofly.org
511L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
512S: Maintained
513
514ARM/INTEL IXDP2850 MACHINE SUPPORT
515P: Lennert Buytenhek
516M: kernel@wantstofly.org
517L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
518S: Maintained
519
520ARM/INTEL IXP23XX ARM ARCHITECTURE
521P: Lennert Buytenhek
522M: kernel@wantstofly.org
523L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
524S: Maintained
525
526ARM/INTEL XSC3 (MANZANO) ARM CORE
527P: Lennert Buytenhek
528M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100529P: Dan Williams
530M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800531L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100532S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800533
534ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
535P: Lennert Buytenhek
536M: kernel@wantstofly.org
537L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
538S: Maintained
539
540ARM/LOGICPD PXA270 MACHINE SUPPORT
541P: Lennert Buytenhek
542M: kernel@wantstofly.org
543L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
544S: Maintained
545
Dirk Opfer8459c152005-11-06 14:27:52 +0000546ARM/TOSA MACHINE SUPPORT
547P: Dirk Opfer
548M: dirk@opfer-online.de
549S: Maintained
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551ARM/PLEB SUPPORT
552P: Peter Chubb
553M: pleb@gelato.unsw.edu.au
554W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
555S: Maintained
556
557ARM/PT DIGITAL BOARD PORT
558P: Stefan Eletzhofer
559M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700560L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561W: http://www.arm.linux.org.uk/
562S: Maintained
563
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800564ARM/RADISYS ENP2611 MACHINE SUPPORT
565P: Lennert Buytenhek
566M: kernel@wantstofly.org
567L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
568S: Maintained
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570ARM/SHARK MACHINE SUPPORT
571P: Alexander Schulz
572M: alex@shark-linux.de
573W: http://www.shark-linux.de/shark.html
574S: Maintained
575
576ARM/STRONGARM110 PORT
577P: Russell King
578M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700579L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580W: http://www.arm.linux.org.uk/
581S: Maintained
582
583ARM/S3C2410 ARM ARCHITECTURE
584P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800585M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700586L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587W: http://www.fluff.org/ben/linux/
588S: Maintained
589
590ARM/S3C2440 ARM ARCHITECTURE
591P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800592M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700593L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594W: http://www.fluff.org/ben/linux/
595S: Maintained
596
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800597ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
598P: Lennert Buytenhek
599M: kernel@wantstofly.org
600L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
601S: Maintained
602
603ARM/THECUS N2100 MACHINE SUPPORT
604P: Lennert Buytenhek
605M: kernel@wantstofly.org
606L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
607S: Maintained
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609ARPD SUPPORT
610P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700611L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612S: Maintained
613
614ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500615P: Corentin Chary
616M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617P: Karol Kozimor
618M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619L: acpi4asus-user@lists.sourceforge.net
620W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500621W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622S: Maintained
623
Corentin Chary85091b72007-01-26 14:04:30 +0100624ASUS LAPTOP EXTRAS DRIVER
625P: Corentin Chary
626M: corentincj@iksaif.net
627L: acpi4asus-user@lists.sourceforge.net
628W: http://sourceforge.net/projects/acpi4asus
629W: http://xf.iksaif.net/acpi4asus
630S: Maintained
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632ATA OVER ETHERNET DRIVER
633P: Ed L. Cashin
634M: ecashin@coraid.com
635W: http://www.coraid.com/support/linux
636S: Supported
637
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600638ATL1 ETHERNET DRIVER
639P: Jay Cliburn
640M: jcliburn@gmail.com
641P: Chris Snook
642M: csnook@redhat.com
643L: atl1-devel@lists.sourceforge.net
644W: http://sourceforge.net/projects/atl1
645W: http://atl1.sourceforge.net
646S: Maintained
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648ATM
649P: Chas Williams
650M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700651L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652W: http://linux-atm.sourceforge.net
653S: Maintained
654
Pierre Ossman272f1332007-05-14 21:25:26 +0200655ATMEL AT91 MCI DRIVER
656S: Orphan
657
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100658ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100659P: Haavard Skinnemoen
660M: hskinnemoen@atmel.com
661S: Supported
662
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800663ATMEL SPI DRIVER
664P: Haavard Skinnemoen
665M: hskinnemoen@atmel.com
666S: Supported
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668ATMEL WIRELESS DRIVER
669P: Simon Kelley
670M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700671L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672W: http://www.thekelleys.org.uk/atmel
673W: http://atmelwlandriver.sourceforge.net/
674S: Maintained
675
Chris Wrighta92b7b82005-07-07 18:12:23 -0700676AUDIT SUBSYSTEM
David Woodhousead3f9a22005-07-13 15:28:29 +0100677P: David Woodhouse
678M: dwmw2@infradead.org
679L: linux-audit@redhat.com
680W: http://people.redhat.com/sgrubb/audit/
Josh Boyer1adc1232005-11-23 15:44:15 -0800681T: git kernel.org:/pub/scm/linux/kernel/git/dwmw2/audit-2.6.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700682S: Maintained
683
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800684AUXILIARY DISPLAY DRIVERS
685P: Miguel Ojeda Sandonis
686M: maxextreme@gmail.com
687L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700688W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800689S: Maintained
690
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700691AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700692P: Haavard Skinnemoen
693M: hskinnemoen@atmel.com
694W: http://www.atmel.com/products/AVR32/
695W: http://avr32linux.org/
696W: http://avrfreaks.net/
697S: Supported
698
699AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -0700700P: Haavard Skinnemoen
701M: hskinnemoen@atmel.com
702S: Supported
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704AX.25 NETWORK LAYER
705P: Ralf Baechle
706M: ralf@linux-mips.org
707L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +0200708W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709S: Maintained
710
Richard Purdie300abeb2007-02-07 22:21:07 +0000711BACKLIGHT CLASS/SUBSYSTEM
712P: Richard Purdie
713M: rpurdie@rpsys.net
714S: Maintained
715
Bryan Wu1394f032007-05-06 14:50:22 -0700716BLACKFIN ARCHITECTURE
717P: Aubrey Li
718M: aubrey.li@analog.com
719P: Bernd Schmidt
720M: bernd.schmidt@analog.com
721P: Bryan Wu
722M: bryan.wu@analog.com
723P: Grace Pan
724M: grace.pan@analog.com
725P: Michael Hennerich
726M: michael.hennerich@analog.com
727P: Mike Frysinger
728M: michael.frysinger@analog.com
729P: Jane Lv
730M: jane.lv@analog.com
731P: Jerry Zeng
732M: jerry.zeng@analog.com
733P: Jie Zhang
734M: jie.zhang@analog.com
735P: Robin Getz
736M: robin.getz@analog.com
737P: Roy Huang
738M: roy.huang@analog.com
739P: Sonic Zhang
740M: sonic.zhang@analog.com
741P: Yi Li
742M: yi.li@analog.com
743L: uclinux-dist-devel@blackfin.uclinux.org
744W: http://blackfin.uclinux.org
745S: Supported
746
747BLACKFIN SERIAL DRIVER
748P: Aubrey Li
749M: aubrey.li@analog.com
750L: uclinux-dist-devel@blackfin.uclinux.org
751W: http://blackfin.uclinux.org
752S: Supported
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754BAYCOM/HDLCDRV DRIVERS FOR AX.25
755P: Thomas Sailer
756M: t.sailer@alumni.ethz.ch
757L: linux-hams@vger.kernel.org
758W: http://www.baycom.org/~tom/ham/ham.html
759S: Maintained
760
Michael Bueschfb67a0f2006-08-16 00:39:36 +0200761BCM43XX WIRELESS DRIVER (SOFTMAC BASED VERSION)
762P: Larry Finger
763M: Larry.Finger@lwfinger.net
Michael Buesch9eac8f92006-04-22 17:31:27 +0200764P: Stefano Brivio
765M: st3@riseup.net
Johannes Berg724c6b32007-04-23 12:18:20 -0700766L: linux-wireless@vger.kernel.org
Michael Buesch9eac8f92006-04-22 17:31:27 +0200767W: http://bcm43xx.berlios.de/
768S: Maintained
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770BEFS FILE SYSTEM
771P: Sergey S. Kostyliov
772M: rathamahata@php4.ru
773L: linux-kernel@vger.kernel.org
774S: Maintained
775
776BERKSHIRE PRODUCTS PC WATCHDOG DRIVER
777P: Kenji Hollis
778W: http://ftp.bitgate.com/pcwd/
779S: Maintained
780
781BFS FILE SYSTEM
782P: Tigran A. Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -0800783M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784L: linux-kernel@vger.kernel.org
785S: Maintained
786
Bryan Wud24ecfc2007-05-01 23:26:32 +0200787BLACKFIN I2C TWI DRIVER
788P: Sonic Zhang
789M: sonic.zhang@analog.com
790L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
791W: http://blackfin.uclinux.org/
792S: Supported
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794BLOCK LAYER
795P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +0200796M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -0800798T: git kernel.org:/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799S: Maintained
800
801BLUETOOTH SUBSYSTEM
802P: Marcel Holtmann
803M: marcel@holtmann.org
804P: Maxim Krasnyansky
805M: maxk@qualcomm.com
806L: bluez-devel@lists.sf.net
807W: http://bluez.sf.net
808W: http://www.bluez.org
809W: http://www.holtmann.org/linux/bluetooth/
Josh Boyer1adc1232005-11-23 15:44:15 -0800810T: git kernel.org:/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811S: Maintained
812
813BLUETOOTH RFCOMM LAYER
814P: Marcel Holtmann
815M: marcel@holtmann.org
816P: Maxim Krasnyansky
817M: maxk@qualcomm.com
818S: Maintained
819
820BLUETOOTH BNEP LAYER
821P: Marcel Holtmann
822M: marcel@holtmann.org
823P: Maxim Krasnyansky
824M: maxk@qualcomm.com
825S: Maintained
826
827BLUETOOTH CMTP LAYER
828P: Marcel Holtmann
829M: marcel@holtmann.org
830S: Maintained
831
832BLUETOOTH HIDP LAYER
833P: Marcel Holtmann
834M: marcel@holtmann.org
835S: Maintained
836
837BLUETOOTH HCI UART DRIVER
838P: Marcel Holtmann
839M: marcel@holtmann.org
840P: Maxim Krasnyansky
841M: maxk@qualcomm.com
842S: Maintained
843
844BLUETOOTH HCI USB DRIVER
845P: Marcel Holtmann
846M: marcel@holtmann.org
847P: Maxim Krasnyansky
848M: maxk@qualcomm.com
849S: Maintained
850
851BLUETOOTH HCI BCM203X DRIVER
852P: Marcel Holtmann
853M: marcel@holtmann.org
854S: Maintained
855
856BLUETOOTH HCI BPA10X DRIVER
857P: Marcel Holtmann
858M: marcel@holtmann.org
859S: Maintained
860
861BLUETOOTH HCI BFUSB DRIVER
862P: Marcel Holtmann
863M: marcel@holtmann.org
864S: Maintained
865
866BLUETOOTH HCI DTL1 DRIVER
867P: Marcel Holtmann
868M: marcel@holtmann.org
869S: Maintained
870
871BLUETOOTH HCI BLUECARD DRIVER
872P: Marcel Holtmann
873M: marcel@holtmann.org
874S: Maintained
875
876BLUETOOTH HCI BT3C DRIVER
877P: Marcel Holtmann
878M: marcel@holtmann.org
879S: Maintained
880
881BLUETOOTH HCI BTUART DRIVER
882P: Marcel Holtmann
883M: marcel@holtmann.org
884S: Maintained
885
886BLUETOOTH HCI VHCI DRIVER
887P: Maxim Krasnyansky
888M: maxk@qualcomm.com
889S: Maintained
890
891BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +0100892P: Chad Tindel
893M: ctindel@users.sourceforge.net
894P: Jay Vosburgh
895M: fubar@us.ibm.com
896L: bonding-devel@lists.sourceforge.net
897W: http://sourceforge.net/projects/bonding/
898S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000900BROADBAND PROCESSOR ARCHITECTURE
901P: Arnd Bergmann
902M: arnd@arndb.de
Stephen Rothwell1d049812006-03-22 11:26:58 +1100903L: linuxppc-dev@ozlabs.org
Arthur Othieno6d923f92006-05-19 06:22:23 -0400904W: http://www.penguinppc.org/ppc64/
Arnd Bergmannfef1c772005-06-23 09:43:37 +1000905S: Supported
906
Gary Zambrano39105892006-06-22 17:26:20 -0700907BROADCOM B44 10/100 ETHERNET DRIVER
908P: Gary Zambrano
909M: zambrano@broadcom.com
910L: netdev@vger.kernel.org
911S: Supported
912
Michael Chan948c51e2006-06-04 02:51:39 -0700913BROADCOM BNX2 GIGABIT ETHERNET DRIVER
914P: Michael Chan
915M: mchan@broadcom.com
916L: netdev@vger.kernel.org
917S: Supported
918
919BROADCOM TG3 GIGABIT ETHERNET DRIVER
920P: Michael Chan
921M: mchan@broadcom.com
922L: netdev@vger.kernel.org
923S: Supported
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700926P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -0200927M: mchehab@infradead.org
928M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700930W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -0200931T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -0700932S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Jonathan Corbet77d51402007-03-22 19:44:17 -0300934CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
935P: Jonathan Corbet
936M: corbet@lwn.net
937L: video4linux-list@redhat.com
938S: Maintained
939
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200940CALGARY x86-64 IOMMU
941P: Muli Ben-Yehuda
942M: muli@il.ibm.com
943P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +0200944M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +0200945L: linux-kernel@vger.kernel.org
946L: discuss@x86-64.org
947S: Maintained
948
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800949CFAG12864B LCD DRIVER
950P: Miguel Ojeda Sandonis
951M: maxextreme@gmail.com
952L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700953W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800954S: Maintained
955
956CFAG12864BFB LCD FRAMEBUFFER DRIVER
957P: Miguel Ojeda Sandonis
958M: maxextreme@gmail.com
959L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -0700960W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800961S: Maintained
962
Johannes Berg704232c2007-04-23 12:20:05 -0700963CFG80211 and NL80211
964P: Johannes Berg
965M: johannes@sipsolutions.net
966L: linux-wireless@vger.kernel.org
967S: Maintained
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969COMMON INTERNET FILE SYSTEM (CIFS)
970P: Steve French
971M: sfrench@samba.org
Jesper Juhlfb453d42006-01-15 02:46:48 +0100972L: linux-cifs-client@lists.samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973L: samba-technical@lists.samba.org
974W: http://us1.samba.org/samba/Linux_CIFS_client.html
Josh Boyer1adc1232005-11-23 15:44:15 -0800975T: git kernel.org:/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -0300976S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Joel Becker7063fbf2005-12-15 14:29:43 -0800978CONFIGFS
979P: Joel Becker
Joel Becker62ca3d262006-01-27 11:04:12 -0800980M: joel.becker@oracle.com
981L: linux-kernel@vger.kernel.org
Joel Becker7063fbf2005-12-15 14:29:43 -0800982S: Supported
983
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800984CIRRUS LOGIC EP93XX ETHERNET DRIVER
985P: Lennert Buytenhek
986M: kernel@wantstofly.org
987L: netdev@vger.kernel.org
988S: Maintained
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990CIRRUS LOGIC GENERIC FBDEV DRIVER
991P: Jeff Garzik
992M: jgarzik@pobox.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -0800993L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994S: Odd Fixes
995
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800996CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
997P: Lennert Buytenhek
998M: kernel@wantstofly.org
999L: linux-usb-devel@lists.sourceforge.net
1000S: Maintained
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1003P: Cirrus Logic Corporation (kernel 2.2 driver)
1004M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1005P: Nils Faerber (port to kernel 2.4)
1006M: Nils Faerber <nils@kernelconcepts.de>
1007S: Maintained
1008
1009CODA FILE SYSTEM
1010P: Jan Harkes
1011M: jaharkes@cs.cmu.edu
1012M: coda@cs.cmu.edu
1013L: codalist@coda.cs.cmu.edu
1014W: http://www.coda.cs.cmu.edu/
1015S: Maintained
1016
1017COMPACTPCI HOTPLUG CORE
1018P: Scott Murray
1019M: scottm@somanetworks.com
1020M: scott@spiteful.org
1021L: pcihpd-discuss@lists.sourceforge.net
1022S: Supported
1023
1024COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1025P: Scott Murray
1026M: scottm@somanetworks.com
1027M: scott@spiteful.org
1028L: pcihpd-discuss@lists.sourceforge.net
1029S: Supported
1030
1031COMPACTPCI HOTPLUG GENERIC DRIVER
1032P: Scott Murray
1033M: scottm@somanetworks.com
1034M: scott@spiteful.org
1035L: pcihpd-discuss@lists.sourceforge.net
1036S: Supported
1037
1038COMPUTONE INTELLIPORT MULTIPORT CARD
1039P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001040M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001042S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Simon Arlott949be0f2007-03-06 02:47:46 -08001044CONEXANT ACCESSRUNNER USB DRIVER
1045P: Simon Arlott
1046M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001047L: accessrunner-general@lists.sourceforge.net
1048W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001049S: Maintained
1050
Rudolf Marekbebe4672007-05-08 17:22:02 +02001051CORETEMP HARDWARE MONITORING DRIVER
1052P: Rudolf Marek
1053M: r.marek@assembler.cz
1054L: lm-sensors@lm-sensors.org
1055S: Maintained
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057COSA/SRP SYNC SERIAL DRIVER
1058P: Jan "Yenya" Kasprzak
1059M: kas@fi.muni.cz
1060W: http://www.fi.muni.cz/~kas/cosa/
1061S: Maintained
1062
1063CPU FREQUENCY DRIVERS
1064P: Dave Jones
1065M: davej@codemonkey.org.uk
1066L: cpufreq@lists.linux.org.uk
1067W: http://www.codemonkey.org.uk/projects/cpufreq/
Dave Jones7531a0b2006-12-12 17:26:35 -05001068T: git kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069S: Maintained
1070
1071CPUID/MSR DRIVER
1072P: H. Peter Anvin
1073M: hpa@zytor.com
1074S: Maintained
1075
Paul Jacksoned90fb42005-09-27 21:45:37 -07001076CPUSETS
1077P: Paul Jackson
1078P: Simon Derr
1079M: pj@sgi.com
1080M: simon.derr@bull.net
1081L: linux-kernel@vger.kernel.org
1082W: http://www.bullopensource.org/cpuset/
1083S: Supported
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001086W: http://sourceforge.net/projects/cramfs/
1087S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089CRIS PORT
1090P: Mikael Starvik
1091M: starvik@axis.com
1092L: dev-etrax@axis.com
1093W: http://developer.axis.com
1094S: Maintained
1095
1096CRYPTO API
1097P: Herbert Xu
1098M: herbert@gondor.apana.org.au
1099P: David S. Miller
1100M: davem@davemloft.net
1101L: linux-crypto@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08001102T: git kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103S: Maintained
1104
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001105CS5535 Audio ALSA driver
1106P: Jaya Kumar
1107M: jayakumar.alsa@gmail.com
1108S: Maintained
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110CYBERPRO FB DRIVER
1111P: Russell King
1112M: rmk@arm.linux.org.uk
1113W: http://www.arm.linux.org.uk/
1114S: Maintained
1115
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001116CYBLAFB FRAMEBUFFER DRIVER
1117P: Knut Petersen
1118M: Knut_Petersen@t-online.de
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001119L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001120S: Maintained
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122CYCLADES 2X SYNC CARD DRIVER
1123P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001124M: acme@ghostprotocols.net
1125W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126S: Maintained
1127
1128CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001130S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001134S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136DAMA SLAVE for AX.25
1137P: Joerg Reuter
1138M: jreuter@yaina.de
1139W: http://yaina.de/jreuter/
1140W: http://www.qsl.net/dl1bke/
1141L: linux-hams@vger.kernel.org
1142S: Maintained
1143
1144DC395x SCSI driver
1145P: Oliver Neukum
1146M: oliver@neukum.name
1147P: Ali Akcaagac
1148M: aliakc@web.de
1149P: Jamie Lenehan
1150M: lenehan@twibble.org
1151W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001152L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153L: http://lists.twibble.org/mailman/listinfo/dc395x/
1154S: Maintained
1155
1156DC390/AM53C974 SCSI driver
1157P: Kurt Garloff
1158M: garloff@suse.de
1159W: http://www.garloff.de/kurt/linux/dc390/
1160P: Guennadi Liakhovetski
1161M: g.liakhovetski@gmx.de
1162S: Maintained
1163
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001164DCCP PROTOCOL
1165P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001166M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001167L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001168W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001169S: Maintained
1170
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171DECnet NETWORK LAYER
1172P: Patrick Caulfield
1173M: patrick@tykepenguin.com
1174W: http://linux-decnet.sourceforge.net
1175L: linux-decnet-user@lists.sourceforge.net
1176S: Maintained
1177
1178DEFXX FDDI NETWORK DRIVER
1179P: Maciej W. Rozycki
1180M: macro@linux-mips.org
1181S: Maintained
1182
1183DELL LAPTOP SMM DRIVER
1184P: Massimo Dal Zotto
1185M: dz@debian.org
1186W: http://www.debian.org/~dz/i8k/
1187S: Maintained
1188
Doug Warzecha90563ec2005-09-06 15:17:15 -07001189DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1190P: Doug Warzecha
1191M: Douglas_Warzecha@dell.com
1192S: Maintained
1193
Pavel Machek5ddb88c2006-09-29 02:01:29 -07001194DEVICE-MAPPER (LVM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195P: Alasdair Kergon
1196L: dm-devel@redhat.com
1197W: http://sources.redhat.com/dm
1198S: Maintained
1199
1200DEVICE NUMBER REGISTRY
1201P: Torben Mathiasen
1202M: device@lanana.org
1203W: http://lanana.org/docs/device-list/index.html
1204L: linux-kernel@vger.kernel.org
1205S: Maintained
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207DIGI INTL. EPCA DRIVER
1208P: Digi International, Inc
1209M: Eng.Linux@digi.com
1210L: Eng.Linux@digi.com
1211W: http://www.digi.com
1212S: Orphaned
1213
1214DIGI RIGHTSWITCH NETWORK DRIVER
1215P: Rick Richardson
Ralf Baechle979b6c12005-06-13 14:30:40 -07001216L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217W: http://www.digi.com
1218S: Orphaned
1219
1220DIRECTORY NOTIFICATION
1221P: Stephen Rothwell
1222M: sfr@canb.auug.org.au
1223L: linux-kernel@vger.kernel.org
1224S: Supported
1225
1226DISK GEOMETRY AND PARTITION HANDLING
1227P: Andries Brouwer
1228M: aeb@cwi.nl
1229W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1230W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1231W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1232S: Maintained
1233
1234DISKQUOTA:
1235P: Jan Kara
1236M: jack@suse.cz
1237L: linux-kernel@vger.kernel.org
1238S: Maintained
1239
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001240DISTRIBUTED LOCK MANAGER
1241P: Patrick Caulfield
1242M: pcaulfie@redhat.com
1243P: David Teigland
1244M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001245L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001246W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001247T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1248T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001249S: Supported
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1252P: Tobias Ringstrom
1253M: tori@unhappy.mine.nu
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08001254L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255S: Maintained
1256
Martin Waitzba483d52005-06-17 13:20:59 -07001257DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001258P: Randy Dunlap
1259M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001260S: Maintained
1261
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001262DOCKING STATION DRIVER
1263P: Kristen Carlson Accardi
1264M: kristen.c.accardi@intel.com
1265L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001266S: Supported
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268DOUBLETALK DRIVER
1269P: James R. Van Zandt
1270M: jrv@vanzandt.mv.com
1271L: blinux-list@redhat.com
1272S: Maintained
1273
1274DRIVER CORE, KOBJECTS, AND SYSFS
1275P: Greg Kroah-Hartman
1276M: gregkh@suse.de
1277L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001278T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279S: Supported
1280
1281DRM DRIVERS
1282P: David Airlie
1283M: airlied@linux.ie
1284L: dri-devel@lists.sourceforge.net
Jody McIntyre6fb04252005-11-18 09:31:06 -08001285T: git kernel.org:/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286S: Maintained
1287
1288DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001289P: Francois Romieu
1290M: romieu@fr.zoreil.com
1291L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292S: Maintained
1293
1294DVB SUBSYSTEM AND DRIVERS
1295P: LinuxTV.org Project
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001296M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297L: linux-dvb@linuxtv.org (subscription required)
Johannes Stezenbach7d69fa62005-08-11 11:54:24 +02001298W: http://linuxtv.org/
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02001299T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001300S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302EATA-DMA SCSI DRIVER
1303P: Michael Neuffer
1304L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1305S: Maintained
1306
1307EATA ISA/EISA/PCI SCSI DRIVER
1308P: Dario Ballabio
1309M: ballabio_dario@emc.com
1310L: linux-scsi@vger.kernel.org
1311S: Maintained
1312
1313EATA-PIO SCSI DRIVER
1314P: Michael Neuffer
1315M: mike@i-Connect.Net
1316L: linux-eata@i-connect.net, linux-scsi@vger.kernel.org
1317S: Maintained
1318
1319EBTABLES
1320P: Bart De Schuymer
1321M: bart.de.schuymer@pandora.be
1322L: ebtables-user@lists.sourceforge.net
1323L: ebtables-devel@lists.sourceforge.net
1324W: http://ebtables.sourceforge.net/
1325S: Maintained
1326
Michael Halcrow237fead2006-10-04 02:16:22 -07001327ECRYPT FILE SYSTEM
1328P: Mike Halcrow, Phillip Hellewell
1329M: mhalcrow@us.ibm.com, phillip@hellewell.homeip.net
1330L: ecryptfs-devel@lists.sourceforge.net
1331W: http://ecryptfs.sourceforge.net/
1332S: Supported
1333
Alan Coxda9bb1d2006-01-18 17:44:13 -08001334EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001335P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001336M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001337L: bluesmoke-devel@lists.sourceforge.net
1338W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001339S: Supported
Dave Peterson0e438e32006-03-26 01:38:55 -08001340
1341EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001342P: Mark Gross
1343M: mark.gross@intel.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001344L: bluesmoke-devel@lists.sourceforge.net
1345W: bluesmoke.sourceforge.net
1346S: Maintained
1347
1348EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001349P: Doug Thompson
1350M: norsk5@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001351L: bluesmoke-devel@lists.sourceforge.net
1352W: bluesmoke.sourceforge.net
1353S: Maintained
1354
1355EDAC-R82600
1356P: Tim Small
1357M: tim@buttersideup.com
1358L: bluesmoke-devel@lists.sourceforge.net
1359W: bluesmoke.sourceforge.net
1360S: Maintained
Alan Coxda9bb1d2006-01-18 17:44:13 -08001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362EEPRO100 NETWORK DRIVER
1363P: Andrey V. Savochkin
1364M: saw@saw.sw.com.sg
1365S: Maintained
1366
Josh Triplett0bee8d22006-07-30 03:03:58 -07001367EFS FILESYSTEM
1368W: http://aeschi.ch.eu.org/efs/
1369S: Orphan
1370
Heiko J Schickfab97222006-09-22 15:22:22 -07001371EHCA (IBM GX bus InfiniBand adapter) DRIVER:
1372P: Hoang-Nam Nguyen
1373M: hnguyen@de.ibm.com
1374P: Christoph Raisch
1375M: raisch@de.ibm.com
1376L: openib-general@openib.org
1377S: Supported
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379EMU10K1 SOUND DRIVER
1380P: James Courtier-Dutton
1381M: James@superbug.demon.co.uk
1382L: emu10k1-devel@lists.sourceforge.net
1383W: http://sourceforge.net/projects/emu10k1/
1384S: Maintained
1385
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001386EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001387P: James Smart
1388M: james.smart@emulex.com
1389L: linux-scsi@vger.kernel.org
1390W: http://sourceforge.net/projects/lpfcxxxx
1391S: Supported
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04001392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393EPSON 1355 FRAMEBUFFER DRIVER
1394P: Christopher Hoover
1395M: ch@murgatroid.com, ch@hpl.hp.com
1396S: Maintained
1397
1398ETHEREXPRESS-16 NETWORK DRIVER
1399P: Philip Blundell
1400M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001401L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402S: Maintained
1403
1404ETHERNET BRIDGE
1405P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08001406M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07001407L: bridge@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408W: http://bridge.sourceforge.net/
1409S: Maintained
1410
1411ETHERTEAM 16I DRIVER
1412P: Mika Kuoppala
1413M: miku@iki.fi
1414S: Maintained
1415
1416EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08001417L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418S: Maintained
1419
1420EXT3 FILE SYSTEM
1421P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001422M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001423L: linux-ext4@vger.kernel.org
1424S: Maintained
1425
1426EXT4 FILE SYSTEM
1427P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08001428M: sct@redhat.com, akpm@linux-foundation.org, adilger@clusterfs.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08001429L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430S: Maintained
1431
Jean Delvaree53004e2006-01-09 23:26:14 +01001432F71805F HARDWARE MONITORING DRIVER
1433P: Jean Delvare
1434M: khali@linux-fr.org
1435L: lm-sensors@lm-sensors.org
1436S: Maintained
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438FARSYNC SYNCHRONOUS DRIVER
1439P: Kevin Curtis
1440M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441W: http://www.farsite.co.uk/
1442S: Supported
1443
Akinobu Mitac5408b82007-04-23 14:41:20 -07001444FAULT INJECTION SUPPORT
1445P: Akinobu Mita
1446M: akinobu.mita@gmail.com
1447S: Supported
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449FRAMEBUFFER LAYER
1450P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001451M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001452L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453W: http://linux-fbdev.sourceforge.net/
1454S: Maintained
1455
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03001456FREESCALE SOC FS_ENET DRIVER
1457P: Pantelis Antoniou
1458M: pantelis.antoniou@gmail.com
1459P: Vitaly Bordug
1460M: vbordug@ru.mvista.com
1461L: linuxppc-embedded@ozlabs.org
1462L: netdev@vger.kernel.org
1463S: Maintained
1464
Li Yanga7205b32007-04-23 10:38:18 -07001465FREESCALE HIGHSPEED USB DEVICE DRIVER
1466P: Li Yang
1467M: leoli@freescale.com
1468L: linux-usb-devel@lists.sourceforge.net
1469L: linuxppc-embedded@ozlabs.org
1470S: Maintained
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472FILE LOCKING (flock() and fcntl()/lockf())
1473P: Matthew Wilcox
1474M: matthew@wil.cx
1475L: linux-fsdevel@vger.kernel.org
1476S: Maintained
1477
1478FILESYSTEMS (VFS and infrastructure)
1479P: Alexander Viro
viro@ZenIV.linux.org.uk84122052005-09-06 19:35:49 +01001480M: viro@zeniv.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481S: Maintained
1482
1483FIRMWARE LOADER (request_firmware)
1484L: linux-kernel@vger.kernel.org
1485S: Orphan
1486
1487FPU EMULATOR
1488P: Bill Metzenthen
1489M: billm@suburbia.net
1490W: http://suburbia.net/~billm/floating-point/emulator/
1491S: Maintained
1492
1493FRAME RELAY DLCI/FRAD (Sangoma drivers too)
1494P: Mike McLagan
1495M: mike.mclagan@linux.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07001496L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497S: Maintained
1498
1499FREEVXFS FILESYSTEM
1500P: Christoph Hellwig
1501M: hch@infradead.org
1502W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
1503S: Maintained
1504
David Howells5ab7ffe2007-04-10 15:10:45 +01001505FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506P: David Howells
1507M: dhowells@redhat.com
1508S: Maintained
1509
Miklos Szeredi04578f12005-09-09 13:10:22 -07001510FUSE: FILESYSTEM IN USERSPACE
1511P: Miklos Szeredi
1512M: miklos@szeredi.hu
1513L: fuse-devel@lists.sourceforge.net
1514W: http://fuse.sourceforge.net/
1515S: Maintained
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
1518P: Rik Faith
1519M: faith@cs.unc.edu
1520L: linux-scsi@vger.kernel.org
1521S: Odd fixes (e.g., new signatures)
1522
1523GDT SCSI DISK ARRAY CONTROLLER DRIVER
1524P: Achim Leubner
1525M: achim_leubner@adaptec.com
1526L: linux-scsi@vger.kernel.org
1527W: http://www.icp-vortex.com/
1528S: Supported
1529
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02001530GENERIC GPIO I2C DRIVER
1531P: Haavard Skinnemoen
1532M: hskinnemoen@atmel.com
1533S: Supported
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535GENERIC HDLC DRIVER, N2, C101, PCI200SYN and WANXL DRIVERS
1536P: Krzysztof Halasa
1537M: khc@pm.waw.pl
1538W: http://www.kernel.org/pub/linux/utils/net/hdlc/
1539S: Maintained
1540
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001541GFS2 FILE SYSTEM
1542P: Steven Whitehouse
1543M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001544L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001545W: http://sources.redhat.com/cluster/
Steven Whitehouse370298e2006-10-12 15:40:05 -04001546T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
1547T: git kernel.org:/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001548S: Supported
1549
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08001550GIGASET ISDN DRIVERS
1551P: Hansjoerg Lipp
1552M: hjlipp@web.de
1553P: Tilman Schmidt
1554M: tilman@imap.cc
1555L: gigaset307x-common@lists.sourceforge.net
1556W: http://gigaset307x.sourceforge.net/
1557S: Maintained
1558
Jean Delvare5b543962005-08-15 19:51:02 +02001559HARDWARE MONITORING
1560P: Jean Delvare
1561M: khali@linux-fr.org
1562L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001563W: http://www.lm-sensors.org/
1564T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02001565S: Maintained
1566
Michael Buesch844dd052006-06-26 00:24:59 -07001567HARDWARE RANDOM NUMBER GENERATOR CORE
1568P: Michael Buesch
1569M: mb@bu3sch.de
1570S: Maintained
1571
Robert Love860e1d62005-08-31 23:57:59 -04001572HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
1573P: Robert Love
1574M: rlove@rlove.org
1575M: linux-kernel@vger.kernel.org
1576W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/
1577S: Maintained
1578
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579HARMONY SOUND DRIVER
1580P: Kyle McMartin
1581M: kyle@parisc-linux.org
1582W: http://www.parisc-linux.org/~kyle/harmony/
1583L: parisc-linux@lists.parisc-linux.org
1584S: Maintained
1585
1586HAYES ESP SERIAL DRIVER
1587P: Andrew J. Robinson
1588M: arobinso@nyx.net
1589L: linux-kernel@vger.kernel.org
1590W: http://www.nyx.net/~arobinso
1591S: Maintained
1592
1593HFS FILESYSTEM
1594P: Roman Zippel
1595M: zippel@linux-m68k.org
1596L: linux-kernel@vger.kernel.org
1597S: Maintained
1598
1599HGA FRAMEBUFFER DRIVER
1600P: Ferenc Bakonyi
1601M: fero@drama.obuda.kando.hu
1602L: linux-nvidia@lists.surfsouth.com
1603W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
1604S: Maintained
1605
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001606HID CORE LAYER
1607P: Jiri Kosina
1608M: jkosina@suse.cz
1609L: linux-input@atrey.karlin.mff.cuni.cz
Jiri Kosinaa4dff392007-02-27 17:40:09 +01001610T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01001611S: Maintained
1612
Ingo Molnar38bed542007-02-22 09:09:34 +01001613HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
1614P: Thomas Gleixner
1615M: tglx@linutronix.de
1616L: linux-kernel@vger.kernel.org
1617S: Maintained
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619HIGH-SPEED SCC DRIVER FOR AX.25
1620P: Klaus Kudielka
1621M: klaus.kudielka@ieee.org
1622L: linux-hams@vger.kernel.org
1623W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
1624S: Maintained
1625
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08001626HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
1627P: HighPoint Linux Team
1628M: linux@highpoint-tech.com
1629W: http://www.highpoint-tech.com
1630S: Supported
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632HIPPI
1633P: Jes Sorensen
1634M: jes@trained-monkey.org
1635L: linux-hippi@sunsite.dk
1636S: Maintained
1637
1638HEWLETT-PACKARD FIBRE CHANNEL 64-bit/66MHz PCI non-intelligent HBA
1639P: Chirag Kantharia
1640M: chirag.kantharia@hp.com
1641L: iss_storagedev@hp.com
1642S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644HEWLETT-PACKARD SMART2 RAID DRIVER
1645P: Chirag Kantharia
1646M: chirag.kantharia@hp.com
1647L: iss_storagedev@hp.com
1648S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
1651P: Mike Miller
1652M: mike.miller@hp.com
1653L: iss_storagedev@hp.com
1654S: Supported
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001655
Jouni Malinenff1d2762005-05-12 22:54:16 -04001656HOST AP DRIVER
1657P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07001658M: j@w1.fi
1659L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07001660L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04001661W: http://hostap.epitest.fi/
1662S: Maintained
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
1665P: Jaroslav Kysela
1666M: perex@suse.cz
1667S: Maintained
1668
Bob Piccob9b03322005-11-07 00:59:19 -08001669HPET: High Precision Event Timers driver (hpet.c)
1670P: Clemens Ladisch
1671M: clemens@ladisch.de
1672S: Maintained
1673
1674HPET: i386
1675P: Venkatesh Pallipadi (Venki)
1676M: venkatesh.pallipadi@intel.com
1677S: Maintained
1678
1679HPET: x86_64
1680P: Andi Kleen and Vojtech Pavlik
Andi Kleen43c3ab32007-05-02 19:27:11 +02001681M: andi@firstfloor.org and vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08001682S: Maintained
1683
1684HPET: ACPI hpet.c
1685P: Bob Picco
1686M: bob.picco@hp.com
1687S: Maintained
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689HPFS FILESYSTEM
1690P: Mikulas Patocka
1691M: mikulas@artax.karlin.mff.cuni.cz
1692W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
1693S: Maintained
1694
1695HUGETLB FILESYSTEM
1696P: William Irwin
1697M: wli@holomorphy.com
1698S: Maintained
1699
Jean Delvare5b543962005-08-15 19:51:02 +02001700I2C SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701P: Jean Delvare
1702M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02001703L: i2c@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08001704T: quilt http://khali.linux-fr.org/devel/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705S: Maintained
1706
Till Harbaume8c76ee2007-05-01 23:26:35 +02001707I2C-TINY-USB DRIVER
1708P: Till Harbaum
1709M: till@harbaum.org
1710L: i2c@lm-sensors.org
1711T: http://www.harbaum.org/till/i2c_tiny_usb
1712S: Maintained
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714i386 BOOT CODE
1715P: Riley H. Williams
1716M: Riley@Williams.Name
1717L: Linux-Kernel@vger.kernel.org
1718S: Maintained
1719
1720i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721P: H. Peter Anvin
1722M: hpa@zytor.com
1723S: Maintained
1724
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725IA64 (Itanium) PLATFORM
1726P: Tony Luck
1727M: tony.luck@intel.com
1728L: linux-ia64@vger.kernel.org
1729W: http://www.ia64-linux.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001730T: git kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731S: Maintained
1732
1733SN-IA64 (Itanium) SUB-PLATFORM
Greg Edwardse5ee7dd2006-01-18 10:21:59 -06001734P: Jes Sorensen
1735M: jes@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736L: linux-altix@sgi.com
1737L: linux-ia64@vger.kernel.org
1738W: http://www.sgi.com/altix
1739S: Maintained
1740
1741IBM MCA SCSI SUBSYSTEM DRIVER
1742P: Michael Lang
1743M: langa2@kph.uni-mainz.de
1744W: http://www.uni-mainz.de/~langm000/linux.html
1745S: Maintained
1746
1747IBM Power Linux RAID adapter
1748P: Brian King
1749M: brking@us.ibm.com
1750S: Supported
1751
1752IBM ServeRAID RAID DRIVER
1753P: Jack Hammer
1754P: Dave Jeffery
1755M: ipslinux@adaptec.com
1756W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03001757S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001759IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001761M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01001763T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764S: Maintained
1765
1766IDE/ATAPI CDROM DRIVER
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01001767P: Alan Cox
1768M: alan@lxorguk.ukuu.org.uk
1769L: linux-ide@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770S: Maintained
1771
1772IDE/ATAPI FLOPPY DRIVERS
1773P: Paul Bristow
1774M: Paul Bristow <paul@paulbristow.net>
1775W: http://paulbristow.net/linux/idefloppy.html
1776L: linux-kernel@vger.kernel.org
1777S: Maintained
1778
1779IDE/ATAPI TAPE DRIVERS
1780P: Gadi Oxman
1781M: Gadi Oxman <gadio@netvision.net.il>
1782L: linux-kernel@vger.kernel.org
1783S: Maintained
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785IEEE 1394 SUBSYSTEM
1786P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07001787M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02001788P: Stefan Richter
1789M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790L: linux1394-devel@lists.sourceforge.net
1791W: http://www.linux1394.org/
Stefan Richter87730d02006-09-16 12:24:00 +02001792T: git kernel.org:/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793S: Maintained
1794
Stefan Richterf51a5a92007-04-23 14:41:10 -07001795IEEE 1394 RAW I/O DRIVER (raw1394)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796P: Dan Dennedy
1797M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07001798P: Stefan Richter
1799M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07001801S: Maintained
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803IMS TWINTURBO FRAMEBUFFER DRIVER
1804P: Paul Mundt
1805M: lethal@chaoticdreams.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001806L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807S: Maintained
1808
1809INFINIBAND SUBSYSTEM
1810P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07001811M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812P: Sean Hefty
1813M: mshefty@ichips.intel.com
1814P: Hal Rosenstock
1815M: halr@voltaire.com
1816L: openib-general@openib.org
1817W: http://www.openib.org/
Jody McIntyre6fb04252005-11-18 09:31:06 -08001818T: git kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819S: Supported
1820
1821INPUT (KEYBOARD, MOUSE, JOYSTICK) DRIVERS
Vojtech Pavlik664d22a2005-12-13 17:03:36 -08001822P: Dmitry Torokhov
Dmitry Torokhov62f7caf2006-06-26 01:47:56 -04001823M: dmitry.torokhov@gmail.com
1824M: dtor@mail.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825L: linux-input@atrey.karlin.mff.cuni.cz
1826L: linux-joystick@atrey.karlin.mff.cuni.cz
Josh Boyer1adc1232005-11-23 15:44:15 -08001827T: git kernel.org:/pub/scm/linux/kernel/git/dtor/input.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828S: Maintained
1829
Robert Lovec9f04f52005-07-15 12:21:07 -04001830INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01001831P: John McCutchan
1832M: ttb@tentacle.dhs.org
1833P: Robert Love
1834M: rml@novell.com
Robert Lovec9f04f52005-07-15 12:21:07 -04001835L: linux-kernel@vger.kernel.org
1836S: Maintained
1837
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001838INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01001839P: Sylvain Meyer
1840M: sylvain.meyer@worldonline.fr
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001841L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001842S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08001843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001845P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08001846M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08001847L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01001848S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850INTEL APIC/IOAPIC, LOWLEVEL X86 SMP SUPPORT
1851P: Ingo Molnar
1852M: mingo@redhat.com
1853S: Maintained
1854
1855INTEL I8XX RANDOM NUMBER GENERATOR SUPPORT
1856P: Jeff Garzik
1857M: jgarzik@pobox.com
1858W: http://sourceforge.net/projects/gkernel/
1859S: Maintained
1860
1861INTEL IA32 MICROCODE UPDATE SUPPORT
1862P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08001863M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864S: Maintained
1865
Michael Buesch844dd052006-06-26 00:24:59 -07001866INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
1867P: Deepak Saxena
1868M: dsaxena@plexity.net
1869S: Maintained
1870
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001871INTEL IXP2000 ETHERNET DRIVER
1872P: Lennert Buytenhek
1873M: kernel@wantstofly.org
1874L: netdev@vger.kernel.org
1875S: Maintained
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877INTEL PRO/100 ETHERNET SUPPORT
1878P: John Ronciak
1879M: john.ronciak@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880P: Jesse Brandeburg
1881M: jesse.brandeburg@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001882P: Jeff Kirsher
1883M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001884P: Auke Kok
1885M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001886L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887W: http://sourceforge.net/projects/e1000/
1888S: Supported
1889
1890INTEL PRO/1000 GIGABIT ETHERNET SUPPORT
1891P: Jeb Cramer
1892M: cramerj@intel.com
1893P: John Ronciak
1894M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001895P: Jesse Brandeburg
1896M: jesse.brandeburg@intel.com
1897P: Jeff Kirsher
1898M: jeffrey.t.kirsher@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001899P: Auke Kok
1900M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001901L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902W: http://sourceforge.net/projects/e1000/
1903S: Supported
1904
1905INTEL PRO/10GbE SUPPORT
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001906P: Jeff Kirsher
1907M: jeffrey.t.kirsher@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908P: Ayyappan Veeraiyan
1909M: ayyappan.veeraiyan@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910P: John Ronciak
1911M: john.ronciak@intel.com
Jesse Brandeburgadd18782006-03-14 14:52:13 -08001912P: Jesse Brandeburg
1913M: jesse.brandeburg@intel.com
Auke Kok99a1f9e2006-04-14 19:05:38 -07001914P: Auke Kok
1915M: auke-jan.h.kok@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08001916L: e1000-devel@lists.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917W: http://sourceforge.net/projects/e1000/
1918S: Supported
1919
James Ketrenos826d2ab2005-11-07 18:56:59 -06001920INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
1921P: Yi Zhu
1922M: yi.zhu@intel.com
1923P: James Ketrenos
1924M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001925L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001926L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001927L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1928W: http://ipw2100.sourceforge.net
1929S: Supported
1930
1931INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
1932P: Yi Zhu
1933M: yi.zhu@intel.com
1934P: James Ketrenos
1935M: jketreno@linux.intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07001936L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07001937L: ipw2100-devel@lists.sourceforge.net
James Ketrenos826d2ab2005-11-07 18:56:59 -06001938L: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
1939W: http://ipw2200.sourceforge.net
1940S: Supported
1941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942IOC3 DRIVER
1943P: Ralf Baechle
1944M: ralf@linux-mips.org
1945L: linux-mips@linux-mips.org
1946S: Maintained
1947
1948IP MASQUERADING:
1949P: Juanjo Ciarlante
1950M: jjciarla@raiz.uncu.edu.ar
1951S: Maintained
1952
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08001953IPATH DRIVER:
1954P: Bryan O'Sullivan
1955M: support@pathscale.com
1956L: openib-general@openib.org
1957S: Supported
1958
Corey Minyard4409ebe2006-04-20 02:43:12 -07001959IPMI SUBSYSTEM
1960P: Corey Minyard
1961M: minyard@acm.org
1962L: openipmi-developer@lists.sourceforge.net
1963W: http://openipmi.sourceforge.net/
1964S: Supported
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966IPX NETWORK LAYER
1967P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001968M: acme@ghostprotocols.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07001969L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970S: Maintained
1971
1972IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07001973P: Samuel Ortiz
1974M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07001975L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07001977S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979ISAPNP
1980P: Jaroslav Kysela
1981M: perex@suse.cz
1982S: Maintained
1983
1984ISDN SUBSYSTEM
1985P: Karsten Keil
1986M: kkeil@suse.de
1987P: Kai Germaschewski
1988M: kai.germaschewski@gmx.de
1989L: isdn4linux@listserv.isdn4linux.de
1990W: http://www.isdn4linux.de
Josh Boyer1adc1232005-11-23 15:44:15 -08001991T: git kernel.org:/pub/scm/linux/kernel/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992S: Maintained
1993
1994ISDN SUBSYSTEM (Eicon active card driver)
1995P: Armin Schindler
1996M: mac@melware.de
1997L: isdn4linux@listserv.isdn4linux.de
1998W: http://www.melware.de
1999S: Maintained
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
2002P: David Woodhouse
2003M: dwmw2@infradead.org
2004L: jffs-dev@axis.com
2005W: http://sources.redhat.com/jffs2/
2006S: Maintained
2007
2008JFS FILESYSTEM
2009P: Dave Kleikamp
2010M: shaggy@austin.ibm.com
2011L: jfs-discussion@lists.sourceforge.net
2012W: http://jfs.sourceforge.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002013T: git kernel.org:/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014S: Supported
2015
Josh Triplettde456d32006-07-30 03:04:00 -07002016JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Theodore Tsoae0718f2006-05-20 15:00:13 -07002017P: Stephen Tweedie, Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002018M: sct@redhat.com, akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08002019L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07002020S: Maintained
2021
Rudolf Marek4660cb32006-10-08 22:01:26 +02002022K8TEMP HARDWARE MONITORING DRIVER
2023P: Rudolf Marek
2024M: r.marek@assembler.cz
2025L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026S: Maintained
2027
2028KCONFIG
2029P: Roman Zippel
2030M: zippel@linux-m68k.org
2031L: kbuild-devel@lists.sourceforge.net
2032S: Maintained
2033
Vivek Goyalea6c2082006-05-20 14:59:55 -07002034KDUMP
2035P: Vivek Goyal
2036M: vgoyal@in.ibm.com
2037P: Haren Myneni
2038M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07002039L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07002040L: linux-kernel@vger.kernel.org
2041W: http://lse.sourceforge.net/kdump/
2042S: Maintained
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044KERNEL AUTOMOUNTER (AUTOFS)
2045P: H. Peter Anvin
2046M: hpa@zytor.com
2047L: autofs@linux.kernel.org
2048S: Odd Fixes
2049
2050KERNEL AUTOMOUNTER v4 (AUTOFS4)
2051P: Ian Kent
2052M: raven@themaw.net
2053L: autofs@linux.kernel.org
2054S: Maintained
2055
2056KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
2057P: Kai Germaschewski
2058M: kai@germaschewski.name
2059P: Sam Ravnborg
2060M: sam@ravnborg.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002061T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002062S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064KERNEL JANITORS
2065P: Several
David Brownellf318a632007-04-23 14:41:06 -07002066L: kernel-janitors@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068S: Maintained
2069
2070KERNEL NFSD
2071P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08002072M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073L: nfs@lists.sourceforge.net
2074W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08002075S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Avi Kivity426d62e2006-12-13 00:34:03 -08002077KERNEL VIRTUAL MACHINE (KVM)
2078P: Avi Kivity
2079M: avi@qumranet.com
2080L: kvm-devel@lists.sourceforge.net
2081W: kvm.sourceforge.net
2082S: Supported
2083
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002084KEXEC
2085P: Eric Biederman
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002086M: ebiederm@xmission.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002087W: http://www.xmission.com/~ebiederm/files/kexec/
2088L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07002089L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07002090S: Maintained
2091
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07002092KPROBES
2093P: Prasanna S Panchamukhi
2094M: prasanna@in.ibm.com
2095P: Ananth N Mavinakayanahalli
2096M: ananth@in.ibm.com
2097P: Anil S Keshavamurthy
2098M: anil.s.keshavamurthy@intel.com
2099P: David S. Miller
2100M: davem@davemloft.net
2101L: linux-kernel@vger.kernel.org
2102S: Maintained
2103
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002104KS0108 LCD CONTROLLER DRIVER
2105P: Miguel Ojeda Sandonis
2106M: maxextreme@gmail.com
2107L: linux-kernel@vger.kernel.org
Miguel Ojeda6b968622007-05-08 00:29:54 -07002108W: http://auxdisplay.googlepages.com/
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08002109S: Maintained
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07002113S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115LASI 53c700 driver for PARISC
2116P: James E.J. Bottomley
2117M: James.Bottomley@HansenPartnership.com
2118L: linux-scsi@vger.kernel.org
2119S: Maintained
2120
Richard Purdie263de9b2006-05-15 09:44:16 -07002121LED SUBSYSTEM
2122P: Richard Purdie
2123M: rpurdie@rpsys.net
2124S: Maintained
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126LEGO USB Tower driver
2127P: Juergen Stuber
2128M: starblue@users.sourceforge.net
2129L: legousb-devel@lists.sourceforge.net
2130W: http://legousb.sourceforge.net/
2131S: Maintained
2132
2133LINUX FOR IBM pSERIES (RS/6000)
2134P: Paul Mackerras
2135M: paulus@au.ibm.com
2136W: http://www.ibm.com/linux/ltc/projects/ppc
2137S: Supported
2138
2139LINUX FOR NCR VOYAGER
2140P: James Bottomley
2141M: James.Bottomley@HansenPartnership.com
2142W: http://www.hansenpartnership.com/voyager
2143S: Maintained
2144
2145LINUX FOR POWERPC
2146P: Paul Mackerras
2147M: paulus@samba.org
2148W: http://www.penguinppc.org/
2149L: linuxppc-dev@ozlabs.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002150T: git kernel.org:/pub/scm/linux/kernel/git/paulus/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151S: Supported
2152
2153LINUX FOR POWER MACINTOSH
2154P: Benjamin Herrenschmidt
2155M: benh@kernel.crashing.org
2156W: http://www.penguinppc.org/
2157L: linuxppc-dev@ozlabs.org
2158S: Maintained
2159
2160LINUX FOR POWERPC EMBEDDED MPC52XX
2161P: Sylvain Munaut
2162M: tnt@246tNt.com
2163W: http://www.246tNt.com/mpc52xx/
2164W: http://www.penguinppc.org/
2165L: linuxppc-dev@ozlabs.org
2166L: linuxppc-embedded@ozlabs.org
2167S: Maintained
2168
2169LINUX FOR POWERPC EMBEDDED PPC4XX
2170P: Matt Porter
2171M: mporter@kernel.crashing.org
2172W: http://www.penguinppc.org/
2173L: linuxppc-embedded@ozlabs.org
2174S: Maintained
2175
Tom Rinie93adf12005-07-26 12:49:53 -07002176LINUX FOR POWERPC BOOT CODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177P: Tom Rini
2178M: trini@kernel.crashing.org
2179W: http://www.penguinppc.org/
2180L: linuxppc-embedded@ozlabs.org
2181S: Maintained
2182
Tom Rinie93adf12005-07-26 12:49:53 -07002183LINUX FOR POWERPC EMBEDDED PPC8XX
2184P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07002185M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07002186W: http://www.penguinppc.org/
2187L: linuxppc-embedded@ozlabs.org
2188S: Maintained
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01002191P: Kumar Gala
2192M: galak@kernel.crashing.org
2193W: http://www.penguinppc.org/
2194L: linuxppc-embedded@ozlabs.org
2195S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Olof Johanssonab06ff32006-09-06 14:44:54 -05002197LINUX FOR POWERPC PA SEMI PWRFICIENT
2198P: Olof Johansson
2199M: olof@lixom.net
2200W: http://www.pasemi.com/
2201L: linuxppc-dev@ozlabs.org
2202S: Supported
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204LLC (802.2)
2205P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03002206M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207S: Maintained
2208
2209LINUX FOR 64BIT POWERPC
2210P: Paul Mackerras
2211M: paulus@samba.org
2212M: paulus@au.ibm.com
2213P: Anton Blanchard
2214M: anton@samba.org
2215M: anton@au.ibm.com
Arthur Othieno6d923f92006-05-19 06:22:23 -04002216W: http://www.penguinppc.org/ppc64/
Stephen Rothwell1d049812006-03-22 11:26:58 +11002217L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218S: Supported
2219
2220LINUX SECURITY MODULE (LSM) FRAMEWORK
2221P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08002222M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08002223L: linux-security-module@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224W: http://lsm.immunix.org
Josh Boyer1adc1232005-11-23 15:44:15 -08002225T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226S: Supported
2227
2228LM83 HARDWARE MONITOR DRIVER
2229P: Jean Delvare
2230M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002231L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232S: Maintained
2233
2234LM90 HARDWARE MONITOR DRIVER
2235P: Jean Delvare
2236M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02002237L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238S: Maintained
2239
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002240LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241P: Richard Russon (FlatCap)
2242M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01002243L: linux-ntfs-dev@lists.sourceforge.net
2244W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245S: Maintained
2246
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002247LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
2248P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08002249M: Eric.Moore@lsi.com
2250M: support@lsi.com
2251L: mpt_linux_developer@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07002252L: linux-scsi@vger.kernel.org
2253W: http://www.lsilogic.com/support
2254S: Supported
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
2257P: Matthew Wilcox
2258M: matthew@wil.cx
2259L: linux-scsi@vger.kernel.org
2260S: Maintained
2261
2262M68K ARCHITECTURE
2263P: Geert Uytterhoeven
2264M: geert@linux-m68k.org
2265P: Roman Zippel
2266M: zippel@linux-m68k.org
2267L: linux-m68k@lists.linux-m68k.org
2268W: http://www.linux-m68k.org/
2269W: http://linux-m68k-cvs.ubb.ca/
2270S: Maintained
2271
2272M68K ON APPLE MACINTOSH
2273P: Joshua Thompson
2274M: funaho@jurai.org
2275W: http://www.mac.linux-m68k.org/
2276L: linux-mac68k@mac.linux-m68k.org
2277S: Maintained
2278
2279M68K ON HP9000/300
2280P: Philip Blundell
2281M: philb@gnu.org
2282W: http://www.tazenda.demon.co.uk/phil/linux-hp
2283S: Maintained
2284
Jiri Benc64a327a2007-05-05 11:47:08 -07002285MAC80211
2286P: Jiri Benc
2287M: jbenc@suse.cz
2288P: Michael Wu
2289M: flamingice@sourmilk.net
2290L: linux-wireless@vger.kernel.org
2291W: http://linuxwireless.org/
2292T: git kernel.org:/pub/scm/linux/kernel/git/jbenc/mac80211.git
2293S: Maintained
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295MARVELL YUKON / SYSKONNECT DRIVER
2296P: Mirko Lindner
2297M: mlindner@syskonnect.de
2298P: Ralph Roesler
2299M: rroesler@syskonnect.de
2300W: http://www.syskonnect.com
2301S: Supported
2302
Michael Kerriskfaf16682005-07-31 22:34:47 -07002303MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01002304P: Michael Kerrisk
2305M: mtk-manpages@gmx.net
2306W: ftp://ftp.kernel.org/pub/linux/docs/manpages
2307S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07002308
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002309MARVELL MV643XX ETHERNET DRIVER
2310P: Dale Farnsworth
2311M: dale@farnsworth.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312P: Manish Lachwani
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002313M: mlachwani@mvista.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002314L: netdev@vger.kernel.org
Dale Farnsworthb60d6972006-01-16 16:45:45 -07002315S: Odd Fixes for 2.4; Maintained for 2.6.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317MATROX FRAMEBUFFER DRIVER
2318P: Petr Vandrovec
2319M: vandrove@vc.cvut.cz
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002320L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321S: Maintained
2322
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02002323MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2324P: Hans J. Koch
2325M: hjk@linutronix.de
2326L: lm-sensors@lm-sensors.org
2327S: Maintained
2328
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002329MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01002330P: Neela Syam Kolli
2331M: Neela.Kolli@engenio.com
2332S: linux-scsi@vger.kernel.org
2333W: http://megaraid.lsilogic.com
2334S: Maintained
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07002335
Steven Rostedt70ea91f2006-07-30 03:03:53 -07002336MEMORY MANAGEMENT
2337L: linux-mm@kvack.org
2338L: linux-kernel@vger.kernel.org
2339W: http://www.linux-mm.org
2340S: Maintained
2341
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002342MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343P: David Woodhouse
2344M: dwmw2@infradead.org
2345W: http://www.linux-mtd.infradead.org/
2346L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04002347T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348S: Maintained
2349
Artem Bityutskiy48576402007-02-13 17:11:10 +02002350UNSORTED BLOCK IMAGES (UBI)
2351P: Artem Bityutskiy
2352M: dedekind@infradead.org
2353W: http://www.linux-mtd.infradead.org/
2354L: linux-mtd@lists.infradead.org
2355T: git git://git.infradead.org/ubi-2.6.git
2356S: Maintained
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358MICROTEK X6 SCANNER
2359P: Oliver Neukum
2360M: oliver@neukum.name
2361S: Maintained
2362
2363MIPS
2364P: Ralf Baechle
2365M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01002366W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367L: linux-mips@linux-mips.org
Ralf Baechle7425b342006-03-10 13:47:21 +00002368T: git www.linux-mips.org:/pub/scm/linux.git
2369S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371MISCELLANEOUS MCA-SUPPORT
2372P: James Bottomley
2373M: jejb@steeleye.com
2374L: linux-kernel@vger.kernel.org
2375S: Maintained
2376
2377MODULE SUPPORT
2378P: Rusty Russell
2379M: rusty@rustcorp.com.au
2380L: linux-kernel@vger.kernel.org
2381S: Maintained
2382
2383MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
2384P: Stelian Pop
2385M: stelian@popies.net
2386W: http://popies.net/meye/
2387S: Maintained
2388
Pavel Pisac58ff042007-05-16 01:10:41 +02002389MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
2390P: Pavel Pisa
2391M: ppisa@pikron.com
2392L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2393W: http://mmc.drzeus.cx/wiki/Controllers/Freescale/SDHC
2394S: Maintained
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396MOUSE AND MISC DEVICES [GENERAL]
2397P: Alessandro Rubini
2398M: rubini@ipvvis.unipv.it
2399L: linux-kernel@vger.kernel.org
2400S: Maintained
2401
Jiri Slabyd7354102006-12-08 02:38:35 -08002402MOXA SMARTIO/INDUSTIO SERIAL CARD (MXSER 2.0)
2403P: Jiri Slaby
2404M: jirislaby@gmail.com
2405L: linux-kernel@vger.kernel.org
2406S: Maintained
2407
Lennart Poettering8c4c7312006-10-06 01:27:02 -04002408MSI LAPTOP SUPPORT
2409P: Lennart Poettering
2410M: mzxreary@0pointer.de
2411L: https://tango.0pointer.de/mailman/listinfo/s270-linux
2412W: http://0pointer.de/lennart/tchibo.html
2413S: Maintained
2414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415MTRR AND SIMILAR SUPPORT [i386]
2416P: Richard Gooch
2417M: rgooch@atnf.csiro.au
2418L: linux-kernel@vger.kernel.org
2419W: http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
2420S: Maintained
2421
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07002422MULTIMEDIA CARD (MMC) AND SECURE DIGITAL (SD) SUBSYSTEM
2423P: Pierre Ossman
2424M: drzeus-mmc@drzeus.cx
2425L: linux-kernel@vger.kernel.org
2426S: Maintained
Russell Kingbaca2da2006-06-04 17:36:31 +01002427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428MULTISOUND SOUND DRIVER
2429P: Andrew Veliath
2430M: andrewtv@usa.net
2431S: Maintained
2432
Jiri Slabyd7354102006-12-08 02:38:35 -08002433MULTITECH MULTIPORT CARD (ISICOM)
2434P: Jiri Slaby
2435M: jirislaby@gmail.com
2436L: linux-kernel@vger.kernel.org
2437S: Maintained
2438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439NATSEMI ETHERNET DRIVER (DP8381x)
2440P: Tim Hockin
2441M: thockin@hockin.org
2442S: Maintained
2443
2444NCP FILESYSTEM
2445P: Petr Vandrovec
2446M: vandrove@vc.cvut.cz
2447L: linware@sh.cvut.cz
2448S: Maintained
2449
2450NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
2451P: James E.J. Bottomley
2452M: James.Bottomley@HansenPartnership.com
2453L: linux-scsi@vger.kernel.org
2454S: Maintained
2455
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002456NETEM NETWORK EMULATOR
2457P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002458M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002459L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07002460S: Maintained
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462NETFILTER/IPTABLES/IPCHAINS
2463P: Rusty Russell
2464P: Marc Boucher
2465P: James Morris
2466P: Harald Welte
2467P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07002468P: Patrick McHardy
2469M: kaber@trash.net
2470L: netfilter-devel@lists.netfilter.org
Randy Dunlap24a1dec2007-01-28 15:54:42 -08002471L: netfilter@lists.netfilter.org (subscribers-only)
Patrick McHardy82b98542006-10-12 14:08:55 -07002472L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473W: http://www.netfilter.org/
2474W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475S: Supported
2476
Paul Moore4cc67732006-09-25 15:57:13 -07002477NETLABEL
2478P: Paul Moore
2479M: paul.moore@hp.com
2480W: http://netlabel.sf.net
2481L: netdev@vger.kernel.org
2482S: Supported
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484NETROM NETWORK LAYER
2485P: Ralf Baechle
2486M: ralf@linux-mips.org
2487L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02002488W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489S: Maintained
2490
Pavel Machek5ddb88c2006-09-29 02:01:29 -07002491NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492P: Paul Clements
2493M: Paul.Clements@steeleye.com
2494S: Maintained
2495
2496NETWORK DEVICE DRIVERS
2497P: Andrew Morton
Simon Horman588cc702007-02-20 13:58:06 -08002498M: akpm@linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499P: Jeff Garzik
2500M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07002501L: netdev@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08002502T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503S: Maintained
2504
2505NETWORKING [GENERAL]
2506P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07002507M: netdev@vger.kernel.org
2508L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08002509W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510S: Maintained
2511
2512NETWORKING [IPv4/IPv6]
2513P: David S. Miller
2514M: davem@davemloft.net
2515P: Alexey Kuznetsov
2516M: kuznet@ms2.inr.ac.ru
2517P: Pekka Savola (ipv6)
2518M: pekkas@netcore.fi
2519P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04002520M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521P: Hideaki YOSHIFUJI
2522M: yoshfuji@linux-ipv6.org
2523P: Patrick McHardy
2524M: kaber@coreworks.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002525L: netdev@vger.kernel.org
John W. Linvilled5ca3112006-01-18 14:52:18 -08002526T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527S: Maintained
2528
John W. Linville29f8f632006-01-18 14:52:48 -08002529NETWORKING [WIRELESS]
2530P: John W. Linville
2531M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08002532L: linux-wireless@vger.kernel.org
John W. Linville29f8f632006-01-18 14:52:48 -08002533T: git kernel.org:/pub/scm/linux/kernel/git/linville/wireless-2.6.git
2534S: Maintained
2535
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002536NETXEN (1/10) GbE SUPPORT
2537P: Amit S. Kale
2538M: amitkale@netxen.com
2539L: netdev@vger.kernel.org
2540W: http://www.netxen.com
2541S: Supported
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543IPVS
2544P: Wensong Zhang
2545M: wensong@linux-vs.org
Horms9d30c172005-09-29 19:47:06 -07002546P: Simon Horman
2547M: horms@verge.net.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548P: Julian Anastasov
2549M: ja@ssi.bg
Horms9d30c172005-09-29 19:47:06 -07002550L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551S: Maintained
2552
2553NFS CLIENT
2554P: Trond Myklebust
2555M: trond.myklebust@fys.uio.no
2556L: linux-kernel@vger.kernel.org
2557S: Maintained
2558
2559NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07002560P: Jan-Pascal van Best
2561M: janpascal@vanbest.org
2562P: Andreas Mohr
2563M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07002564L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565S: Maintained
2566
2567NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
2568P: YOKOTA Hiroshi
2569M: yokota@netlab.is.tsukuba.ac.jp
2570W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2571S: Maintained
2572
2573NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
2574P: GOTO Masanori
2575M: gotom@debian.or.jp
2576P: YOKOTA Hiroshi
2577M: yokota@netlab.is.tsukuba.ac.jp
2578W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
2579S: Maintained
2580
2581NON-IDE/NON-SCSI CDROM DRIVERS [GENERAL] (come on, crew - mark your responsibility)
2582P: Eberhard Moenkeberg
2583M: emoenke@gwdg.de
2584L: linux-kernel@vger.kernel.org
2585S: Maintained
2586
2587NTFS FILESYSTEM
2588P: Anton Altaparmakov
2589M: aia21@cantab.net
2590L: linux-ntfs-dev@lists.sourceforge.net
2591L: linux-kernel@vger.kernel.org
2592W: http://linux-ntfs.sf.net/
Josh Boyer1adc1232005-11-23 15:44:15 -08002593T: git kernel.org:/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594S: Maintained
2595
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002596NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002597P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002598M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002599L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01002600S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Ramkrishna Vepa3ef34b82007-03-30 18:42:27 -07002602NETERION (S2IO) Xframe 10GbE DRIVER
2603P: Ramkrishna Vepa
2604M: ram.vepa@neterion.com
2605P: Rastapur Santosh
2606M: santosh.rastapur@neterion.com
2607P: Sivakumar Subramani
2608M: sivakumar.subramani@neterion.com
2609P: Sreenivasa Honnur
2610M: sreenivasa.honnur@neterion.com
2611L: netdev@vger.kernel.org
2612W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/TitleIndex?anonymous
2613S: Supported
2614
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002615OPENCORES I2C BUS DRIVER
2616P: Peter Korsgaard
2617M: jacmet@sunsite.dk
Jean Delvare5d925fe2006-07-01 17:14:32 +02002618L: i2c@lm-sensors.org
Peter Korsgaard1ded9692006-06-12 21:40:53 +02002619S: Maintained
2620
Mark Fashehccd979b2005-12-15 14:31:24 -08002621ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
2622P: Mark Fasheh
2623M: mark.fasheh@oracle.com
2624P: Kurt Hackel
2625M: kurt.hackel@oracle.com
2626L: ocfs2-devel@oss.oracle.com
2627W: http://oss.oracle.com/projects/ocfs2/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002628S: Supported
Mark Fashehccd979b2005-12-15 14:31:24 -08002629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630OLYMPIC NETWORK DRIVER
2631P: Peter De Shrijver
2632M: p2@ace.ulyssis.student.kuleuven.ac.be
2633P: Mike Phillips
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002634M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002635L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636L: linux-tr@linuxtr.net
2637W: http://www.linuxtr.net
2638S: Maintained
2639
Harald Weltec1986ee2005-11-13 16:06:29 -08002640OMNIKEY CARDMAN 4000 DRIVER
2641P: Harald Welte
2642M: laforge@gnumonks.org
2643S: Maintained
2644
Harald Welte77c44ab2005-11-13 16:06:26 -08002645OMNIKEY CARDMAN 4040 DRIVER
2646P: Harald Welte
2647M: laforge@gnumonks.org
2648S: Maintained
2649
Jonathan Corbet77d51402007-03-22 19:44:17 -03002650OMNIVISION OV7670 SENSOR DRIVER
2651P: Jonathan Corbet
2652M: corbet@lwn.net
2653L: video4linux-list@redhat.com
2654S: Maintained
2655
Thomas Gleixner431bca72007-05-02 09:31:35 +02002656ONENAND FLASH DRIVER
2657P: Kyungmin Park
2658M: kyungmin.park@samsung.com
2659L: linux-mtd@lists.infradead.org
2660S: Maintained
2661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662ONSTREAM SCSI TAPE DRIVER
2663P: Willem Riede
2664M: osst@riede.org
2665L: osst-users@lists.sourceforge.net
2666L: linux-scsi@vger.kernel.org
2667S: Maintained
2668
2669OPL3-SA2, SA3, and SAx DRIVER
2670P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07002671M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672L: linux-sound@vger.kernel.org
2673S: Maintained
2674
2675OPROFILE
2676P: Philippe Elie
2677M: phil.el@wanadoo.fr
2678L: oprofile-list@lists.sf.net
2679S: Maintained
2680
2681ORINOCO DRIVER
2682P: Pavel Roskin
2683M: proski@gnu.org
2684P: David Gibson
2685M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07002686L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07002687L: orinoco-users@lists.sourceforge.net
2688L: orinoco-devel@lists.sourceforge.net
2689W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690S: Maintained
2691
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002692PA SEMI ETHERNET DRIVER
2693P: Olof Johansson
2694M: olof@lixom.net
2695L: netdev@vger.kernel.org
2696S: Maintained
2697
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01002698PA SEMI SMBUS DRIVER
2699P: Olof Johansson
2700M: olof@lixom.net
2701L: i2c@lm-sensors.org
2702S: Maintained
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002705L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08002706S: Orphan
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
2708PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
2709P: Tim Waugh
2710M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07002711L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712W: http://www.torque.net/linux-pp.html
2713S: Maintained
2714
2715PARISC ARCHITECTURE
2716P: Matthew Wilcox
2717M: matthew@wil.cx
2718P: Grant Grundler
2719M: grundler@parisc-linux.org
Kyle McMartin223232d2006-04-21 16:54:23 -04002720P: Kyle McMartin
2721M: kyle@parisc-linux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722L: parisc-linux@parisc-linux.org
2723W: http://www.parisc-linux.org/
Kyle McMartin223232d2006-04-21 16:54:23 -04002724T: git kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
2725T: cvs cvs.parisc-linux.org:/var/cvs/linux-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726S: Maintained
2727
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02002728PARAVIRT_OPS INTERFACE
2729P: Jeremy Fitzhardinge
2730M: jeremy@xensource.com
2731P: Chris Wright
2732M: chrisw@sous-sol.org
2733P: Zachary Amsden
2734M: zach@vmware.com
2735P: Rusty Russell
2736M: rusty@rustcorp.com.au
2737L: virtualization@lists.osdl.org
2738L: linux-kernel@vger.kernel.org
2739S: Supported
2740
Jim Cromie1662d322006-10-06 00:43:59 -07002741PC87360 HARDWARE MONITORING DRIVER
2742P: Jim Cromie
2743M: jim.cromie@gmail.com
2744L: lm-sensors@lm-sensors.org
2745S: Maintained
2746
2747PC8736x GPIO DRIVER
2748P: Jim Cromie
2749M: jim.cromie@gmail.com
2750S: Maintained
2751
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06002752PCI ERROR RECOVERY
2753P: Linas Vepstas
2754M: linas@austin.ibm.com
2755L: linux-kernel@vger.kernel.org
2756L: linux-pci@atrey.karlin.mff.cuni.cz
2757S: Supported
2758
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759PCI SOUND DRIVERS (ES1370, ES1371 and SONICVIBES)
2760P: Thomas Sailer
2761M: sailer@ife.ee.ethz.ch
2762L: linux-sound@vger.kernel.org
2763W: http://www.ife.ee.ethz.ch/~sailer/linux/pciaudio.html
2764S: Maintained
2765
2766PCI SUBSYSTEM
2767P: Greg Kroah-Hartman
2768M: gregkh@suse.de
2769L: linux-kernel@vger.kernel.org
2770L: linux-pci@atrey.karlin.mff.cuni.cz
Jody McIntyre6fb04252005-11-18 09:31:06 -08002771T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Supported
2773
2774PCI HOTPLUG CORE
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -07002775P: Kristen Carlson Accardi
2776M: kristen.c.accardi@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777S: Supported
2778
2779PCI HOTPLUG COMPAQ DRIVER
2780P: Greg Kroah-Hartman
2781M: greg@kroah.com
2782S: Maintained
2783
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002784PCIE HOTPLUG DRIVER
2785P: Kristen Carlson Accardi
2786M: kristen.c.accardi@intel.com
2787L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05002788S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07002789
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002791P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07002792L: linux-pcmcia@lists.infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793L: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Jody McIntyre6fb04252005-11-18 09:31:06 -08002794T: git kernel.org:/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07002795S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06002798P: Don Fry
2799M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07002800L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801S: Maintained
2802
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07002803PER-TASK DELAY ACCOUNTING
2804P: Shailabh Nagar
2805M: nagar@watson.ibm.com
2806L: linux-kernel@vger.kernel.org
2807S: Maintained
2808
Jim Cromiedd49d0f2006-03-24 18:08:17 +01002809PERSONALITY HANDLING
2810P: Christoph Hellwig
2811M: hch@infradead.org
2812L: linux-abi-devel@lists.sourceforge.net
2813S: Maintained
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815PHRAM MTD DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02002816P: Jörn Engel
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817M: joern@wh.fh-wedel.de
2818L: linux-mtd@lists.infradead.org
2819S: Maintained
2820
Peter Osterlund249a6772005-09-27 21:45:30 -07002821PKTCDVD DRIVER
2822P: Peter Osterlund
2823M: petero2@telia.com
2824L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07002825S: Maintained
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827POSIX CLOCKS and TIMERS
2828P: George Anzinger
2829M: george@mvista.com
Hormsf1c3ddf2006-01-15 02:18:28 +01002830L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831S: Supported
2832
Eugene Surovegin24682972005-10-14 03:00:53 -07002833POWERPC 4xx EMAC DRIVER
2834P: Eugene Surovegin
2835M: ebs@ebshome.net
2836W: http://kernel.ebshome.net/emac/
2837L: linuxppc-embedded@ozlabs.org
2838L: netdev@vger.kernel.org
2839S: Maintained
2840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841PNP SUPPORT
2842P: Adam Belay
2843M: ambx1@neo.rr.com
2844S: Maintained
2845
Vitaly Wool999445d2007-01-04 13:07:03 +01002846PNXxxxx I2C DRIVER
2847P: Vitaly Wool
2848M: vitalywool@gmail.com
2849L: i2c@lm-sensors.org
2850S: Maintained
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852PPP PROTOCOL DRIVERS AND COMPRESSORS
2853P: Paul Mackerras
2854M: paulus@samba.org
2855L: linux-ppp@vger.kernel.org
2856S: Maintained
2857
2858PPP OVER ATM (RFC 2364)
2859P: Mitchell Blank Jr
2860M: mitch@sfgoth.com
2861S: Maintained
2862
2863PPP OVER ETHERNET
2864P: Michal Ostrowski
2865M: mostrows@speakeasy.net
2866S: Maintained
2867
2868PREEMPTIBLE KERNEL
2869P: Robert Love
2870M: rml@tech9.net
2871L: linux-kernel@vger.kernel.org
2872L: kpreempt-tech@lists.sourceforge.net
2873W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
2874S: Supported
2875
2876PRISM54 WIRELESS DRIVER
2877P: Prism54 Development Team
Michael Bueschc10ca772006-12-15 21:32:44 +01002878M: developers@islsm.org
Johannes Berg724c6b32007-04-23 12:18:20 -07002879L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880W: http://prism54.org
2881S: Maintained
2882
2883PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
2884P: Peter Denison
2885M: promise@pnd-pc.demon.co.uk
2886W: http://www.pnd-pc.demon.co.uk/promise/
2887S: Maintained
2888
Mikael Petterssonb3277df2007-01-10 09:33:53 +01002889PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
2890P: Mikael Pettersson
2891M: mikpe@it.uu.se
2892L: linux-ide@vger.kernel.org
2893S: Maintained
2894
Geoff Levandf58a9d12006-11-23 00:46:51 +01002895PS3 PLATFORM SUPPORT
2896P: Geoff Levand
2897M: geoffrey.levand@am.sony.com
2898L: linuxppc-dev@ozlabs.org
2899L: cbe-oss-dev@ozlabs.org
2900S: Supported
2901
Michael Krufky83202042006-07-03 00:24:18 -07002902PVRUSB2 VIDEO4LINUX DRIVER
2903P: Mike Isely
2904M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03002905L: pvrusb2@isely.net (subscribers-only)
Michael Krufky83202042006-07-03 00:24:18 -07002906L: video4linux-list@redhat.com
2907W: http://www.isely.net/pvrusb2/
2908S: Maintained
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910PXA2xx SUPPORT
2911P: Nicolas Pitre
2912M: nico@cam.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07002913L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914S: Maintained
2915
Pierre Ossman272f1332007-05-14 21:25:26 +02002916PXA MMCI DRIVER
2917S: Orphan
2918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919QLOGIC QLA2XXX FC-SCSI DRIVER
2920P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08002921M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922L: linux-scsi@vger.kernel.org
2923S: Supported
2924
Ron Mercer5a4faa872006-07-25 00:40:21 -07002925QLOGIC QLA3XXX NETWORK DRIVER
2926P: Ron Mercer
2927M: linux-driver@qlogic.com
2928L: netdev@vger.kernel.org
2929S: Supported
2930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931QNX4 FILESYSTEM
2932P: Anders Larsen
2933M: al@alarsen.net
2934L: linux-kernel@vger.kernel.org
2935W: http://www.alarsen.net/linux/qnx4fs/
2936S: Maintained
2937
2938RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002939P: Benjamin Herrenschmidt
2940M: benh@kernel.crashing.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002941L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942S: Maintained
2943
2944RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07002945P: Paul Mackerras
2946M: paulus@samba.org
Randy Dunlap5cd307c2006-12-08 02:41:01 -08002947L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948S: Maintained
2949
2950RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
2951P: Corey Thomas
2952M: corey@world.std.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002953L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954S: Maintained
2955
Matt Mackall9e95ce22005-04-16 15:25:56 -07002956RANDOM NUMBER DRIVER
2957P: Matt Mackall
2958M: mpm@selenic.com
2959S: Maintained
2960
Matt Porter394b7012005-11-07 01:00:15 -08002961RAPIDIO SUBSYSTEM
2962P: Matt Porter
2963M: mporter@kernel.crashing.org
2964L: linux-kernel@vger.kernel.org
2965S: Maintained
2966
Josh Triplett595182b2006-10-04 02:17:21 -07002967READ-COPY UPDATE (RCU)
2968P: Dipankar Sarma
2969M: dipankar@in.ibm.com
2970W: http://www.rdrop.com/users/paulmck/rclock/
2971L: linux-kernel@vger.kernel.org
2972S: Supported
2973
2974RCUTORTURE MODULE
2975P: Josh Triplett
2976M: josh@freedesktop.org
2977L: linux-kernel@vger.kernel.org
2978S: Maintained
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980REAL TIME CLOCK DRIVER
2981P: Paul Gortmaker
2982M: p_gortmaker@yahoo.com
2983L: linux-kernel@vger.kernel.org
2984S: Maintained
2985
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002986REAL TIME CLOCK (RTC) SUBSYSTEM
2987P: Alessandro Zummo
2988M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08002989L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08002990S: Maintained
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992REISERFS FILE SYSTEM
2993P: Hans Reiser
2994M: reiserfs-dev@namesys.com
2995L: reiserfs-list@namesys.com
2996W: http://www.namesys.com
2997S: Supported
2998
2999ROCKETPORT DRIVER
3000P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001W: http://www.comtrol.com
3002S: Maintained
3003
3004ROSE NETWORK LAYER
3005P: Ralf Baechle
3006M: ralf@linux-mips.org
3007L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003008W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009S: Maintained
3010
3011RISCOM8 DRIVER
3012S: Orphan
3013
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003014S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003015P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08003016M: adaplas@gmail.com
Randy Dunlap5cd307c2006-12-08 02:41:01 -08003017L: linux-fbdev-devel@lists.sourceforge.net (subscribers-only)
Jim Cromiece00f852006-11-30 04:49:44 +01003018S: Maintained
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020S390
3021P: Martin Schwidefsky
3022M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02003023P: Heiko Carstens
3024M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003026L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003027W: http://www.ibm.com/developerworks/linux/linux390/
3028S: Supported
3029
3030S390 NETWORK DRIVERS
3031P: Frank Pavlic
3032M: fpavlic@de.ibm.com
3033M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003034L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003035W: http://www.ibm.com/developerworks/linux/linux390/
3036S: Supported
3037
3038S390 ZFCP DRIVER
Swen Schillig9cbb8892006-09-21 16:29:31 +02003039P: Swen Schillig
3040M: swen@vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08003041M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01003042L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08003043W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044S: Supported
3045
3046SAA7146 VIDEO4LINUX-2 DRIVER
3047P: Michael Hunold
3048M: michael@mihu.de
3049W: http://www.mihu.de/linux/saa7146
3050S: Maintained
3051
3052SBPCD CDROM DRIVER
3053P: Eberhard Moenkeberg
3054M: emoenke@gwdg.de
3055L: linux-kernel@vger.kernel.org
3056S: Maintained
3057
3058SC1200 WDT DRIVER
3059P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07003060M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061S: Maintained
3062
3063SCHEDULER
3064P: Ingo Molnar
3065M: mingo@elte.hu
3066P: Robert Love [the preemptible kernel bits]
3067M: rml@tech9.net
3068L: linux-kernel@vger.kernel.org
3069S: Maintained
3070
3071SCSI CDROM DRIVER
3072P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003073M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074L: linux-scsi@vger.kernel.org
3075W: http://www.kernel.dk
3076S: Maintained
3077
3078SCSI SG DRIVER
3079P: Doug Gilbert
3080M: dgilbert@interlog.com
3081L: linux-scsi@vger.kernel.org
3082W: http://www.torque.net/sg
3083S: Maintained
3084
3085SCSI SUBSYSTEM
3086P: James E.J. Bottomley
3087M: James.Bottomley@SteelEye.com
3088L: linux-scsi@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003089T: git kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090S: Maintained
3091
3092SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02003093P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094M: Kai.Makisara@kolumbus.fi
3095L: linux-scsi@vger.kernel.org
3096S: Maintained
3097
3098SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003099P: Vlad Yasevich
3100M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01003101P: Sridhar Samudrala
3102M: sri@us.ibm.com
3103L: lksctp-developers@lists.sourceforge.net
Sridhar Samudrala5f858132007-03-23 11:39:51 -07003104W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01003105S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07003108P: Jim Cromie
3109M: jim.cromie@gmail.com
3110S: Odd Fixes
3111
3112SCx200 GPIO DRIVER
3113P: Jim Cromie
3114M: jim.cromie@gmail.com
3115S: Maintained
3116
3117SCx200 HRT CLOCKSOURCE DRIVER
3118P: Jim Cromie
3119M: jim.cromie@gmail.com
3120S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
3122SECURITY CONTACT
3123P: Security Officers
3124M: security@kernel.org
3125S: Supported
3126
3127SELINUX SECURITY MODULE
3128P: Stephen Smalley
Stephen Smalley62cfe7e2006-02-04 23:27:42 -08003129M: sds@tycho.nsa.gov
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003131M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05003132P: Eric Paris
3133M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134L: linux-kernel@vger.kernel.org (kernel issues)
Stephen Smalley588a3152007-02-23 09:20:09 -05003135L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136W: http://www.nsa.gov/selinux
3137S: Supported
3138
Jiri Slabycef2cf02007-05-08 00:31:45 -07003139SENSABLE PHANTOM
3140P: Jiri Slaby
3141M: jirislaby@gmail.com
3142S: Maintained
3143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144SERIAL ATA (SATA) SUBSYSTEM:
3145P: Jeff Garzik
3146M: jgarzik@pobox.com
3147L: linux-ide@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003148T: git kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149S: Supported
3150
3151SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
3152P: Pat Gefre
3153M: pfg@sgi.com
3154L: linux-ia64@vger.kernel.org
3155S: Supported
3156
3157SGI VISUAL WORKSTATION 320 AND 540
3158P: Andrey Panin
3159M: pazke@donpac.ru
3160L: linux-visws-devel@lists.sf.net
3161W: http://linux-visws.sf.net
3162S: Maintained for 2.6.
3163
3164SIMTEC EB110ATX (Chalice CATS)
3165P: Ben Dooks
3166P: Vincent Sanders
3167M: support@simtec.co.uk
3168W: http://www.simtec.co.uk/products/EB110ATX/
3169S: Supported
3170
3171SIMTEC EB2410ITX (BAST)
3172P: Ben Dooks
3173P: Vincent Sanders
3174M: support@simtec.co.uk
3175W: http://www.simtec.co.uk/products/EB2410ITX/
3176S: Supported
3177
Francois Romieu92aab3c2005-07-30 13:11:18 +02003178SIS 190 ETHERNET DRIVER
3179P: Francois Romieu
3180M: romieu@fr.zoreil.com
3181L: netdev@vger.kernel.org
3182S: Maintained
3183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184SIS 5513 IDE CONTROLLER DRIVER
3185P: Lionel Bouton
3186M: Lionel.Bouton@inet6.fr
3187W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
3188W: http://gyver.homeip.net/sis5513/index.html
3189S: Maintained
3190
3191SIS 900/7016 FAST ETHERNET DRIVER
3192P: Daniele Venzano
3193M: venza@brownhat.org
3194W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07003195L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196S: Maintained
3197
3198SIS FRAMEBUFFER DRIVER
3199P: Thomas Winischhofer
3200M: thomas@winischhofer.net
3201W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003202S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
3204SIS USB2VGA DRIVER
3205P: Thomas Winischhofer
3206M: thomas@winischhofer.net
3207W: http://www.winischhofer.at/linuxsisusbvga.shtml
3208S: Maintained
3209
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210SMC91x ETHERNET DRIVER
3211P: Nicolas Pitre
3212M: nico@cam.org
3213S: Maintained
3214
Daniel Drake8f0f8502006-07-18 22:00:25 +01003215SOFTMAC LAYER (IEEE 802.11)
3216P: Johannes Berg
3217M: johannes@sipsolutions.net
3218P: Joe Jezak
3219M: josejx@gentoo.org
3220P: Daniel Drake
3221M: dsd@gentoo.org
3222W: http://softmac.sipsolutions.net/
Johannes Berg724c6b32007-04-23 12:18:20 -07003223L: linux-wireless@vger.kernel.org
Daniel Drake8f0f8502006-07-18 22:00:25 +01003224S: Maintained
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226SOFTWARE RAID (Multiple Disks) SUPPORT
3227P: Ingo Molnar
3228M: mingo@redhat.com
3229P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08003230M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08003232S: Supported
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234SOFTWARE SUSPEND:
3235P: Pavel Machek
3236M: pavel@suse.cz
David Brownellf318a632007-04-23 14:41:06 -07003237L: linux-pm@lists.linux-foundation.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238S: Maintained
3239
3240SONIC NETWORK DRIVER
3241P: Thomas Bogendoerfer
3242M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003243L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244S: Maintained
3245
3246SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01003247P: Mattia Dongili
3248M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01003249L: linux-acpi@vger.kernel.org
3250W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251S: Maintained
3252
3253SOUND
3254P: Jaroslav Kysela
3255M: perex@suse.cz
Takashi Iwai82622042007-04-16 12:32:52 +02003256L: alsa-devel@alsa-project.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257S: Maintained
3258
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003259SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT
3260P: Liam Girdwood
3261M: liam.girdwood@wolfsonmicro.com
Takashi Iwai82622042007-04-16 12:32:52 +02003262L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02003263S: Supported
3264
Kumar Gala025c3982006-04-02 16:05:54 -05003265SPI SUBSYSTEM
3266P: David Brownell
3267M: dbrownell@users.sourceforge.net
3268L: spi-devel-general@lists.sourceforge.net
3269S: Maintained
3270
Steven Rostedt855f46a2006-08-05 12:14:50 -07003271STABLE BRANCH:
3272P: Greg Kroah-Hartman
3273M: greg@kroah.com
3274P: Chris Wright
3275M: chrisw@sous-sol.org
3276L: stable@kernel.org
3277S: Maintained
3278
Kylene Hall1c72d462005-05-01 08:59:13 -07003279TPM DEVICE DRIVER
3280P: Kylene Hall
3281M: kjhall@us.ibm.com
3282W: http://tpmdd.sourceforge.net
Marcel Selhorstd3a7b6d2007-03-16 13:38:31 -08003283P: Marcel Selhorst
3284M: tpm@selhorst.net
3285W: http://www.prosec.rub.de/tpm/
Stephen Rothwell3bd2aad2007-05-15 01:41:36 -07003286L: tpmdd-devel@lists.sourceforge.net
Kylene Hall1c72d462005-05-01 08:59:13 -07003287S: Maintained
3288
Mark Gross1a80ba82005-10-30 15:02:55 -08003289Telecom Clock Driver for MCPL0010
Jim Cromiece00f852006-11-30 04:49:44 +01003290P: Mark Gross
3291M: mark.gross@intel.com
3292S: Supported
Mark Gross1a80ba82005-10-30 15:02:55 -08003293
Chris Zankel48b415c2005-06-23 22:01:07 -07003294TENSILICA XTENSA PORT (xtensa):
3295P: Chris Zankel
3296M: chris@zankel.net
3297S: Maintained
3298
Henrique de Moraes Holschuh756970a2007-03-29 01:58:44 -03003299THINKPAD ACPI EXTRAS DRIVER
3300P: Henrique de Moraes Holschuh
3301M: ibm-acpi@hmh.eng.br
3302L: ibm-acpi-devel@lists.sourceforge.net
3303W: http://ibm-acpi.sourceforge.net
3304W: http://thinkwiki.org/wiki/Ibm-acpi
3305T: git repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
3306S: Maintained
3307
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308UltraSPARC (sparc64):
3309P: David S. Miller
3310M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311L: sparclinux@vger.kernel.org
Josh Boyer1adc1232005-11-23 15:44:15 -08003312T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313S: Maintained
3314
3315SHARP LH SUPPORT (LH7952X & LH7A40X)
3316P: Marc Singer
3317M: elf@buici.com
3318W: http://projects.buici.com/arm
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07003319L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320S: Maintained
3321
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003322SHPC HOTPLUG DRIVER
3323P: Kristen Carlson Accardi
3324M: kristen.c.accardi@intel.com
3325L: pcihpd-discuss@lists.sourceforge.net
Len Brown8b59a452007-01-08 19:03:28 -05003326S: Supported
Kristen Accardi8cf4c192005-08-16 15:16:10 -07003327
Pierre Ossmand129bce2006-03-24 03:18:17 -08003328SECURE DIGITAL HOST CONTROLLER INTERFACE DRIVER
3329P: Pierre Ossman
3330M: drzeus-sdhci@drzeus.cx
3331L: sdhci-devel@list.drzeus.cx
3332W: http://mmc.drzeus.cx/wiki/Linux/Drivers/sdhci
3333S: Maintained
3334
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003335SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
3336P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003337M: shemminger@linux-foundation.org
Stephen Hemminger4b1ac9ab2005-09-21 09:55:41 -07003338L: netdev@vger.kernel.org
3339S: Maintained
3340
Chris Boot1a87d942006-07-10 04:45:34 -07003341SOEKRIS NET48XX LED SUPPORT
3342P: Chris Boot
3343M: bootc@bootc.net
3344S: Maintained
3345
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346SPARC (sparc32):
3347P: William L. Irwin
3348M: wli@holomorphy.com
3349L: sparclinux@vger.kernel.org
3350S: Maintained
3351
3352SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
3353P: Roger Wolff
3354M: R.E.Wolff@BitWizard.nl
3355L: linux-kernel@vger.kernel.org ?
3356S: Supported
3357
Jim Lewis2752e402006-09-29 02:01:19 -07003358SPIDERNET NETWORK DRIVER for CELL
Linas Vepstasfa302482007-02-20 16:45:27 -06003359P: Linas Vepstas
3360M: linas@austin.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07003361L: netdev@vger.kernel.org
3362S: Supported
3363
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364SRM (Alpha) environment access
3365P: Jan-Benedict Glaw
3366M: jbglaw@lug-owl.de
3367L: linux-kernel@vger.kernel.org
3368S: Maintained
3369
3370STARFIRE/DURALAN NETWORK DRIVER
3371P: Ion Badulescu
3372M: ionut@cs.columbia.edu
3373S: Maintained
3374
3375STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
3376W: http://mosquitonet.Stanford.EDU/strip.html
3377S: Unsupported ?
3378
3379STRADIS MPEG-2 DECODER DRIVER
3380P: Nathan Laredo
3381M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382W: http://www.stradis.com/
3383S: Maintained
3384
3385SUPERH (sh)
3386P: Paul Mundt
3387M: lethal@linux-sh.org
Matthew Wilcox3b5e0cb2006-09-29 02:01:30 -07003388L: linuxsh-dev@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390S: Maintained
3391
3392SUPERH64 (sh64)
3393P: Paul Mundt
3394M: lethal@linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395L: linuxsh-shmedia-dev@lists.sourceforge.net
3396W: http://www.linux-sh.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397S: Maintained
3398
3399SUN3/3X
3400P: Sam Creasey
3401M: sammy@sammy.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402W: http://sammy.net/sun3/
3403S: Maintained
3404
3405SVGA HANDLING
3406P: Martin Mares
3407M: mj@ucw.cz
3408L: linux-video@atrey.karlin.mff.cuni.cz
3409S: Maintained
3410
3411SYSV FILESYSTEM
3412P: Christoph Hellwig
3413M: hch@infradead.org
3414S: Maintained
3415
Stephen Hemminger781b456a2006-07-10 20:25:29 -07003416TC CLASSIFIER
3417P: Jamal Hadi Salim
3418M: hadi@cyberus.ca
3419L: netdev@vger.kernel.org
3420S: Maintained
3421
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07003422TCP LOW PRIORITY MODULE
3423P: Wong Hoi Sing, Edison
3424M: hswong3i@gmail.com
3425P: Hung Hing Lun, Mike
3426M: hlhung3i@gmail.com
3427W: http://tcp-lp-mod.sourceforge.net/
3428S: Maintained
3429
Alex Dubov4020f2d2006-10-04 02:15:37 -07003430TI FLASH MEDIA INTERFACE DRIVER
3431P: Alex Dubov
3432M: oakad@yahoo.com
3433S: Maintained
3434
Syed Khasim9f9c24f2007-05-16 01:07:22 +02003435TI OMAP MMC INTERFACE DRIVER
3436P: Carlos Aguiar, Anderson Briglia and Syed Khasim
3437M: linux-omap-open-source@linux.omap.com
3438W: http://linux.omap.com
3439W: http://www.muru.com/linux/omap/
3440S: Maintained
3441
Michael Buesch844dd052006-06-26 00:24:59 -07003442TI OMAP RANDOM NUMBER GENERATOR SUPPORT
3443P: Deepak Saxena
3444M: dsaxena@plexity.net
3445S: Maintained
3446
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07003447TASKSTATS STATISTICS INTERFACE
3448P: Shailabh Nagar
3449M: nagar@watson.ibm.com
3450L: linux-kernel@vger.kernel.org
3451S: Maintained
3452
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453TI PARALLEL LINK CABLE DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003454P: Romain Lievin
3455M: roms@lpg.ticalc.org
3456S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Per Lidene86eaa32006-01-12 16:45:18 +01003458TIPC NETWORK LAYER
3459P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01003460M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003461P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01003462M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01003463P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01003464M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01003465L: tipc-discussion@lists.sourceforge.net
3466W: http://tipc.sourceforge.net/
3467W: http://tipc.cslab.ericsson.net/
3468T: git tipc.cslab.ericsson.net:/pub/git/tipc.git
3469S: Maintained
3470
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471TLAN NETWORK DRIVER
3472P: Samuel Chessman
3473M: chessman@tux.org
3474L: tlan-devel@lists.sourceforge.net
3475W: http://sourceforge.net/projects/tlan/
3476S: Maintained
3477
3478TOKEN-RING NETWORK DRIVER
3479P: Mike Phillips
3480M: mikep@linuxtr.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003481L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482L: linux-tr@linuxtr.net
3483W: http://www.linuxtr.net
3484S: Maintained
3485
3486TOSHIBA ACPI EXTRAS DRIVER
3487P: John Belmonte
3488M: toshiba_acpi@memebeam.org
3489W: http://memebeam.org/toys/ToshibaAcpiDriver
3490S: Maintained
3491
3492TOSHIBA SMM DRIVER
3493P: Jonathan Buzzard
3494M: jonathan@buzzard.org.uk
3495L: tlinux-users@tce.toshiba-dme.co.jp
3496W: http://www.buzzard.org.uk/toshiba/
3497S: Maintained
3498
3499TRIDENT 4DWAVE/SIS 7018 PCI AUDIO CORE
3500P: Muli Ben-Yehuda
3501M: mulix@mulix.org
3502L: linux-kernel@vger.kernel.org
3503S: Maintained
3504
3505TRIVIAL PATCHES
Jim Cromiece00f852006-11-30 04:49:44 +01003506P: Adrian Bunk
3507M: trivial@kernel.org
3508L: linux-kernel@vger.kernel.org
3509W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/
3510T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git
3511S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
3513TMS380 TOKEN-RING NETWORK DRIVER
3514P: Adam Fritzler
3515M: mid@auk.cx
3516L: linux-tr@linuxtr.net
3517W: http://www.auk.cx/tms380tr/
3518S: Maintained
3519
3520TULIP NETWORK DRIVER
Valerie Henson6b928012006-09-08 11:15:34 -07003521P: Valerie Henson
3522M: val_henson@linux.intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523L: tulip-users@lists.sourceforge.net
3524W: http://sourceforge.net/projects/tulip/
3525S: Maintained
3526
3527TUN/TAP driver
3528P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08003529M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530L: vtun@office.satix.net
3531W: http://vtun.sourceforge.net/tun
3532S: Maintained
3533
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08003534TURBOCHANNEL SUBSYSTEM
3535P: Maciej W. Rozycki
3536M: macro@linux-mips.org
3537S: Maintained
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539U14-34F SCSI DRIVER
3540P: Dario Ballabio
3541M: ballabio_dario@emc.com
3542L: linux-scsi@vger.kernel.org
3543S: Maintained
3544
3545UDF FILESYSTEM
3546P: Ben Fennema
3547M: bfennema@falcon.csc.calpoly.edu
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548W: http://linux-udf.sourceforge.net
3549S: Maintained
3550
3551UNIFORM CDROM DRIVER
3552P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02003553M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554L: linux-kernel@vger.kernel.org
3555W: http://www.kernel.dk
3556S: Maintained
3557
3558USB ACM DRIVER
3559P: Oliver Neukum
3560M: oliver@neukum.name
3561L: linux-usb-users@lists.sourceforge.net
3562L: linux-usb-devel@lists.sourceforge.net
3563S: Maintained
3564
3565USB BLOCK DRIVER (UB ub)
3566P: Pete Zaitcev
3567M: zaitcev@redhat.com
3568L: linux-kernel@vger.kernel.org
3569L: linux-usb-devel@lists.sourceforge.net
3570S: Supported
3571
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572USB CDC ETHERNET DRIVER
3573P: Greg Kroah-Hartman
3574M: greg@kroah.com
3575L: linux-usb-users@lists.sourceforge.net
3576L: linux-usb-devel@lists.sourceforge.net
3577S: Maintained
3578W: http://www.kroah.com/linux-usb/
3579
Peter Korsgaardd0374f42007-02-16 17:03:54 +01003580USB DAVICOM DM9601 DRIVER
3581P: Peter Korsgaard
3582M: jacmet@sunsite.dk
3583L: linux-usb-devel@lists.sourceforge.net
3584W: http://www.linux-usb.org/usbnet
3585S: Maintained
3586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587USB EHCI DRIVER
3588P: David Brownell
3589M: dbrownell@users.sourceforge.net
3590L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003591S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Luca Risolia7ce08c92006-01-11 02:06:59 +00003593USB ET61X[12]51 DRIVER
3594P: Luca Risolia
3595M: luca.risolia@studio.unibo.it
3596L: linux-usb-devel@lists.sourceforge.net
3597L: video4linux-list@redhat.com
3598W: http://www.linux-projects.org
3599S: Maintained
3600
David Brownell69ae9e32006-11-14 02:03:31 -08003601USB GADGET/PERIPHERAL SUBSYSTEM
3602P: David Brownell
3603M: dbrownell@users.sourceforge.net
3604L: linux-usb-devel@lists.sourceforge.net
3605W: http://www.linux-usb.org/gadget
3606S: Maintained
3607
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608USB HID/HIDBP DRIVERS
Jiri Kosina641266fd2007-01-15 09:56:21 +01003609P: Jiri Kosina
3610M: jkosina@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611L: linux-usb-devel@lists.sourceforge.net
Jiri Kosinaa4dff392007-02-27 17:40:09 +01003612T: git kernel.org:/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613S: Maintained
3614
3615USB HUB DRIVER
3616P: Johannes Erdfelt
3617M: johannes@erdfelt.com
3618L: linux-usb-users@lists.sourceforge.net
3619L: linux-usb-devel@lists.sourceforge.net
3620S: Maintained
3621
Olav Kongas959eea22005-11-03 17:38:14 +02003622USB ISP116X DRIVER
3623P: Olav Kongas
3624M: ok@artecdesign.ee
3625L: linux-usb-devel@lists.sourceforge.net
3626S: Maintained
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628USB KAWASAKI LSI DRIVER
3629P: Oliver Neukum
3630M: oliver@neukum.name
3631L: linux-usb-users@lists.sourceforge.net
3632L: linux-usb-devel@lists.sourceforge.net
3633S: Maintained
3634
3635USB MASS STORAGE DRIVER
3636P: Matthew Dharm
3637M: mdharm-usb@one-eyed-alien.net
3638L: linux-usb-users@lists.sourceforge.net
Matthew Dharm8836aeb2005-12-04 22:03:47 -08003639L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640S: Maintained
3641W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
3642
3643USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08003644P: David Brownell
3645M: dbrownell@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646L: linux-usb-users@lists.sourceforge.net
3647L: linux-usb-devel@lists.sourceforge.net
David Brownell23d8c902006-12-05 03:10:08 -08003648S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Matthias Urlichsba460e42005-07-14 00:33:47 -07003650USB OPTION-CARD DRIVER
3651P: Matthias Urlichs
3652M: smurf@smurf.noris.de
3653L: linux-usb-devel@lists.sourceforge.net
3654S: Maintained
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656USB OV511 DRIVER
3657P: Mark McClelland
3658M: mmcclell@bigfoot.com
3659L: linux-usb-users@lists.sourceforge.net
3660L: linux-usb-devel@lists.sourceforge.net
3661W: http://alpha.dyndns.org/ov511/
3662S: Maintained
3663
3664USB PEGASUS DRIVER
3665P: Petko Manolov
3666M: petkan@users.sourceforge.net
3667L: linux-usb-users@lists.sourceforge.net
3668L: linux-usb-devel@lists.sourceforge.net
3669W: http://pegasus2.sourceforge.net/
3670S: Maintained
3671
3672USB PRINTER DRIVER
3673P: Vojtech Pavlik
3674M: vojtech@suse.cz
3675L: linux-usb-users@lists.sourceforge.net
3676L: linux-usb-devel@lists.sourceforge.net
3677S: Maintained
3678
3679USB RTL8150 DRIVER
3680P: Petko Manolov
3681M: petkan@users.sourceforge.net
3682L: linux-usb-users@lists.sourceforge.net
3683L: linux-usb-devel@lists.sourceforge.net
3684W: http://pegasus2.sourceforge.net/
3685S: Maintained
3686
3687USB SE401 DRIVER
3688P: Jeroen Vreeken
3689M: pe1rxq@amsat.org
3690L: linux-usb-users@lists.sourceforge.net
3691L: linux-usb-devel@lists.sourceforge.net
3692W: http://www.chello.nl/~j.vreeken/se401/
3693S: Maintained
3694
3695USB SERIAL CYBERJACK DRIVER
3696P: Matthias Bruestle and Harald Welte
3697M: support@reiner-sct.com
3698W: http://www.reiner-sct.de/support/treiber_cyberjack.php
3699S: Maintained
3700
3701USB SERIAL DIGI ACCELEPORT DRIVER
3702P: Peter Berger and Al Borchers
3703M: pberger@brimson.com
3704M: alborchers@steinerpoint.com
3705L: linux-usb-users@lists.sourceforge.net
3706L: linux-usb-devel@lists.sourceforge.net
3707S: Maintained
3708
3709USB SERIAL DRIVER
3710P: Greg Kroah-Hartman
3711M: gregkh@suse.de
3712L: linux-usb-users@lists.sourceforge.net
3713L: linux-usb-devel@lists.sourceforge.net
3714S: Supported
3715
3716USB SERIAL BELKIN F5U103 DRIVER
3717P: William Greathouse
3718M: wgreathouse@smva.com
3719L: linux-usb-users@lists.sourceforge.net
3720L: linux-usb-devel@lists.sourceforge.net
3721S: Maintained
3722
3723USB SERIAL CYPRESS M8 DRIVER
3724P: Lonnie Mendez
3725M: dignome@gmail.com
3726L: linux-usb-users@lists.sourceforge.net
3727L: linux-usb-devel@lists.sourceforge.net
3728S: Maintained
3729W: http://geocities.com/i0xox0i
3730W: http://firstlight.net/cvs
3731
3732USB SERIAL CYBERJACK PINPAD/E-COM DRIVER
3733L: linux-usb-users@lists.sourceforge.net
3734L: linux-usb-devel@lists.sourceforge.net
3735S: Maintained
3736
3737USB AUERSWALD DRIVER
3738P: Wolfgang Muees
3739M: wolfgang@iksw-muees.de
3740L: linux-usb-users@lists.sourceforge.net
3741L: linux-usb-devel@lists.sourceforge.net
3742S: Maintained
3743
3744USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
3745P: Gary Brubaker
3746M: xavyer@ix.netcom.com
3747L: linux-usb-users@lists.sourceforge.net
3748L: linux-usb-devel@lists.sourceforge.net
3749S: Maintained
3750
3751USB SERIAL KEYSPAN DRIVER
3752P: Greg Kroah-Hartman
3753M: greg@kroah.com
3754L: linux-usb-users@lists.sourceforge.net
3755L: linux-usb-devel@lists.sourceforge.net
3756W: http://www.kroah.com/linux/
3757S: Maintained
3758
3759USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04003760P: Support Department
3761M: support@connecttech.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762L: linux-usb-users@lists.sourceforge.net
3763L: linux-usb-devel@lists.sourceforge.net
3764W: http://www.connecttech.com
3765S: Supported
3766
Luca Risoliaf423b9a2007-03-26 16:12:04 -03003767USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768P: Luca Risolia
3769M: luca.risolia@studio.unibo.it
3770L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003771L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772W: http://www.linux-projects.org
3773S: Maintained
3774
3775USB SUBSYSTEM
3776P: Greg Kroah-Hartman
3777M: gregkh@suse.de
3778L: linux-usb-users@lists.sourceforge.net
3779L: linux-usb-devel@lists.sourceforge.net
3780W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08003781T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782S: Supported
3783
3784USB UHCI DRIVER
3785P: Alan Stern
3786M: stern@rowland.harvard.edu
3787L: linux-usb-users@lists.sourceforge.net
3788L: linux-usb-devel@lists.sourceforge.net
3789S: Maintained
3790
David Brownell69ae9e32006-11-14 02:03:31 -08003791USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792P: David Brownell
3793M: dbrownell@users.sourceforge.net
3794L: linux-usb-devel@lists.sourceforge.net
David Brownell69ae9e32006-11-14 02:03:31 -08003795W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796S: Maintained
3797
3798USB W996[87]CF DRIVER
3799P: Luca Risolia
3800M: luca.risolia@studio.unibo.it
3801L: linux-usb-devel@lists.sourceforge.net
Luca Risolia7ce08c92006-01-11 02:06:59 +00003802L: video4linux-list@redhat.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803W: http://www.linux-projects.org
3804S: Maintained
3805
Luca Risolia60f78052006-02-06 16:29:35 +00003806USB ZC0301 DRIVER
3807P: Luca Risolia
3808M: luca.risolia@studio.unibo.it
3809L: linux-usb-devel@lists.sourceforge.net
3810L: video4linux-list@redhat.com
3811W: http://www.linux-projects.org
3812S: Maintained
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814USB ZD1201 DRIVER
3815P: Jeroen Vreeken
3816M: pe1rxq@amsat.org
3817L: linux-usb-users@lists.sourceforge.net
3818L: linux-usb-devel@lists.sourceforge.net
3819W: http://linux-lc100020.sourceforge.net
3820S: Maintained
3821
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003822USB ZR364XX DRIVER
3823P: Antoine Jacquet
3824M: royale@zerezo.com
3825L: linux-usb-devel@lists.sourceforge.net
3826L: video4linux-list@redhat.com
3827W: http://royale.zerezo.com/zr364xx/
3828S: Maintained
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830USER-MODE LINUX
3831P: Jeff Dike
3832M: jdike@karaya.com
3833L: user-mode-linux-devel@lists.sourceforge.net
3834L: user-mode-linux-user@lists.sourceforge.net
3835W: http://user-mode-linux.sourceforge.net
3836S: Maintained
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838FAT/VFAT/MSDOS FILESYSTEM:
3839P: OGAWA Hirofumi
3840M: hirofumi@mail.parknet.co.jp
3841L: linux-kernel@vger.kernel.org
3842S: Maintained
3843
3844VIA 82Cxxx AUDIO DRIVER (old OSS driver)
3845P: Jeff Garzik
3846S: Odd fixes
3847
3848VIA RHINE NETWORK DRIVER
3849P: Roger Luethi
3850M: rl@hellgate.ch
3851S: Maintained
3852
Jean Delvare32c0a522005-09-22 21:47:58 +02003853VIAPRO SMBUS DRIVER
3854P: Jean Delvare
3855M: khali@linux-fr.org
Jean Delvare5d925fe2006-07-01 17:14:32 +02003856L: i2c@lm-sensors.org
Jean Delvare32c0a522005-09-22 21:47:58 +02003857S: Maintained
3858
Francois Romieu01f20732007-01-26 00:57:17 -08003859VIA VELOCITY NETWORK DRIVER
3860P: Francois Romieu
3861M: romieu@fr.zoreil.com
3862L: netdev@vger.kernel.org
3863S: Maintained
3864
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865UCLINUX (AND M68KNOMMU)
3866P: Greg Ungerer
3867M: gerg@uclinux.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868W: http://www.uclinux.org/
Adrian Bunkd660a742005-06-25 14:59:35 -07003869L: uclinux-dev@uclinux.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870S: Maintained
3871
3872UCLINUX FOR NEC V850
3873P: Miles Bader
3874M: uclinux-v850@lsi.nec.co.jp
3875W: http://www.ic.nec.co.jp/micro/uclinux/eng/
3876W: http://www.ee.nec.de/uclinux/
3877S: Supported
3878
3879UCLINUX FOR RENESAS H8/300
3880P: Yoshinori Sato
3881M: ysato@users.sourceforge.jp
3882W: http://uclinux-h8.sourceforge.jp/
3883S: Supported
3884
Evgeniy Dushistov719d9692007-02-02 11:36:34 +03003885UFS FILESYSTEM
3886P: Evgeniy Dushistov
3887M: dushistov@mail.ru
3888L: linux-kernel@vger.kernel.org
3889S: Maintained
3890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891USB DIAMOND RIO500 DRIVER
3892P: Cesar Miquel
3893M: miquel@df.uba.ar
3894L: rio500-users@lists.sourceforge.net
3895W: http://rio500.sourceforge.net
3896S: Maintained
3897
3898VIDEO FOR LINUX
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003899P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02003900M: mchehab@infradead.org
3901M: v4l-dvb-maintainer@linuxtv.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902L: video4linux-list@redhat.com
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003903W: http://linuxtv.org
Mauro Carvalho Chehabecfa4fd2005-12-19 09:15:13 -02003904T: git kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07003905S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Juerg Haefligerab413192006-09-24 20:54:04 +02003907VT1211 HARDWARE MONITOR DRIVER
3908P: Juerg Haefliger
3909M: juergh@gmail.com
3910L: lm-sensors@lm-sensors.org
3911S: Maintained
3912
Roger Lucas1de9e372005-11-26 20:20:05 +01003913VT8231 HARDWARE MONITOR DRIVER
3914P: Roger Lucas
3915M: roger@planbit.co.uk
3916L: lm-sensors@lm-sensors.org
3917S: Maintained
3918
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919W1 DALLAS'S 1-WIRE BUS
3920P: Evgeniy Polyakov
3921M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922S: Maintained
3923
Charles Spirakis13927072006-07-05 18:05:15 +02003924W83791D HARDWARE MONITORING DRIVER
3925P: Charles Spirakis
3926M: bezaur@gmail.com
3927L: lm-sensors@lm-sensors.org
3928S: Maintained
3929
Rudolf Marek61db0112006-12-12 18:18:30 +01003930W83793 HARDWARE MONITORING DRIVER
3931P: Rudolf Marek
3932M: r.marek@assembler.cz
3933L: lm-sensors@lm-sensors.org
3934S: Maintained
3935
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936W83L51xD SD/MMC CARD INTERFACE DRIVER
3937P: Pierre Ossman
3938M: drzeus-wbsd@drzeus.cx
Pierre Ossmanfac88992007-01-27 13:18:26 +01003939L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940W: http://projects.drzeus.cx/wbsd
3941S: Maintained
3942
Wim Van Sebroeck35277612006-01-15 21:21:14 +01003943WATCHDOG DEVICE DRIVERS
3944P: Wim Van Sebroeck
3945M: wim@iguana.be
3946T: git kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
3947S: Maintained
3948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
3950P: Jean Tourrilhes
3951M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003952L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
3954S: Maintained
3955
3956WD7000 SCSI DRIVER
3957P: Miroslav Zagorac
3958M: zaga@fly.cc.fer.hr
3959L: linux-scsi@vger.kernel.org
3960S: Maintained
3961
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05003962WISTRON LAPTOP BUTTON DRIVER
3963P: Miloslav Trmac
3964M: mitr@volny.cz
3965S: Maintained
3966
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967WL3501 WIRELESS PCMCIA CARD DRIVER
3968P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003969M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07003970L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03003971W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972S: Maintained
3973
3974X.25 NETWORK LAYER
3975P: Henner Eisen
3976M: eis@baty.hanse.de
3977L: linux-x25@vger.kernel.org
3978S: Maintained
3979
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02003980XEN HYPERVISOR INTERFACE
3981P: Jeremy Fitzhardinge
3982M: jeremy@xensource.com
3983P: Chris Wright
3984M: chrisw@sous-sol.org
3985L: virtualization@lists.osdl.org
3986L: xen-devel@lists.xensource.com
3987S: Supported
3988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989XFS FILESYSTEM
3990P: Silicon Graphics Inc
Nathan Scott1ad8f402006-08-30 13:41:23 +10003991P: Tim Shimmin, David Chatterton
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10003993L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994W: http://oss.sgi.com/projects/xfs
Nathan Scott1ad8f402006-08-30 13:41:23 +10003995T: git git://oss.sgi.com:8090/xfs/xfs-2.6
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996S: Supported
3997
Peter Korsgaard238b8722006-12-06 20:35:17 -08003998XILINX UARTLITE SERIAL DRIVER
3999P: Peter Korsgaard
4000M: jacmet@sunsite.dk
4001L: linux-serial@vger.kernel.org
4002S: Maintained
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004X86 3-LEVEL PAGING (PAE) SUPPORT
4005P: Ingo Molnar
4006M: mingo@redhat.com
4007S: Maintained
4008
4009X86-64 port
4010P: Andi Kleen
4011M: ak@suse.de
4012L: discuss@x86-64.org
4013W: http://www.x86-64.org
Randy Dunlap6a051562007-02-13 13:26:23 +01004014T: quilt ftp://ftp.firstfloor.org/pub/ak/x86_64/quilt-current
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015S: Maintained
4016
4017YAM DRIVER FOR AX.25
4018P: Jean-Paul Roubelat
4019M: jpr@f6fbb.org
4020L: linux-hams@vger.kernel.org
4021S: Maintained
4022
Henkaf64a5e2005-10-12 15:02:56 +02004023YEALINK PHONE DRIVER
4024P: Henk Vergonet
4025M: Henk.Vergonet@gmail.com
4026L: usbb2k-api-dev@nongnu.org
4027S: Maintained
4028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029Z8530 DRIVER FOR AX.25
4030P: Joerg Reuter
4031M: jreuter@yaina.de
4032W: http://yaina.de/jreuter/
4033W: http://www.qsl.net/dl1bke/
4034L: linux-hams@vger.kernel.org
4035S: Maintained
4036
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004037ZD1211RW WIRELESS DRIVER
4038P: Daniel Drake
4039M: dsd@gentoo.org
4040P: Ulrich Kunitz
4041M: kune@deine-taler.de
4042W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07004043L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01004044L: zd1211-devs@lists.sourceforge.net (subscribers-only)
4045S: Maintained
4046
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047ZF MACHZ WATCHDOG
4048P: Fernando Fuganti
4049M: fuganti@netbank.com.br
4050W: http://cvs.conectiva.com.br/drivers/ZFL-watchdog/
4051S: Maintained
4052
4053ZR36067 VIDEO FOR LINUX DRIVER
4054P: Ronald Bultje
4055M: rbultje@ronald.bitfreak.net
4056L: mjpeg-users@lists.sourceforge.net
4057W: http://mjpeg.sourceforge.net/driver-zoran/
4058S: Maintained
4059
4060ZR36120 VIDEO FOR LINUX DRIVER
4061P: Pauline Middelink
4062M: middelin@polyware.nl
4063W: http://www.polyware.nl/~middelin/En/hobbies.html
4064W: http://www.polyware.nl/~middelin/hobbies.html
4065S: Maintained
4066
4067THE REST
4068P: Linus Torvalds
4069S: Buried alive in reporters