blob: efa7bfa39f84cb942508bba14adf17113cc8b1e8 [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
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 PLEASE try to include any credit lines you want added with the
40 patch. It avoids people being missed off by mistake and makes
41 it easier to know who wants adding and who doesn't.
42
43 PLEASE document known bugs. If it doesn't work for everything
44 or does something very odd once a month document it.
45
Alan Coxc9ee1332006-05-20 15:00:12 -070046 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070047 of the OSDL certificate of contribution and should include a
48 Signed-off-by: line. The current version of this "Developer's
49 Certificate of Origin" (DCO) is listed in the file
50 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526. Make sure you have the right to send any changes you make. If you
53 do changes at work you may find your employer owns the patch
54 not you.
55
Alan Coxc9ee1332006-05-20 15:00:12 -0700567. When sending security related changes or reports to a maintainer
57 please Cc: security@kernel.org, especially if the maintainer
58 does not respond.
59
608. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Antoine Jacquetb7eee612007-04-27 12:30:59 -030062 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64Maintainers List (try to look for most precise areas first)
65
66Note: For the hard of thinking, this list is meant to remain in alphabetical
67order. If you could add yourselves to it in alphabetical order that would be
68so much easier [Ed]
69
70P: Person
71M: Mail patches to
72L: Mailing list that is relevant to this area
73W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010074T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070075S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 Supported: Someone is actually paid to look after this.
78 Maintained: Someone actually looks after it.
79 Odd Fixes: It has a maintainer but they don't have time to do
80 much other than throw the odd patch in. See below..
81 Orphan: No current maintainer [but maybe you could take the
82 role as you write your new code].
83 Obsolete: Old code. Something tagged obsolete generally means
84 it has been replaced by a better system and you
85 should be using that.
86
Joe Perches679655d2009-04-07 20:44:32 -070087F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003C505 NETWORK DRIVER
101P: Philip Blundell
102M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700103L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700105F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Steffen Klasserta6d89912007-08-10 14:05:27 -07001073C59X NETWORK DRIVER
108P: Steffen Klassert
109M: klassert@mathematik.tu-chemnitz.de
110L: netdev@vger.kernel.org
111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700112F: Documentation/networking/vortex.txt
113F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153CR990 NETWORK DRIVER
116P: David Dillow
117M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700120F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001223W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123P: Adam Radford
124M: linuxraid@amcc.com
125L: linux-scsi@vger.kernel.org
126W: http://www.amcc.com
127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700128F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001303W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131P: Adam Radford
132M: linuxraid@amcc.com
133L: linux-scsi@vger.kernel.org
134W: http://www.amcc.com
135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700136F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
13853C700 AND 53C700-66 SCSI DRIVER
139P: James E.J. Bottomley
140M: James.Bottomley@HansenPartnership.com
141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
146P: Andreas Koensgen
147M: ajk@iehk.rwth-aachen.de
148L: linux-hams@vger.kernel.org
149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700150F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528169 10/100/1000 GIGABIT ETHERNET DRIVER
153P: Francois Romieu
154M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700157F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
1598250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100162M: alan@lxorguk.ukuu.org.uk
163S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700164F: drivers/serial/8250*
165F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
168P: Paul Gortmaker
169M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700170L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700172F: drivers/net/*8390*
173F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001759P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100176P: Eric Van Hensbergen
177M: ericvh@gmail.com
178P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500179M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100180P: Latchesar Ionkov
181M: lucho@ionkov.net
182L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500183W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700184T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700186F: Documentation/filesystems/9p.txt
187F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189A2232 SERIAL BOARD DRIVER
190P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191M: A2232@gmx.net
192L: linux-m68k@lists.linux-m68k.org
193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700194F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196AACRAID SCSI RAID DRIVER
197P: Adaptec OEM Raid Solutions
198M: aacraid@adaptec.com
199L: linux-scsi@vger.kernel.org
200W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700202F: Documentation/scsi/aacraid.txt
203F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200206P: Hans de Goede
207M: j.w.r.degoede@hhs.nl
208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200211
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212ABIT UGURU 3 HARDWARE MONITOR DRIVER
213P: Alistair John Strachan
214M: alistair@devzero.co.uk
215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219ACENIC DRIVER
220P: Jes Sorensen
221M: jes@trained-monkey.org
222L: linux-acenic@sunsite.dk
223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000226ACER WMI LAPTOP EXTRAS
227P: Carlos Corbacho
228M: carlos@strangeworlds.co.uk
229L: aceracpi@googlegroups.com (subscribers-only)
230W: http://code.google.com/p/aceracpi
231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700232F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200235P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500236M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500237L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400238W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700241F: drivers/acpi/
242F: drivers/pnp/pnpacpi/
243F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500244
245ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400246P: Alexey Starikovskiy
247M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500248L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300249W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700251F: drivers/acpi/battery.c
252F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500253
254ACPI EC DRIVER
255P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400256M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500257L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300258W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700260F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500261
262ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400263P: Zhang Rui
264M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700270ACPI PCI HOTPLUG DRIVER
271P: Kristen Carlson Accardi
272M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700273L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500276
277ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400278P: Zhang Rui
279M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500280L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300281W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700283F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700284
Len Brown359acec2007-02-10 01:59:24 -0500285ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400286P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400287M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500288L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300289W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700291F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500292
Carlos Corbachobff431e2008-02-05 02:17:04 +0000293ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200294P: Carlos Corbacho
295M: carlos@strangeworlds.co.uk
296L: linux-acpi@vger.kernel.org
297W: http://www.lesswatts.org/projects/acpi/
298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700299F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000300
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100301AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200302P: Kyle McMartin
303M: kyle@mcmartin.ca
304P: Thibaut Varene
305M: T-Bone@parisc-linux.org
306W: http://wiki.parisc-linux.org/AD1889
307L: linux-parisc@vger.kernel.org
308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700309F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311ADM1025 HARDWARE MONITOR DRIVER
312P: Jean Delvare
313M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200314L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700316F: Documentation/hwmon/adm1025
317F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Corentin Labbecae2caa2007-02-14 21:15:04 +0100319ADM1029 HARDWARE MONITOR DRIVER
320P: Corentin Labbe
321M: corentin.labbe@geomatys.fr
322L: lm-sensors@lm-sensors.org
323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325
Michael Wucc0b88c2007-08-31 01:15:25 -0400326ADM8211 WIRELESS DRIVER
327P: Michael Wu
328M: flamingice@sourmilk.net
329L: linux-wireless@vger.kernel.org
330W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700333F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335ADT746X FAN DRIVER
336P: Colin Leroy
337M: colin@colino.net
338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400341ADVANSYS SCSI DRIVER
342P: Matthew Wilcox
343M: matthew@wil.cx
344L: linux-scsi@vger.kernel.org
345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700346F: Documentation/scsi/advansys.txt
347F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349AEDSP16 DRIVER
350P: Riccardo Facchetti
351M: fizban@tin.it
352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700353F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355AFFS FILE SYSTEM
356P: Roman Zippel
357M: zippel@linux-m68k.org
358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700359F: Documentation/filesystems/affs.txt
360F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700362AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
363P: David Howells
364M: dhowells@redhat.com
365L: linux-afs@lists.infradead.org
366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700367F: fs/afs/
368F: include/net/af_rxrpc.h
369F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400372P: David Airlie
373M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700374T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700376F: drivers/char/agp/
377F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379AHA152X SCSI DRIVER
380P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700381M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382L: linux-scsi@vger.kernel.org
383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700384F: drivers/scsi/aha152x*
385F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Hannes Reinecke64624d42007-10-19 10:32:29 +0200387AIC7XXX / AIC79XX SCSI DRIVER
388P: Hannes Reinecke
389M: hare@suse.de
390L: linux-scsi@vger.kernel.org
391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700392F: drivers/scsi/aic7xxx/
393F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200394
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700395AIO
396P: Benjamin LaHaise
397M: bcrl@kvack.org
398L: linux-aio@kvack.org
399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700400F: fs/aio.c
401F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403ALCATEL SPEEDTOUCH USB DRIVER
404P: Duncan Sands
405M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700406L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407W: http://www.linux-usb.org/SpeedTouch/
408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700409F: drivers/usb/atm/speedtch.c
410F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Pierre Ossman272f1332007-05-14 21:25:26 +0200412ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200413P: Manuel Lauss
414M: manuel.lauss@gmail.com
415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700416F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200417
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000418ALI1563 I2C DRIVER
419P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100420M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100421L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700423F: Documentation/i2c/busses/i2c-ali1563
424F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426ALPHA PORT
427P: Richard Henderson
428M: rth@twiddle.net
429S: Odd Fixes for 2.4; Maintained for 2.6.
430P: Ivan Kokshaysky
431M: ink@jurassic.park.msu.ru
432S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700433L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700434F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700436AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
437P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700438M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700439L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700441F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700442
Jordan Crousef90b8112006-01-06 00:12:14 -0800443AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100444P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700445L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800446W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700448F: arch/x86/kernel/geode_32.c
449F: drivers/char/hw_random/geode-rng.c
450F: drivers/crypto/geode*
451F: drivers/video/geode/
452F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800453
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200454AMD IOMMU (AMD-VI)
455P: Joerg Roedel
456M: joerg.roedel@amd.com
457L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700458T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700460F: arch/x86/kernel/amd_iommu*.c
461F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200462
Peter Orubae7f5b302008-07-28 18:44:11 +0200463AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700464P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700465M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700466L: amd64-microcode@amd64.org
467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700468F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200469
Stelian Pop284f42b2006-12-12 18:18:31 +0100470AMS (Apple Motion Sensor) DRIVER
471P: Stelian Pop
472M: stelian@popies.net
473P: Michael Hanselmann
474M: linux-kernel@hansmi.ch
475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700476F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100477
Tom Tuckerf94b5332006-09-22 15:22:48 -0700478AMSO1100 RNIC DRIVER
479P: Tom Tucker
480M: tom@opengridcomputing.com
481P: Steve Wise
482M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700483L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700485F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700486
Johannes Berg42269062006-07-25 16:15:50 +0200487AOA (Apple Onboard Audio) ALSA DRIVER
488P: Johannes Berg
489M: johannes@sipsolutions.net
490L: linuxppc-dev@ozlabs.org
Takashi Iwai82622042007-04-16 12:32:52 +0200491L: alsa-devel@alsa-project.org (subscribers-only)
Johannes Berg42269062006-07-25 16:15:50 +0200492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700493F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495APM DRIVER
496P: Stephen Rothwell
497M: sfr@canb.auug.org.au
498L: linux-laptop@vger.kernel.org
499W: http://www.canb.auug.org.au/~sfr/
500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700501F: arch/x86/kernel/apm_32.c
502F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700504APPLE BCM5974 MULTITOUCH DRIVER
505P: Henrik Rydberg
506M: rydberg@euromail.se
507L: linux-input@vger.kernel.org
508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700509F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700510
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700511APPLE SMC DRIVER
512P: Nicolas Boichat
513M: nicolas@boichat.ch
514L: mactel-linux-devel@lists.sourceforge.net
515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518APPLETALK NETWORK LAYER
519P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300520M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700522F: drivers/net/appletalk/
523F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400525APPLETOUCH TOUCHPAD DRIVER
526P: Johannes Berg
527M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400528L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700530F: Documentation/input/appletouch.txt
531F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400532
Jaya Kumar1154ea72005-06-21 17:17:04 -0700533ARC FRAMEBUFFER DRIVER
534P: Jaya Kumar
535M: jayalk@intworks.biz
536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700537F: drivers/video/arcfb.c
538F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540ARM MFM AND FLOPPY DRIVERS
541P: Ian Molton
542M: spyro@f2s.com
543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: arch/arm/lib/floppydma.S
545F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Russell Kingd4275352009-04-16 14:05:27 +0100547ARM PORT
548P: Russell King
549M: linux@arm.linux.org.uk
550L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
551W: http://www.arm.linux.org.uk/
552S: Maintained
553F: arch/arm/
554
Russell King2761f5c2007-05-24 06:56:08 +0200555ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200556S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700557F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200558
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800559ARM/ADI ROADRUNNER MACHINE SUPPORT
560P: Lennert Buytenhek
561M: kernel@wantstofly.org
562L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700564F: arch/arm/mach-ixp23xx/
565F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800566
567ARM/ADS SPHERE MACHINE SUPPORT
568P: Lennert Buytenhek
569M: kernel@wantstofly.org
570L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
571S: Maintained
572
Sergey Lapin9c784f92008-08-03 02:29:48 +0100573ARM/AFEB9260 MACHINE SUPPORT
574P: Sergey Lapin
575M: slapin@ossfans.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
578
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800579ARM/AJECO 1ARM MACHINE SUPPORT
580P: Lennert Buytenhek
581M: kernel@wantstofly.org
582L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
583S: Maintained
584
Andrew Victord4a89c72006-12-04 13:56:21 +0100585ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200586P: Andrew Victor
587M: linux@maxim.org.za
588L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
589W: http://maxim.org.za/at91_26.html
590S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100591
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800592ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
593P: Lennert Buytenhek
594M: kernel@wantstofly.org
595L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
596S: Maintained
597
598ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
599P: Lennert Buytenhek
600M: kernel@wantstofly.org
601L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
602S: Maintained
603
Russell Kingd4275352009-04-16 14:05:27 +0100604ARM/CLKDEV SUPPORT
605P: Russell King
606M: linux@arm.linux.org.uk
607L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
608F: arch/arm/common/clkdev.c
609F: arch/arm/include/asm/clkdev.h
610
Mike Rapoportd48134e2008-08-20 09:03:26 +0100611ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100612P: Mike Rapoport
613M: mike@compulab.co.il
614L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
615S: Maintained
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617ARM/CORGI MACHINE SUPPORT
618P: Richard Purdie
619M: rpurdie@rpsys.net
620S: Maintained
621
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200622ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
623P: Paulius Zaleckas
624M: paulius.zaleckas@teltonika.lt
625L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700626T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200627S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300628F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200629
Russell Kingd4275352009-04-16 14:05:27 +0100630ARM/EBSA110 MACHINE SUPPORT
631P: Russell King
632M: linux@arm.linux.org.uk
633L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
634W: http://www.arm.linux.org.uk/
635S: Maintained
636F: arch/arm/mach-ebsa110/
637F: drivers/net/arm/am79c961a.*
638
Russell Kinga9da4f72008-07-12 21:42:04 +0100639ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
640P: Daniel Ribeiro
641M: drwyrm@gmail.com
642P: Stefan Schmidt
643M: stefan@openezx.org
644P: Harald Welte
645M: laforge@openezx.org
646L: openezx-devel@lists.openezx.org (subscribers-only)
647W: http://www.openezx.org/
648S: Maintained
649
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200650ARM/FARADAY FA526 PORT
651P: Paulius Zaleckas
652M: paulius.zaleckas@teltonika.lt
653L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
654S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300655F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200656
Russell Kingd4275352009-04-16 14:05:27 +0100657ARM/FOOTBRIDGE ARCHITECTURE
658P: Russell King
659M: linux@arm.linux.org.uk
660L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
661W: http://www.arm.linux.org.uk/
662S: Maintained
663F: arch/arm/include/asm/hardware/dec21285.h
664F: arch/arm/mach-footbridge/
665
Sascha Hauer86183a52008-07-24 23:50:35 +0200666ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
667P: Sascha Hauer
668M: kernel@pengutronix.de
669L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
670S: Maintained
671
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800672ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
673P: Lennert Buytenhek
674M: kernel@wantstofly.org
675L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
676S: Maintained
677
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100678ARM/GUMSTIX MACHINE SUPPORT
679P: Steve Sakoman
680M: sakoman@gmail.com
681L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
682S: Maintained
683
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200684ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
685P: Philipp Zabel
686M: philipp.zabel@gmail.com
687S: Maintained
688F: arch/arm/mach-pxa/hx4700.c
689F: arch/arm/mach-pxa/include/mach/hx4700.h
690
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100691ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200692P: Kristoffer Ericson
693M: kristoffer.ericson@gmail.com
694W: www.jlime.com
695S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100696
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800697ARM/INTEL IOP32X ARM ARCHITECTURE
698P: Lennert Buytenhek
699M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100700P: Dan Williams
701M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800702L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100703S: Supported
704
705ARM/INTEL IOP33X ARM ARCHITECTURE
706P: Dan Williams
707M: dan.j.williams@intel.com
708L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
709S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800710
711ARM/INTEL IOP13XX ARM ARCHITECTURE
712P: Lennert Buytenhek
713M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100714P: Dan Williams
715M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800716L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100717S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718
719ARM/INTEL IQ81342EX MACHINE SUPPORT
720P: Lennert Buytenhek
721M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100722P: Dan Williams
723M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800724L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100725S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800726
727ARM/INTEL IXP2000 ARM ARCHITECTURE
728P: Lennert Buytenhek
729M: kernel@wantstofly.org
730L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
731S: Maintained
732
733ARM/INTEL IXDP2850 MACHINE SUPPORT
734P: Lennert Buytenhek
735M: kernel@wantstofly.org
736L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
737S: Maintained
738
739ARM/INTEL IXP23XX ARM ARCHITECTURE
740P: Lennert Buytenhek
741M: kernel@wantstofly.org
742L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
743S: Maintained
744
745ARM/INTEL XSC3 (MANZANO) ARM CORE
746P: Lennert Buytenhek
747M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100748P: Dan Williams
749M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100751S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800752
753ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
754P: Lennert Buytenhek
755M: kernel@wantstofly.org
756L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
757S: Maintained
758
759ARM/LOGICPD PXA270 MACHINE SUPPORT
760P: Lennert Buytenhek
761M: kernel@wantstofly.org
762L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
763S: Maintained
764
Philipp Zabel3b8861712008-07-09 21:27:15 +0100765ARM/MAGICIAN MACHINE SUPPORT
766P: Philipp Zabel
767M: philipp.zabel@gmail.com
768S: Maintained
769
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100770ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
771P: Michael Petchkovsky
772M: mkpetch@internode.on.net
773S: Maintained
774
Andy Green9d762952009-05-19 06:41:42 -0300775ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
776P: Nelson Castillo
777M: arhuaco@freaks-unidos.net
778L: openmoko-kernel@lists.openmoko.org (subscribers-only)
779W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
780S: Supported
781
Dirk Opfer8459c152005-11-06 14:27:52 +0000782ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800783P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100784M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000785P: Dirk Opfer
786M: dirk@opfer-online.de
787S: Maintained
788
Marek Vasut54088bf2009-03-24 00:29:29 +0100789ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100790P: Marek Vasut
791M: marek.vasut@gmail.com
792W: http://hackndev.com
793S: Maintained
794
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100795ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700796P: Sergey Lapin
797M: slapin@ossfans.org
798W: http://hackndev.com
799S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801ARM/PLEB SUPPORT
802P: Peter Chubb
803M: pleb@gelato.unsw.edu.au
804W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
805S: Maintained
806
807ARM/PT DIGITAL BOARD PORT
808P: Stefan Eletzhofer
809M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700810L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811W: http://www.arm.linux.org.uk/
812S: Maintained
813
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800814ARM/RADISYS ENP2611 MACHINE SUPPORT
815P: Lennert Buytenhek
816M: kernel@wantstofly.org
817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
818S: Maintained
819
Russell Kingd4275352009-04-16 14:05:27 +0100820ARM/RISCPC ARCHITECTURE
821P: Russell King
822M: linux@arm.linux.org.uk
823L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
824W: http://www.arm.linux.org.uk/
825S: Maintained
826F: arch/arm/common/time-acorn.c
827F: arch/arm/include/asm/hardware/entry-macro-iomd.S
828F: arch/arm/include/asm/hardware/ioc.h
829F: arch/arm/include/asm/hardware/iomd.h
830F: arch/arm/include/asm/hardware/memc.h
831F: arch/arm/mach-rpc/
832F: drivers/net/arm/ether*
833F: drivers/scsi/arm/
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835ARM/SHARK MACHINE SUPPORT
836P: Alexander Schulz
837M: alex@shark-linux.de
838W: http://www.shark-linux.de/shark.html
839S: Maintained
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841ARM/S3C2410 ARM ARCHITECTURE
842P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800843M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700844L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845W: http://www.fluff.org/ben/linux/
846S: Maintained
847
848ARM/S3C2440 ARM ARCHITECTURE
849P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800850M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700851L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852W: http://www.fluff.org/ben/linux/
853S: Maintained
854
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800855ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
856P: Lennert Buytenhek
857M: kernel@wantstofly.org
858L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
859S: Maintained
860
861ARM/THECUS N2100 MACHINE SUPPORT
862P: Lennert Buytenhek
863M: kernel@wantstofly.org
864L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
865S: Maintained
866
wanzongshun98ad6e32009-02-13 06:04:32 +0100867ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700868P: Wan ZongShun
869M: mcuos.com@gmail.com
870L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
871W: http://www.mcuos.com
872S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100873
Russell Kingd4275352009-04-16 14:05:27 +0100874ARM/VFP SUPPORT
875P: Russell King
876M: linux@arm.linux.org.uk
877L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
878W: http://www.arm.linux.org.uk/
879S: Maintained
880F: arch/arm/vfp/
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882ARPD SUPPORT
883P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700884L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700886F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500889P: Corentin Chary
890M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891P: Karol Kozimor
892M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893L: acpi4asus-user@lists.sourceforge.net
894W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500895W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700897F: arch/x86/kernel/acpi/boot.c
898F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400900ASUS ASB100 HARDWARE MONITOR DRIVER
901P: Mark M. Hoffman
902M: mhoffman@lightlink.com
903L: lm-sensors@lm-sensors.org
904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700905F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400906
Corentin Chary85091b72007-01-26 14:04:30 +0100907ASUS LAPTOP EXTRAS DRIVER
908P: Corentin Chary
909M: corentincj@iksaif.net
910L: acpi4asus-user@lists.sourceforge.net
911W: http://sourceforge.net/projects/acpi4asus
912W: http://xf.iksaif.net/acpi4asus
913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700914F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100915
Andrew Morton953a6472008-11-06 12:53:28 -0800916ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700917P: Dan Williams
918M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100919P: Maciej Sosnowski
920M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700921L: linux-kernel@vger.kernel.org
922W: http://sourceforge.net/projects/xscaleiop
923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700924F: Documentation/crypto/async-tx-api.txt
925F: crypto/async_tx/
926F: drivers/dma/
927F: include/linux/dmaengine.h
928F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700929
Randy Dunlape7839f22008-10-12 16:11:45 -0700930ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931P: Ed L. Cashin
932M: ecashin@coraid.com
933W: http://www.coraid.com/support/linux
934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700935F: Documentation/aoe/
936F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200938ATHEROS ATH5K WIRELESS DRIVER
939P: Jiri Slaby
940M: jirislaby@gmail.com
941P: Nick Kossifidis
942M: mickflemm@gmail.com
943P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700944M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400945P: Bob Copeland
946M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200947L: linux-wireless@vger.kernel.org
948L: ath5k-devel@lists.ath5k.org
949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700950F: drivers/net/wireless/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200951
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700952ATHEROS ATH9K WIRELESS DRIVER
953P: Luis R. Rodriguez
954M: lrodriguez@atheros.com
955P: Jouni Malinen
956M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400957P: Sujith Manoharan
958M: Sujith.Manoharan@atheros.com
959P: Vasanthakumar Thiagarajan
960M: vasanth@atheros.com
961P: Senthil Balasubramanian
962M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700963L: linux-wireless@vger.kernel.org
964L: ath9k-devel@lists.ath9k.org
965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700966F: drivers/net/wireless/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700967
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100968ATHEROS AR9170 WIRELESS DRIVER
969P: Christian Lamparter
970M: chunkeey@web.de
971L: linux-wireless@vger.kernel.org
972W: http://wireless.kernel.org/en/users/Drivers/ar9170
973S: Maintained
974F: drivers/net/wireless/ar9170/
975
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000976ATI_REMOTE2 DRIVER
977P: Ville Syrjala
978M: syrjala@sci.fi
979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700980F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000981
Chris Snook7ae115b2008-09-09 03:26:57 -0400982ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600983P: Jay Cliburn
984M: jcliburn@gmail.com
985P: Chris Snook
986M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400987P: Jie Yang
988M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600989L: atl1-devel@lists.sourceforge.net
990W: http://sourceforge.net/projects/atl1
991W: http://atl1.sourceforge.net
992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700993F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995ATM
996P: Chas Williams
997M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700998L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800999L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000W: http://linux-atm.sourceforge.net
1001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001002F: drivers/atm/
1003F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Pierre Ossman272f1332007-05-14 21:25:26 +02001005ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001006P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001007M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001008L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1009W: http://www.atmel.com/products/AT91/
1010W: http://www.at91.com/
1011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001012F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001013
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001014ATMEL AT91 / AT32 SERIAL DRIVER
1015P: Haavard Skinnemoen
1016M: hskinnemoen@atmel.com
1017L: linux-kernel@vger.kernel.org
1018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001019F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001020
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001021ATMEL LCDFB DRIVER
1022P: Nicolas Ferre
1023M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001024L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001026F: drivers/video/atmel_lcdfb.c
1027F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001028
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001029ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001030P: Haavard Skinnemoen
1031M: hskinnemoen@atmel.com
1032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001033F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001034
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001035ATMEL SPI DRIVER
1036P: Haavard Skinnemoen
1037M: hskinnemoen@atmel.com
1038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001039F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001040
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001041ATMEL USBA UDC DRIVER
1042P: Haavard Skinnemoen
1043M: hskinnemoen@atmel.com
1044L: kernel@avr32linux.org
1045W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001047F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049ATMEL WIRELESS DRIVER
1050P: Simon Kelley
1051M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001052L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053W: http://www.thekelleys.org.uk/atmel
1054W: http://atmelwlandriver.sourceforge.net/
1055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001056F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Chris Wrighta92b7b82005-07-07 18:12:23 -07001058AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001059P: Al Viro
1060M: viro@zeniv.linux.org.uk
1061P: Eric Paris
1062M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001063L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001064W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001065T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001067F: include/linux/audit.h
1068F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001069
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001070AUXILIARY DISPLAY DRIVERS
1071P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001072M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001073L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001074W: http://miguelojeda.es/auxdisplay.htm
1075W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001077F: drivers/auxdisplay/
1078F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001079
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001080AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001081P: Haavard Skinnemoen
1082M: hskinnemoen@atmel.com
1083W: http://www.atmel.com/products/AVR32/
1084W: http://avr32linux.org/
1085W: http://avrfreaks.net/
1086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001087F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001088
1089AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001090P: Haavard Skinnemoen
1091M: hskinnemoen@atmel.com
1092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001093F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095AX.25 NETWORK LAYER
1096P: Ralf Baechle
1097M: ralf@linux-mips.org
1098L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001099W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001101F: include/linux/ax25.h
1102F: include/net/ax25.h
1103F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001105B43 WIRELESS DRIVER
1106P: Michael Buesch
1107M: mb@bu3sch.de
1108P: Stefano Brivio
1109M: stefano.brivio@polimi.it
1110L: linux-wireless@vger.kernel.org
1111W: http://linuxwireless.org/en/users/Drivers/b43
1112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001113F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001114
1115B43LEGACY WIRELESS DRIVER
1116P: Larry Finger
1117M: Larry.Finger@lwfinger.net
1118P: Stefano Brivio
1119M: stefano.brivio@polimi.it
1120L: linux-wireless@vger.kernel.org
1121W: http://linuxwireless.org/en/users/Drivers/b43
1122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001123F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001124
Richard Purdie300abeb2007-02-07 22:21:07 +00001125BACKLIGHT CLASS/SUBSYSTEM
1126P: Richard Purdie
1127M: rpurdie@rpsys.net
1128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001129F: drivers/video/backlight/
1130F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001131
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001132BAYCOM/HDLCDRV DRIVERS FOR AX.25
1133P: Thomas Sailer
1134M: t.sailer@alumni.ethz.ch
1135L: linux-hams@vger.kernel.org
1136W: http://www.baycom.org/~tom/ham/ham.html
1137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001138F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001139
1140BEFS FILE SYSTEM
1141P: Sergey S. Kostyliov
1142M: rathamahata@php4.ru
1143L: linux-kernel@vger.kernel.org
1144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001145F: Documentation/filesystems/befs.txt
1146F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001147
1148BFS FILE SYSTEM
1149P: Tigran A. Aivazian
1150M: tigran@aivazian.fsnet.co.uk
1151L: linux-kernel@vger.kernel.org
1152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001153F: Documentation/filesystems/bfs.txt
1154F: fs/bfs/
1155F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001156
Bryan Wu1394f032007-05-06 14:50:22 -07001157BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001158P: Mike Frysinger
1159M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001160L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001161W: http://blackfin.uclinux.org
1162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001163F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001164
Bryan Wue190d6b2007-07-17 14:43:44 +08001165BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001166P: Michael Hennerich
1167M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001168L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001169W: http://blackfin.uclinux.org
1170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001171F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001172
Mike Frysinger566da5b2007-06-11 15:31:30 +08001173BLACKFIN RTC DRIVER
1174P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001175M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001176L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001177W: http://blackfin.uclinux.org
1178S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001179F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001180
Bryan Wu1394f032007-05-06 14:50:22 -07001181BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001182P: Sonic Zhang
1183M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001184L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001185W: http://blackfin.uclinux.org
1186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001187F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001188
Bryan Wu1e6d3202007-07-15 02:50:02 +08001189BLACKFIN WATCHDOG DRIVER
1190P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001191M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001192L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001193W: http://blackfin.uclinux.org
1194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001195F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001196
Bryan Wud24ecfc2007-05-01 23:26:32 +02001197BLACKFIN I2C TWI DRIVER
1198P: Sonic Zhang
1199M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001200L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001201W: http://blackfin.uclinux.org/
1202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001203F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205BLOCK LAYER
1206P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001207M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001209T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001211F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Joern Engel2b54aae2008-02-06 01:38:02 -08001213BLOCK2MTD DRIVER
1214P: Joern Engel
1215M: joern@lazybastard.org
1216L: linux-mtd@lists.infradead.org
1217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001218F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001219
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001220BLUETOOTH DRIVERS
1221P: Marcel Holtmann
1222M: marcel@holtmann.org
1223L: linux-bluetooth@vger.kernel.org
1224W: http://www.bluez.org/
1225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001226F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228BLUETOOTH SUBSYSTEM
1229P: Marcel Holtmann
1230M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001231L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001232W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001233T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001235F: net/bluetooth/
1236F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001239P: Jay Vosburgh
1240M: fubar@us.ibm.com
1241L: bonding-devel@lists.sourceforge.net
1242W: http://sourceforge.net/projects/bonding/
1243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001244F: drivers/net/bonding/
1245F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Gary Zambrano39105892006-06-22 17:26:20 -07001247BROADCOM B44 10/100 ETHERNET DRIVER
1248P: Gary Zambrano
1249M: zambrano@broadcom.com
1250L: netdev@vger.kernel.org
1251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001252F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001253
Michael Chan948c51e2006-06-04 02:51:39 -07001254BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1255P: Michael Chan
1256M: mchan@broadcom.com
1257L: netdev@vger.kernel.org
1258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001259F: drivers/net/bnx2.*
1260F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001261
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001262BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001263P: Eilon Greenstein
1264M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001265L: netdev@vger.kernel.org
1266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001267F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001268
Michael Chan948c51e2006-06-04 02:51:39 -07001269BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001270P: Matt Carlson
1271M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001272P: Michael Chan
1273M: mchan@broadcom.com
1274L: netdev@vger.kernel.org
1275S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001276F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001277
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001278BSG (block layer generic sg v4 driver)
1279P: FUJITA Tomonori
1280M: fujita.tomonori@lab.ntt.co.jp
1281L: linux-scsi@vger.kernel.org
1282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001283F: block/bsg.c
1284F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001285
Michael Bueschff1d5c22008-07-25 01:46:10 -07001286BT8XXGPIO DRIVER
1287P: Michael Buesch
1288M: mb@bu3sch.de
1289W: http://bu3sch.de/btgpio.php
1290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001291F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001292
Joe Percheseb1eb042009-01-21 10:49:16 -05001293BTRFS FILE SYSTEM
1294P: Chris Mason
1295M: chris.mason@oracle.com
1296L: linux-btrfs@vger.kernel.org
1297W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001298T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001300F: Documentation/filesystems/btrfs.txt
1301F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001304P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001305M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001306L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001307W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001308T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001310F: Documentation/video4linux/bttv/
1311F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
David Howellsa5432f52009-04-20 15:46:45 +01001313CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1314P: David Howells
1315M: dhowells@redhat.com
1316L: linux-cachefs@redhat.com
1317S: Supported
1318F: Documentation/filesystems/caching/cachefiles.txt
1319F: fs/cachefiles/
1320
Jonathan Corbet77d51402007-03-22 19:44:17 -03001321CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001322P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001323M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001324L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001325T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001327F: Documentation/video4linux/cafe_ccic
1328F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001329
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001330CALGARY x86-64 IOMMU
1331P: Muli Ben-Yehuda
1332M: muli@il.ibm.com
1333P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001334M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001335L: linux-kernel@vger.kernel.org
1336L: discuss@x86-64.org
1337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: arch/x86/kernel/pci-calgary_64.c
1339F: arch/x86/kernel/tce_64.c
1340F: arch/x86/include/asm/calgary.h
1341F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001342
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001343CAN NETWORK LAYER
1344P: Urs Thuermann
1345M: urs.thuermann@volkswagen.de
1346P: Oliver Hartkopp
1347M: oliver.hartkopp@volkswagen.de
1348L: socketcan-core@lists.berlios.de (subscribers-only)
1349W: http://developer.berlios.de/projects/socketcan/
1350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001351F: drivers/net/can/
1352F: include/linux/can/
1353F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001354
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001355CAN NETWORK DRIVERS
1356P: Wolfgang Grandegger
1357M: wg@grandegger.com
1358L: socketcan-core@lists.berlios.de (subscribers-only)
1359W: http://developer.berlios.de/projects/socketcan/
1360S: Maintained
1361
Arnd Bergmannb8154542008-05-16 11:10:59 +02001362CELL BROADBAND ENGINE ARCHITECTURE
1363P: Arnd Bergmann
1364M: arnd@arndb.de
1365L: linuxppc-dev@ozlabs.org
1366L: cbe-oss-dev@ozlabs.org
1367W: http://www.ibm.com/developerworks/power/cell/
1368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001369F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001370F: arch/powerpc/include/asm/spu*.h
1371F: arch/powerpc/oprofile/*cell*
1372F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001373
David Vrabel18332a82008-09-17 16:34:44 +01001374CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1375P: David Vrabel
1376M: david.vrabel@csr.com
1377L: linux-usb@vger.kernel.org
1378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001379F: Documentation/usb/WUSB-Design-overview.txt
1380F: Documentation/usb/wusb-cbaf
1381F: drivers/usb/wusbcore/
1382F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001383
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001384CFAG12864B LCD DRIVER
1385P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001386M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001387L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001388W: http://miguelojeda.es/auxdisplay.htm
1389W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001391F: drivers/auxdisplay/cfag12864b.c
1392F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001393
1394CFAG12864BFB LCD FRAMEBUFFER DRIVER
1395P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001396M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001397L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001398W: http://miguelojeda.es/auxdisplay.htm
1399W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001401F: drivers/auxdisplay/cfag12864bfb.c
1402F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001403
Johannes Berg704232c2007-04-23 12:20:05 -07001404CFG80211 and NL80211
1405P: Johannes Berg
1406M: johannes@sipsolutions.net
1407L: linux-wireless@vger.kernel.org
1408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001409F: include/linux/nl80211.h
1410F: include/net/cfg80211.h
1411F: net/wireless/*
1412X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001413
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001414CHECKPATCH
1415P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001416M: apw@canonical.com
1417L: linux-kernel@vger.kernel.org
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001419F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001420
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001421CISCO 10G ETHERNET DRIVER
1422P: Scott Feldman
1423M: scofeldm@cisco.com
1424P: Joe Eykholt
1425M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001427F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001428
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001429CIRRUS LOGIC EP93XX ETHERNET DRIVER
1430P: Lennert Buytenhek
1431M: kernel@wantstofly.org
1432L: netdev@vger.kernel.org
1433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001434F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001435
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001436CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1437P: Lennert Buytenhek
1438M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001439L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001442
Timur Tabid9e9d822008-04-24 08:45:26 +10001443CIRRUS LOGIC CS4270 SOUND DRIVER
1444P: Timur Tabi
1445M: timur@freescale.com
1446L: alsa-devel@alsa-project.org
1447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001448F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1451P: Cirrus Logic Corporation (kernel 2.2 driver)
1452M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1453P: Nils Faerber (port to kernel 2.4)
1454M: Nils Faerber <nils@kernelconcepts.de>
1455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001456F: Documentation/input/cs461x.txt
1457F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Russell Kingd4275352009-04-16 14:05:27 +01001459CLK API
1460P: Russell King
1461M: linux@arm.linux.org.uk
1462F: include/linux/clk.h
1463
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001464CISCO FCOE HBA DRIVER
1465P: Abhijeet Joglekar
1466M: abjoglek@cisco.com
1467P: Joe Eykholt
1468M: jeykholt@cisco.com
1469L: linux-scsi@vger.kernel.org
1470S: Supported
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472CODA FILE SYSTEM
1473P: Jan Harkes
1474M: jaharkes@cs.cmu.edu
1475M: coda@cs.cmu.edu
1476L: codalist@coda.cs.cmu.edu
1477W: http://www.coda.cs.cmu.edu/
1478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001479F: Documentation/filesystems/coda.txt
1480F: fs/coda/
1481F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483COMMON INTERNET FILE SYSTEM (CIFS)
1484P: Steve French
1485M: sfrench@samba.org
1486L: linux-cifs-client@lists.samba.org
1487L: samba-technical@lists.samba.org
1488W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001489T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001491F: Documentation/filesystems/cifs.txt
1492F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494COMPACTPCI HOTPLUG CORE
1495P: Scott Murray
1496M: scottm@somanetworks.com
1497M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001498L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001500F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1503P: Scott Murray
1504M: scottm@somanetworks.com
1505M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001506L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001508F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510COMPACTPCI HOTPLUG GENERIC DRIVER
1511P: Scott Murray
1512M: scottm@somanetworks.com
1513M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001514L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001516F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001518COMPAL LAPTOP SUPPORT
1519P: Cezary Jackiewicz
1520M: cezary.jackiewicz@gmail.com
1521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524COMPUTONE INTELLIPORT MULTIPORT CARD
1525P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001526M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001529F: Documentation/serial/computone.txt
1530F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Simon Arlott949be0f2007-03-06 02:47:46 -08001532CONEXANT ACCESSRUNNER USB DRIVER
1533P: Simon Arlott
1534M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001535L: accessrunner-general@lists.sourceforge.net
1536W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001538F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001540CONFIGFS
1541P: Joel Becker
1542M: joel.becker@oracle.com
1543L: linux-kernel@vger.kernel.org
1544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001545F: fs/configfs/
1546F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001547
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001548CONTROL GROUPS (CGROUPS)
1549P: Paul Menage
1550M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001551P: Li Zefan
1552M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001553L: containers@lists.linux-foundation.org
1554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001555F: include/linux/cgroup*
1556F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001557
Rudolf Marekbebe4672007-05-08 17:22:02 +02001558CORETEMP HARDWARE MONITORING DRIVER
1559P: Rudolf Marek
1560M: r.marek@assembler.cz
1561L: lm-sensors@lm-sensors.org
1562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001563F: Documentation/hwmon/coretemp
1564F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566COSA/SRP SYNC SERIAL DRIVER
1567P: Jan "Yenya" Kasprzak
1568M: kas@fi.muni.cz
1569W: http://www.fi.muni.cz/~kas/cosa/
1570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Florian Fainelli4371ee32009-06-01 02:43:17 -07001573CPMAC ETHERNET DRIVER
1574P: Florian Fainelli
1575M: florian@openwrt.org
1576L: netdev@vger.kernel.org
1577S: Maintained
1578F: drivers/net/cpmac.c
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580CPU FREQUENCY DRIVERS
1581P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001582M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001583L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001585T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001587F: arch/x86/kernel/cpu/cpufreq/
1588F: drivers/cpufreq/
1589F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591CPUID/MSR DRIVER
1592P: H. Peter Anvin
1593M: hpa@zytor.com
1594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: arch/x86/kernel/cpuid.c
1596F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Paul Jacksoned90fb42005-09-27 21:45:37 -07001598CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001599P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001600M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001601L: linux-kernel@vger.kernel.org
1602W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001603W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001605F: Documentation/cgroups/cpusets.txt
1606F: include/linux/cpuset.h
1607F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001610W: http://sourceforge.net/projects/cramfs/
1611S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001612F: Documentation/filesystems/cramfs.txt
1613F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615CRIS PORT
1616P: Mikael Starvik
1617M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001618P: Jesper Nilsson
1619M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620L: dev-etrax@axis.com
1621W: http://developer.axis.com
1622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001623F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625CRYPTO API
1626P: Herbert Xu
1627M: herbert@gondor.apana.org.au
1628P: David S. Miller
1629M: davem@davemloft.net
1630L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001631T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001633F: Documentation/crypto/
1634F: arch/*/crypto/
1635F: crypto/
1636F: drivers/crypto/
1637F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Neil Horman5b07bd52009-02-05 16:03:04 +11001639CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1640P: Neil Horman
1641M: nhorman@tuxdriver.com
1642L: linux-crypto@vger.kernel.org
1643S: Maintained
1644
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001645CS5535 Audio ALSA driver
1646P: Jaya Kumar
1647M: jayakumar.alsa@gmail.com
1648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001649F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001650
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001651CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001652P: Hans Verkuil
1653M: hverkuil@xs4all.nl
1654P: Andy Walls
1655M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001656L: ivtv-devel@ivtvdriver.org
1657L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001658L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001659T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001660W: http://linuxtv.org
1661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001662F: Documentation/video4linux/cx18.txt
1663F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001664
Steve Wisee5ec3782008-05-20 14:06:33 -07001665CXGB3 ETHERNET DRIVER (CXGB3)
1666P: Divy Le Ray
1667M: divy@chelsio.com
1668L: netdev@vger.kernel.org
1669W: http://www.chelsio.com
1670S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001671F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001672
1673CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1674P: Steve Wise
1675M: swise@chelsio.com
1676L: general@lists.openfabrics.org
1677W: http://www.openfabrics.org
1678S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001679F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681CYBERPRO FB DRIVER
1682P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001683M: linux@arm.linux.org.uk
1684L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685W: http://www.arm.linux.org.uk/
1686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001687F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689CYCLADES 2X SYNC CARD DRIVER
1690P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001691M: acme@ghostprotocols.net
1692W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001694F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001698S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001699F: drivers/char/cyclades.c
1700F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001704S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001705F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707DAMA SLAVE for AX.25
1708P: Joerg Reuter
1709M: jreuter@yaina.de
1710W: http://yaina.de/jreuter/
1711W: http://www.qsl.net/dl1bke/
1712L: linux-hams@vger.kernel.org
1713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: net/ax25/af_ax25.c
1715F: net/ax25/ax25_dev.c
1716F: net/ax25/ax25_ds_*
1717F: net/ax25/ax25_in.c
1718F: net/ax25/ax25_out.c
1719F: net/ax25/ax25_timer.c
1720F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001722DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1723P: Tobias Ringstrom
1724M: tori@unhappy.mine.nu
1725L: netdev@vger.kernel.org
1726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001727F: Documentation/networking/dmfe.txt
1728F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001729
1730DC390/AM53C974 SCSI driver
1731P: Kurt Garloff
1732M: garloff@suse.de
1733W: http://www.garloff.de/kurt/linux/dc390/
1734P: Guennadi Liakhovetski
1735M: g.liakhovetski@gmx.de
1736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001737F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739DC395x SCSI driver
1740P: Oliver Neukum
1741M: oliver@neukum.name
1742P: Ali Akcaagac
1743M: aliakc@web.de
1744P: Jamie Lenehan
1745M: lenehan@twibble.org
1746W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001747L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748L: http://lists.twibble.org/mailman/listinfo/dc395x/
1749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001750F: Documentation/scsi/dc395x.txt
1751F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001753DCCP PROTOCOL
1754P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001755M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001756L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001757W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001759F: include/linux/dccp.h
1760F: include/linux/tfrc.h
1761F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001764P: Christine Caulfield
1765M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766W: http://linux-decnet.sourceforge.net
1767L: linux-decnet-user@lists.sourceforge.net
1768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: Documentation/networking/decnet.txt
1770F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772DEFXX FDDI NETWORK DRIVER
1773P: Maciej W. Rozycki
1774M: macro@linux-mips.org
1775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001778DELL LAPTOP DRIVER
1779P: Matthew Garrett
1780M: mjg59@srcf.ucam.org
1781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001782F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784DELL LAPTOP SMM DRIVER
1785P: Massimo Dal Zotto
1786M: dz@debian.org
1787W: http://www.debian.org/~dz/i8k/
1788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001789F: drivers/char/i8k.c
1790F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Doug Warzecha90563ec2005-09-06 15:17:15 -07001792DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1793P: Doug Warzecha
1794M: Douglas_Warzecha@dell.com
1795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001796F: Documentation/dcdbas.txt
1797F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001798
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001799DELL WMI EXTRAS DRIVER
1800P: Matthew Garrett
1801M: mjg59@srcf.ucam.org
1802S: Maintained
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804DEVICE NUMBER REGISTRY
1805P: Torben Mathiasen
1806M: device@lanana.org
1807W: http://lanana.org/docs/device-list/index.html
1808L: linux-kernel@vger.kernel.org
1809S: Maintained
1810
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001811DEVICE-MAPPER (LVM)
1812P: Alasdair Kergon
1813L: dm-devel@redhat.com
1814W: http://sources.redhat.com/dm
1815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001816F: Documentation/device-mapper/
1817F: drivers/md/dm*
1818F: include/linux/device-mapper.h
1819F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821DIGI INTL. EPCA DRIVER
1822P: Digi International, Inc
1823M: Eng.Linux@digi.com
1824L: Eng.Linux@digi.com
1825W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001826S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001827F: Documentation/serial/digiepca.txt
1828F: drivers/char/epca*
1829F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Randy Dunlape7839f22008-10-12 16:11:45 -07001831DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001832P: Eric Paris
1833M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834L: linux-kernel@vger.kernel.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001836F: Documentation/filesystems/dnotify.txt
1837F: fs/notify/dnotify/
1838F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840DISK GEOMETRY AND PARTITION HANDLING
1841P: Andries Brouwer
1842M: aeb@cwi.nl
1843W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1844W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1845W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1846S: Maintained
1847
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001848DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849P: Jan Kara
1850M: jack@suse.cz
1851L: linux-kernel@vger.kernel.org
1852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001853F: Documentation/filesystems/quota.txt
1854F: fs/quota/
1855F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Randy Dunlape7839f22008-10-12 16:11:45 -07001857DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001858P: Christine Caulfield
1859M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001860P: David Teigland
1861M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001862L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001863W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001864T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001865S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001866F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001867
Dan Williamsb3e5f262007-08-07 10:26:35 -07001868DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001869P: Maciej Sosnowski
1870M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001871P: Dan Williams
1872M: dan.j.williams@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001873L: linux-kernel@vger.kernel.org
Dan Williamsb3e5f262007-08-07 10:26:35 -07001874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001875F: drivers/dma/
1876F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001877
Juerg Haefligerb8250372007-06-09 10:11:16 -04001878DME1737 HARDWARE MONITOR DRIVER
1879P: Juerg Haefliger
1880M: juergh@gmail.com
1881L: lm-sensors@lm-sensors.org
1882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001883F: Documentation/hwmon/dme1737
1884F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001885
Martin Waitzba483d52005-06-17 13:20:59 -07001886DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001887P: Randy Dunlap
1888M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001889S: Maintained
1890
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001891DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001892P: Shaohua Li
1893M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001894L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001896F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001897
Joe Perches7d2c86b2009-04-07 20:59:01 -07001898DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001899P: Randy Dunlap
1900M: rdunlap@xenotime.net
1901L: linux-doc@vger.kernel.org
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905DOUBLETALK DRIVER
1906P: James R. Van Zandt
1907M: jrv@vanzandt.mv.com
1908L: blinux-list@redhat.com
1909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001910F: drivers/char/dtlk.c
1911F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001913DPT_I2O SCSI RAID DRIVER
1914P: Adaptec OEM Raid Solutions
1915M: aacraid@adaptec.com
1916L: linux-scsi@vger.kernel.org
1917W: http://www.adaptec.com/
1918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001919F: drivers/scsi/dpt*
1920F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922DRIVER CORE, KOBJECTS, AND SYSFS
1923P: Greg Kroah-Hartman
1924M: gregkh@suse.de
1925L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001926T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001928F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001929F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001930F: fs/sysfs/
1931F: include/linux/kobj*
1932F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934DRM DRIVERS
1935P: David Airlie
1936M: airlied@linux.ie
1937L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001938T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001940F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001943P: Francois Romieu
1944M: romieu@fr.zoreil.com
1945L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001949DZ DECSTATION DZ11 SERIAL DRIVER
1950P: Maciej W. Rozycki
1951M: macro@linux-mips.org
1952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955EATA-DMA SCSI DRIVER
1956P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001957M: mike@i-Connect.Net
1958L: linux-eata@i-connect.net
1959L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963EATA ISA/EISA/PCI SCSI DRIVER
1964P: Dario Ballabio
1965M: ballabio_dario@emc.com
1966L: linux-scsi@vger.kernel.org
1967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970EATA-PIO SCSI DRIVER
1971P: Michael Neuffer
1972M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001973L: linux-eata@i-connect.net
1974L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978EBTABLES
1979P: Bart De Schuymer
1980M: bart.de.schuymer@pandora.be
1981L: ebtables-user@lists.sourceforge.net
1982L: ebtables-devel@lists.sourceforge.net
1983W: http://ebtables.sourceforge.net/
1984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001985F: include/linux/netfilter_bridge/ebt_*.h
1986F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Michael Halcrow237fead2006-10-04 02:16:22 -07001988ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001989P: Tyler Hicks
1990M: tyhicks@linux.vnet.ibm.com
1991M: Dustin Kirkland
1992P: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001993L: ecryptfs-devel@lists.launchpad.net
1994W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001995S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001996F: Documentation/filesystems/ecryptfs.txt
1997F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001998
Alan Coxda9bb1d2006-01-18 17:44:13 -08001999EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002000P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002001M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002002L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002003W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002005F: Documentation/edac.txt
2006F: drivers/edac/edac_*
2007F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002008
Borislav Petkovc476c232009-05-20 20:31:58 +02002009EDAC-AMD64
2010P: Doug Thompson
2011M: dougthompson@xmission.com
2012P: Borislav Petkov
2013M: borislav.petkov@amd.com
2014L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2015W: bluesmoke.sourceforge.net
2016S: Supported
2017F: drivers/edac/amd64_edac*
2018
Dave Peterson0e438e32006-03-26 01:38:55 -08002019EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002020P: Mark Gross
2021M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002022P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002023M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002024L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002025W: bluesmoke.sourceforge.net
2026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002028
2029EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002030P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002031M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002032L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002033W: bluesmoke.sourceforge.net
2034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002036
Douglas Thompson6bc78402007-07-19 01:50:12 -07002037EDAC-I82443BXGX
2038P: Tim Small
2039M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002040L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002041W: bluesmoke.sourceforge.net
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002044
2045EDAC-I3000
2046P: Jason Uhlenkott
2047M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002048L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002049W: bluesmoke.sourceforge.net
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002052
2053EDAC-I5000
2054P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002055M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002056L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002057W: bluesmoke.sourceforge.net
2058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002060
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002061EDAC-I5400
2062P: Mauro Carvalho Chehab
2063M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002064L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002065W: bluesmoke.sourceforge.net
2066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002068
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002069EDAC-I82975X
2070P: Ranganathan Desikan
2071P: Arvind R.
2072M: rdesikan@jetzbroadband.com
2073M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002074L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002075W: bluesmoke.sourceforge.net
2076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002077F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002078
2079EDAC-PASEMI
2080P: Egor Martovetsky
2081M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002082L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002083W: bluesmoke.sourceforge.net
2084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002086
Dave Peterson0e438e32006-03-26 01:38:55 -08002087EDAC-R82600
2088P: Tim Small
2089M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002090L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002091W: bluesmoke.sourceforge.net
2092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002093F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002094
Eric Coopere59f8792008-03-13 12:55:46 +01002095EEEPC LAPTOP EXTRAS DRIVER
2096P: Corentin Chary
2097M: corentincj@iksaif.net
2098L: acpi4asus-user@lists.sourceforge.net
2099W: http://sourceforge.net/projects/acpi4asus
2100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002102
Josh Triplett0bee8d22006-07-30 03:03:58 -07002103EFS FILESYSTEM
2104W: http://aeschi.ch.eu.org/efs/
2105S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002106F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002107
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002108EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002109P: Hoang-Nam Nguyen
2110M: hnguyen@de.ibm.com
2111P: Christoph Raisch
2112M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002113L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002116
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002117EMBEDDED LINUX
2118P: Paul Gortmaker
2119M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002120P: Matt Mackall
2121M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002122P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002123M: dwmw2@infradead.org
2124L: linux-embedded@vger.kernel.org
2125S: Maintained
2126
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002127EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002128P: James Smart
2129M: james.smart@emulex.com
2130L: linux-scsi@vger.kernel.org
2131W: http://sourceforge.net/projects/lpfcxxxx
2132S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002133F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002134
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002135ENE CB710 FLASH CARD READER DRIVER
2136P: Michał Mirosław
2137M: mirq-linux@rere.qmqm.pl
2138L: linux-kernel@vger.kernel.org
2139S: Maintained
2140F: drivers/misc/cb710/
2141F: drivers/mmc/host/cb710-mmc.*
2142F: include/linux/cb710.h
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144EPSON 1355 FRAMEBUFFER DRIVER
2145P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002146M: ch@murgatroid.com
2147P: Christopher Hoover
2148M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002150F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002152EPSON S1D13XXX FRAMEBUFFER DRIVER
2153P: Kristoffer Ericson
2154M: kristoffer.ericson@gmail.com
2155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: drivers/video/s1d13xxxfb.c
2157F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159ETHEREXPRESS-16 NETWORK DRIVER
2160P: Philip Blundell
2161M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002162L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166ETHERNET BRIDGE
2167P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002168M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002169L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002170W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: include/linux/netfilter_bridge/
2173F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175ETHERTEAM 16I DRIVER
2176P: Mika Kuoppala
2177M: miku@iki.fi
2178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002179F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002182L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: Documentation/filesystems/ext2.txt
2185F: fs/ext2/
2186F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002189P: Stephen Tweedie
2190M: sct@redhat.com
2191P: Andrew Morton
2192M: akpm@linux-foundation.org
2193P: Andreas Dilger
2194M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002195L: linux-ext4@vger.kernel.org
2196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002197F: Documentation/filesystems/ext3.txt
2198F: fs/ext3/
2199F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002200
2201EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002202P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002203M: tytso@mit.edu
2204P: Andreas Dilger
2205M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002206L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002207W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002209F: Documentation/filesystems/ext4.txt
2210F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jean Delvaree53004e2006-01-09 23:26:14 +01002212F71805F HARDWARE MONITORING DRIVER
2213P: Jean Delvare
2214M: khali@linux-fr.org
2215L: lm-sensors@lm-sensors.org
2216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002217F: Documentation/hwmon/f71805f
2218F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220FARSYNC SYNCHRONOUS DRIVER
2221P: Kevin Curtis
2222M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223W: http://www.farsite.co.uk/
2224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Akinobu Mitac5408b82007-04-23 14:41:20 -07002227FAULT INJECTION SUPPORT
2228P: Akinobu Mita
2229M: akinobu.mita@gmail.com
2230S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002231F: Documentation/fault-injection/
2232F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002233
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002234FILE LOCKING (flock() and fcntl()/lockf())
2235P: Matthew Wilcox
2236M: matthew@wil.cx
2237L: linux-fsdevel@vger.kernel.org
2238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002239F: include/linux/fcntl.h
2240F: include/linux/fs.h
2241F: fs/fcntl.c
2242F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002243
2244FILESYSTEMS (VFS and infrastructure)
2245P: Alexander Viro
2246M: viro@zeniv.linux.org.uk
2247L: linux-fsdevel@vger.kernel.org
2248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002249F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002250
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002251FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2252P: Riku Voipio
2253M: riku.vipio@iki.fi
2254L: lm-sensors@lm-sensors.org
2255S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002256F: drivers/hwmon/f75375s.c
2257F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002258
Joe Perches7d2c86b2009-04-07 20:59:01 -07002259FIREWIRE SUBSYSTEM
2260P: Kristian Hoegsberg
2261M: krh@redhat.com
2262P: Stefan Richter
2263M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264L: linux1394-devel@lists.sourceforge.net
2265W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002266T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: drivers/firewire/
2269F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002270
2271FIRMWARE LOADER (request_firmware)
2272L: linux-kernel@vger.kernel.org
2273S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002274F: Documentation/firmware_class/
2275F: drivers/base/firmware*.c
2276F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002277
2278FPU EMULATOR
2279P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002280M: billm@melbpc.org.au
2281W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002283F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002284
2285FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2286P: Mike McLagan
2287M: mike.mclagan@linux.org
2288L: netdev@vger.kernel.org
2289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002290F: drivers/net/wan/dlci.c
2291F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293FRAMEBUFFER LAYER
2294P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002295M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002296L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297W: http://linux-fbdev.sourceforge.net/
2298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/fb/
2300F: drivers/video/fb*
2301F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Zhang Wei173acc72008-03-01 07:42:48 -07002303FREESCALE DMA DRIVER
Zhang Wei76b0c7882008-05-13 14:44:59 -07002304P: Li Yang
2305M: leoli@freescale.com
2306P: Zhang Wei
2307M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002308L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002309L: linux-kernel@vger.kernel.org
2310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002311F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002312
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002313FREESCALE I2C CPM DRIVER
2314P: Jochen Friedrich
2315M: jochen@scram.de
2316L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002317L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002319F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002320
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002321FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2322P: Sascha Hauer
2323M: kernel@pengutronix.de
2324L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2325L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: arch/arm/plat-mxc/include/mach/imxfb.h
2328F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002329
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002330FREESCALE SOC FS_ENET DRIVER
2331P: Pantelis Antoniou
2332M: pantelis.antoniou@gmail.com
2333P: Vitaly Bordug
2334M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002335L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002336L: netdev@vger.kernel.org
2337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002338F: drivers/net/fs_enet/
2339F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002340
Timur Tabid9e9d822008-04-24 08:45:26 +10002341FREESCALE QUICC ENGINE LIBRARY
2342P: Timur Tabi
2343M: timur@freescale.com
2344L: linuxppc-dev@ozlabs.org
2345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002346F: arch/powerpc/sysdev/qe_lib/
2347F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002348
Li Yanga7205b32007-04-23 10:38:18 -07002349FREESCALE HIGHSPEED USB DEVICE DRIVER
2350P: Li Yang
2351M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002352L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002353L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002355F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002356
Li Yangbeaf53b2007-05-25 13:54:02 +08002357FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2358P: Li Yang
2359M: leoli@freescale.com
2360L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002361L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002363F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002364
Timur Tabid9e9d822008-04-24 08:45:26 +10002365FREESCALE QUICC ENGINE UCC UART DRIVER
2366P: Timur Tabi
2367M: timur@freescale.com
2368L: linuxppc-dev@ozlabs.org
2369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002370F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002371
2372FREESCALE SOC SOUND DRIVERS
2373P: Timur Tabi
2374M: timur@freescale.com
2375L: alsa-devel@alsa-project.org
2376L: linuxppc-dev@ozlabs.org
2377S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002378F: sound/soc/fsl/fsl*
2379F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381FREEVXFS FILESYSTEM
2382P: Christoph Hellwig
2383M: hch@infradead.org
2384W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002386F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Pavel Machek71038f52009-01-15 13:51:02 -08002388FREEZER
2389P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002390M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002391P: Rafael J. Wysocki
2392M: rjw@sisk.pl
2393L: linux-pm@lists.linux-foundation.org
2394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002395F: Documentation/power/freezing-of-tasks.txt
2396F: include/linux/freezer.h
2397F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002398
David Howellsa5432f52009-04-20 15:46:45 +01002399FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2400P: David Howells
2401M: dhowells@redhat.com
2402L: linux-cachefs@redhat.com
2403S: Supported
2404F: Documentation/filesystems/caching/
2405F: fs/fscache/
2406F: include/linux/fscache*.h
2407
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002408FTRACE
2409P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002410M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: Documentation/ftrace.txt
2413F: arch/*/*/*/ftrace.h
2414F: arch/*/kernel/ftrace.c
2415F: include/*/ftrace.h
2416F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002417
David Howells5ab7ffe2007-04-10 15:10:45 +01002418FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419P: David Howells
2420M: dhowells@redhat.com
2421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002422F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Jonathan Woithe20b93732008-06-11 10:14:56 +09302424FUJITSU LAPTOP EXTRAS
2425P: Jonathan Woithe
2426M: jwoithe@physics.adelaide.edu.au
2427L: linux-acpi@vger.kernel.org
2428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002429F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302430
Miklos Szeredi04578f12005-09-09 13:10:22 -07002431FUSE: FILESYSTEM IN USERSPACE
2432P: Miklos Szeredi
2433M: miklos@szeredi.hu
2434L: fuse-devel@lists.sourceforge.net
2435W: http://fuse.sourceforge.net/
2436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002437F: fs/fuse/
2438F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2441P: Rik Faith
2442M: faith@cs.unc.edu
2443L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002444S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002445F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
2447GDT SCSI DISK ARRAY CONTROLLER DRIVER
2448P: Achim Leubner
2449M: achim_leubner@adaptec.com
2450L: linux-scsi@vger.kernel.org
2451W: http://www.icp-vortex.com/
2452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002453F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002455GENERIC GPIO I2C DRIVER
2456P: Haavard Skinnemoen
2457M: hskinnemoen@atmel.com
2458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002459F: drivers/i2c/busses/i2c-gpio.c
2460F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002461
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002462GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463P: Krzysztof Halasa
2464M: khc@pm.waw.pl
2465W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002467F: drivers/net/wan/c101.c
2468F: drivers/net/wan/hd6457*
2469F: drivers/net/wan/hdlc*
2470F: drivers/net/wan/n2.c
2471F: drivers/net/wan/pc300too.c
2472F: drivers/net/wan/pci200syn.c
2473F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002475GFS2 FILE SYSTEM
2476P: Steven Whitehouse
2477M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002478L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002479W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002480T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2481T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002483F: Documentation/filesystems/gfs2*.txt
2484F: fs/gfs2/
2485F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002486
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002487GIGASET ISDN DRIVERS
2488P: Hansjoerg Lipp
2489M: hjlipp@web.de
2490P: Tilman Schmidt
2491M: tilman@imap.cc
2492L: gigaset307x-common@lists.sourceforge.net
2493W: http://gigaset307x.sourceforge.net/
2494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002495F: Documentation/isdn/README.gigaset
2496F: drivers/isdn/gigaset/
2497F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002498
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002499HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002500P: Frank Seidel
2501M: frank@f-seidel.de
2502L: lm-sensors@lm-sensors.org
2503W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002506
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002507HYPERVISOR VIRTUAL CONSOLE DRIVER
2508L: linuxppc-dev@ozlabs.org
2509L: linux-kernel@vger.kernel.org
2510S: Odd Fixes
2511F: drivers/char/hvc_*
2512
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002513GSPCA FINEPIX SUBDRIVER
2514P: Frank Zago
2515M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002516L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002517T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002520
2521GSPCA M5602 SUBDRIVER
2522P: Erik Andren
2523M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002524L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002525T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002527F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002528
2529GSPCA PAC207 SONIXB SUBDRIVER
2530P: Hans de Goede
2531M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002532L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002533T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002536
2537GSPCA T613 SUBDRIVER
2538P: Leandro Costantino
2539M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002540L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002541T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002543F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002544
2545GSPCA USB WEBCAM DRIVER
2546P: Jean-Francois Moine
2547M: moinejf@free.fr
2548W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002549L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002550T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002552F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002553
Jean Delvare5b543962005-08-15 19:51:02 +02002554HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002555L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002556W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002557S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002558F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002559
Michael Buesch844dd052006-06-26 00:24:59 -07002560HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002561S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002562F: Documentation/hw_random.txt
2563F: drivers/char/hw_random/
2564F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566HARMONY SOUND DRIVER
2567P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002568M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002569L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002571F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573HAYES ESP SERIAL DRIVER
2574P: Andrew J. Robinson
2575M: arobinso@nyx.net
2576L: linux-kernel@vger.kernel.org
2577W: http://www.nyx.net/~arobinso
2578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002579F: Documentation/serial/hayes-esp.txt
2580F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002581
2582HEWLETT-PACKARD SMART2 RAID DRIVER
2583P: Chirag Kantharia
2584M: chirag.kantharia@hp.com
2585L: iss_storagedev@hp.com
2586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002587F: Documentation/blockdev/cpqarray.txt
2588F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002589
2590HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2591P: Mike Miller
2592M: mike.miller@hp.com
2593L: iss_storagedev@hp.com
2594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002595F: Documentation/blockdev/cciss.txt
2596F: drivers/block/cciss*
2597F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599HFS FILESYSTEM
2600P: Roman Zippel
2601M: zippel@linux-m68k.org
2602L: linux-kernel@vger.kernel.org
2603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002604F: Documentation/filesystems/hfs.txt
2605F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607HGA FRAMEBUFFER DRIVER
2608P: Ferenc Bakonyi
2609M: fero@drama.obuda.kando.hu
2610L: linux-nvidia@lists.surfsouth.com
2611W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002613F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002615HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002616P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002617M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002618P: Rafael J. Wysocki
2619M: rjw@sisk.pl
2620L: linux-pm@lists.linux-foundation.org
2621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002622F: arch/x86/power/
2623F: drivers/base/power/
2624F: kernel/power/
2625F: include/linux/suspend.h
2626F: include/linux/freezer.h
2627F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002628F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002629
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002630HID CORE LAYER
2631P: Jiri Kosina
2632M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002633L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002634T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002636F: drivers/hid/
2637F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002638
Ingo Molnar38bed542007-02-22 09:09:34 +01002639HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2640P: Thomas Gleixner
2641M: tglx@linutronix.de
2642L: linux-kernel@vger.kernel.org
2643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002644F: Documentation/timers/
2645F: kernel/hrtimer.c
2646F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648HIGH-SPEED SCC DRIVER FOR AX.25
2649P: Klaus Kudielka
2650M: klaus.kudielka@ieee.org
2651L: linux-hams@vger.kernel.org
2652W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: drivers/net/hamradio/dmascc.c
2655F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002657HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2658P: HighPoint Linux Team
2659M: linux@highpoint-tech.com
2660W: http://www.highpoint-tech.com
2661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002662F: Documentation/scsi/hptiop.txt
2663F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665HIPPI
2666P: Jes Sorensen
2667M: jes@trained-monkey.org
2668L: linux-hippi@sunsite.dk
2669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: include/linux/hippidevice.h
2671F: include/linux/if_hippi.h
2672F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Jouni Malinenff1d2762005-05-12 22:54:16 -04002674HOST AP DRIVER
2675P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002676M: j@w1.fi
2677L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002678L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002679W: http://hostap.epitest.fi/
2680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002681F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002682
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002683HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2684P: Carlos Corbacho
2685M: carlos@strangeworlds.co.uk
2686S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002687F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002688
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002689HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2690P: Jaroslav Kysela
2691M: perex@perex.cz
2692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002693F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002694
Joe Perches7d2c86b2009-04-07 20:59:01 -07002695HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002696P: Clemens Ladisch
2697M: clemens@ladisch.de
2698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002699F: Documentation/timers/hpet.txt
2700F: drivers/char/hpet.c
2701F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002702
2703HPET: i386
2704P: Venkatesh Pallipadi (Venki)
2705M: venkatesh.pallipadi@intel.com
2706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002707F: arch/x86/kernel/hpet.c
2708F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002709
2710HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002711P: Vojtech Pavlik
2712M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002713S: Maintained
2714
Joe Perches7d2c86b2009-04-07 20:59:01 -07002715HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002716P: Bob Picco
2717M: bob.picco@hp.com
2718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002719F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721HPFS FILESYSTEM
2722P: Mikulas Patocka
2723M: mikulas@artax.karlin.mff.cuni.cz
2724W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002726F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Joe Perches7d2c86b2009-04-07 20:59:01 -07002728HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002729P: Jan Dumon
2730M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002731W: http://www.pharscape.org
2732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002733F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002734
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002735HTCPEN TOUCHSCREEN DRIVER
2736P: Pau Oliva Fora
2737M: pof@eslack.org
2738L: linux-input@vger.kernel.org
2739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002740F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742HUGETLB FILESYSTEM
2743P: William Irwin
2744M: wli@holomorphy.com
2745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002746F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002748I2C/SMBUS STUB DRIVER
2749P: Mark M. Hoffman
2750M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002751L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002753F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002754
Jean Delvare5b543962005-08-15 19:51:02 +02002755I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002756P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002758P: Ben Dooks (embedded platforms)
2759M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002760L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002761W: http://i2c.wiki.kernel.org/
2762T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: Documentation/i2c/
2765F: drivers/i2c/
2766F: include/linux/i2c.h
2767F: include/linux/i2c-dev.h
2768F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Till Harbaume8c76ee2007-05-01 23:26:35 +02002770I2C-TINY-USB DRIVER
2771P: Till Harbaum
2772M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002773L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002774W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002779P: H. Peter Anvin
2780M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781L: Linux-Kernel@vger.kernel.org
2782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002783F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786P: H. Peter Anvin
2787M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002788T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789S: Maintained
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791IA64 (Itanium) PLATFORM
2792P: Tony Luck
2793M: tony.luck@intel.com
2794L: linux-ia64@vger.kernel.org
2795W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002796T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002798F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800IBM MCA SCSI SUBSYSTEM DRIVER
2801P: Michael Lang
2802M: langa2@kph.uni-mainz.de
2803W: http://www.uni-mainz.de/~langm000/linux.html
2804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
2807IBM Power Linux RAID adapter
2808P: Brian King
2809M: brking@us.ibm.com
2810S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002811F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813IBM ServeRAID RAID DRIVER
2814P: Jack Hammer
2815P: Dave Jeffery
2816M: ipslinux@adaptec.com
2817W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002821IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002823M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002825T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002827F: Documentation/ide/
2828F: drivers/ide/
2829F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002831IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002832P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002833M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002834L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: Documentation/cdrom/ide-cd
2837F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Andy Henroid27471fd2008-10-09 11:45:22 -07002839IDLE-I7300
2840P: Andy Henroid
2841M: andrew.d.henroid@intel.com
2842L: linux-pm@lists.linux-foundation.org
2843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002844F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002845
Joe Perches7d2c86b2009-04-07 20:59:01 -07002846IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002848M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002849P: Stefan Richter
2850M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851L: linux1394-devel@lists.sourceforge.net
2852W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002853T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
Joe Perches7d2c86b2009-04-07 20:59:01 -07002857IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858P: Dan Dennedy
2859M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002860P: Stefan Richter
2861M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002865
Sergey Lapin02cf2282009-06-08 12:18:50 +00002866IEEE 802.15.4 SUBSYSTEM
2867P: Dmitry Eremin-Solenikov
2868M: dbaryshkov@gmail.com
2869P: Sergey Lapin
2870M: slapin@ossfans.org
2871L: linux-zigbee-devel@lists.sourceforge.net
2872W: http://apps.sourceforge.net/trac/linux-zigbee
2873T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git
2874S: Maintained
2875F: net/ieee802154/
2876F: drivers/ieee801254/
2877
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002878INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2879P: Mimi Zohar
2880M: zohar@us.ibm.com
2881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002882F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002885L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002886S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002887F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
2889INFINIBAND SUBSYSTEM
2890P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002891M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002893M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002895M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002896L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002898T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002900F: Documentation/infiniband/
2901F: drivers/infiniband/
2902F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Robert Lovec9f04f52005-07-15 12:21:07 -04002904INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01002905P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002906M: john@johnmccutchan.com
Cal Peake18b36c712006-12-12 20:18:16 +01002907P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002908M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002909P: Eric Paris
2910M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002911L: linux-kernel@vger.kernel.org
2912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002913F: Documentation/filesystems/inotify.txt
2914F: fs/notify/inotify/
2915F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002916
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002917INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2918P: Dmitry Torokhov
2919M: dmitry.torokhov@gmail.com
2920M: dtor@mail.ru
2921L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002922T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002924F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002925
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002926INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002927P: Sylvain Meyer
2928M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002929L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002931F: Documentation/fb/intelfb.txt
2932F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002935P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002936M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002937L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302941INTEL MENLOW THERMAL DRIVER
2942P: Sujith Thomas
2943M: sujith.thomas@intel.com
2944L: linux-acpi@vger.kernel.org
2945W: http://www.lesswatts.org/projects/acpi/
2946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002947F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949INTEL IA32 MICROCODE UPDATE SUPPORT
2950P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002951M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002953F: arch/x86/kernel/microcode_core.c
2954F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002956INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002957P: Maciej Sosnowski
2958M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002959L: linux-kernel@vger.kernel.org
2960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002961F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002962
David Woodhouse6c8909b2008-10-18 16:12:17 +01002963INTEL IOMMU (VT-d)
2964P: David Woodhouse
2965M: dwmw2@infradead.org
2966L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002967T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002969F: drivers/pci/intel-iommu.c
2970F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002971
Dan Williamsb3e5f262007-08-07 10:26:35 -07002972INTEL IOP-ADMA DMA DRIVER
2973P: Dan Williams
2974M: dan.j.williams@intel.com
2975L: linux-kernel@vger.kernel.org
2976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002977F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002978
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002979INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2980P: Krzysztof Halasa
2981M: khc@pm.waw.pl
2982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002983F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2984F: arch/arm/mach-ixp4xx/include/mach/npe.h
2985F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2986F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2987F: drivers/net/arm/ixp4xx_eth.c
2988F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002989
Michael Buesch844dd052006-06-26 00:24:59 -07002990INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2991P: Deepak Saxena
2992M: dsaxena@plexity.net
2993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002994F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002995
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002996INTEL IXP2000 ETHERNET DRIVER
2997P: Lennert Buytenhek
2998M: kernel@wantstofly.org
2999L: netdev@vger.kernel.org
3000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003002
Auke Kokd94e6fe2008-03-03 14:37:47 -08003003INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003004P: Jeff Kirsher
3005M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003006P: Jesse Brandeburg
3007M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003008P: Bruce Allan
3009M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003010P: PJ Waskiewicz
3011M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003012P: John Ronciak
3013M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003014L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003015W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003017F: drivers/net/e100.c
3018F: drivers/net/e1000/
3019F: drivers/net/e1000e/
3020F: drivers/net/igb/
3021F: drivers/net/ixgb/
3022F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
James Ketrenos826d2ab2005-11-07 18:56:59 -06003024INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003025P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003026M: yi.zhu@intel.com
3027P: James Ketrenos
3028M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003029P: Reinette Chatre
3030M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003031L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003032L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003033W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003034W: http://ipw2100.sourceforge.net
3035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003036F: Documentation/networking/README.ipw2100
3037F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003038
3039INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003040P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003041M: yi.zhu@intel.com
3042P: James Ketrenos
3043M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003044P: Reinette Chatre
3045M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003046L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003047L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003048W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003049W: http://ipw2200.sourceforge.net
3050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003051F: Documentation/networking/README.ipw2200
3052F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003053
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003054INTEL WIRELESS WIMAX CONNECTION 2400
3055P: Inaky Perez-Gonzalez
3056M: inaky.perez-gonzalez@intel.com
3057M: linux-wimax@intel.com
3058L: wimax@linuxwimax.org
3059S: Supported
3060W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003061F: Documentation/wimax/README.i2400m
3062F: drivers/net/wimax/i2400m/
3063F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003064
Zhu Yib481de92007-09-25 17:54:57 -07003065INTEL WIRELESS WIFI LINK (iwlwifi)
3066P: Zhu Yi
3067M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003068P: Reinette Chatre
3069M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003070L: linux-wireless@vger.kernel.org
3071L: ipw3945-devel@lists.sourceforge.net
3072W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003073T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003075F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003076
Ralf Baechlecb109a02007-08-30 23:56:30 -07003077IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078P: Ralf Baechle
3079M: ralf@linux-mips.org
3080L: linux-mips@linux-mips.org
3081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Ralf Baechlecb109a02007-08-30 23:56:30 -07003084IOC3 SERIAL DRIVER
3085P: Pat Gefre
3086M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003087L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003090
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003091IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092P: Juanjo Ciarlante
3093M: jjciarla@raiz.uncu.edu.ar
3094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003095F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Francois Romieu1202d6f2007-09-17 17:13:55 -07003097IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3098P: Francois Romieu
3099M: romieu@fr.zoreil.com
3100P: Sorbica Shieh
3101M: sorbica@icplus.com.tw
3102P: Jesse Huang
3103M: jesse@icplus.com.tw
3104L: netdev@vger.kernel.org
3105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003106F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003107
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003108IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003109P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003110M: infinipath@qlogic.com
3111L: general@lists.openfabrics.org
3112T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003114F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003115
Corey Minyard4409ebe2006-04-20 02:43:12 -07003116IPMI SUBSYSTEM
3117P: Corey Minyard
3118M: minyard@acm.org
3119L: openipmi-developer@lists.sourceforge.net
3120W: http://openipmi.sourceforge.net/
3121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003122F: Documentation/IPMI.txt
3123F: drivers/char/ipmi/
3124F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003125
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003126IPS SCSI RAID DRIVER
3127P: Adaptec OEM Raid Solutions
3128M: aacraid@adaptec.com
3129L: linux-scsi@vger.kernel.org
3130W: http://www.adaptec.com/
3131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003132F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003133
3134IPVS
3135P: Wensong Zhang
3136M: wensong@linux-vs.org
3137P: Simon Horman
3138M: horms@verge.net.au
3139P: Julian Anastasov
3140M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003141L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003142L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003144F: Documentation/networking/ipvs-sysctl.txt
3145F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Randy Dunlape7839f22008-10-12 16:11:45 -07003147IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003148P: Jiri Kosina
3149M: jkosina@suse.cz
3150P: David Sterba
3151M: dsterba@suse.cz
3152S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003153T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003155
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156IPX NETWORK LAYER
3157P: Arnaldo Carvalho de Melo
3158M: acme@ghostprotocols.net
3159L: netdev@vger.kernel.org
3160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003161F: include/linux/ipx.h
3162F: include/net/ipx.h
3163F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003164
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003166P: Samuel Ortiz
3167M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003168L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003170S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003171T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003172F: Documentation/networking/irda.txt
3173F: drivers/net/irda/
3174F: include/net/irda/
3175F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003177ISAPNP
3178P: Jaroslav Kysela
3179M: perex@perex.cz
3180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003181F: Documentation/isapnp.txt
3182F: drivers/pnp/isapnp/
3183F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003184
Mike Christie14816b1e2007-11-28 16:22:06 -08003185ISCSI
3186P: Mike Christie
3187M: michaelc@cs.wisc.edu
3188L: open-iscsi@googlegroups.com
3189W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003190T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003192F: drivers/scsi/*iscsi*
3193F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195ISDN SUBSYSTEM
3196P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003197M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003198L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003200T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: Documentation/isdn/
3203F: drivers/isdn/
3204F: include/linux/isdn.h
3205F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206
3207ISDN SUBSYSTEM (Eicon active card driver)
3208P: Armin Schindler
3209M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003210L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211W: http://www.melware.de
3212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003213F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Hans Verkuil91821ff2007-12-02 09:35:33 -03003215IVTV VIDEO4LINUX DRIVER
3216P: Hans Verkuil
3217M: hverkuil@xs4all.nl
3218L: ivtv-devel@ivtvdriver.org
3219L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003220L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003221T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003222W: http://www.ivtvdriver.org
3223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: Documentation/video4linux/*.ivtv
3225F: drivers/media/video/ivtv/
3226F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003227
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003228JFS FILESYSTEM
3229P: Dave Kleikamp
3230M: shaggy@austin.ibm.com
3231L: jfs-discussion@lists.sourceforge.net
3232W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003233T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003235F: Documentation/filesystems/jfs.txt
3236F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003238JME NETWORK DRIVER
3239P: Guo-Fu Tseng
3240M: cooldavid@cooldavid.org
3241L: netdev@vger.kernel.org
3242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003243F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3246P: David Woodhouse
3247M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003248L: linux-mtd@lists.infradead.org
3249W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: fs/jffs2/
3252F: include/linux/jffs2.h
3253F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Josh Triplettde456d32006-07-30 03:04:00 -07003255JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003256P: Stephen Tweedie
3257M: sct@redhat.com
3258P: Andrew Morton
3259M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003260L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003262F: fs/jbd*/
3263F: include/linux/ext*jbd*.h
3264F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003265
Rudolf Marek4660cb32006-10-08 22:01:26 +02003266K8TEMP HARDWARE MONITORING DRIVER
3267P: Rudolf Marek
3268M: r.marek@assembler.cz
3269L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: Documentation/hwmon/k8temp
3272F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274KCONFIG
3275P: Roman Zippel
3276M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003277L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003279F: Documentation/kbuild/kconfig-language.txt
3280F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Vivek Goyalea6c2082006-05-20 14:59:55 -07003282KDUMP
3283P: Vivek Goyal
Vivek Goyal4200b66c2007-12-01 12:16:30 -08003284M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003285P: Haren Myneni
3286M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003287L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003288L: linux-kernel@vger.kernel.org
3289W: http://lse.sourceforge.net/kdump/
3290S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003291F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293KERNEL AUTOMOUNTER (AUTOFS)
3294P: H. Peter Anvin
3295M: hpa@zytor.com
3296L: autofs@linux.kernel.org
3297S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003298F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300KERNEL AUTOMOUNTER v4 (AUTOFS4)
3301P: Ian Kent
3302M: raven@themaw.net
3303L: autofs@linux.kernel.org
3304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003305F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Joe Perches7d2c86b2009-04-07 20:59:01 -07003307KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308P: Sam Ravnborg
3309M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003310T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3311T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003312L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: Documentation/kbuild/
3315F: Makefile
3316F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318KERNEL JANITORS
3319P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003320L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322S: Maintained
3323
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003324KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003325P: J. Bruce Fields
3326M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003328M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003329L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003331S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003332F: fs/nfsd/
3333F: include/linux/nfsd/
3334F: fs/lockd/
3335F: fs/nfs_common/
3336F: net/sunrpc/
3337F: include/linux/lockd/
3338F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Avi Kivity426d62e2006-12-13 00:34:03 -08003340KERNEL VIRTUAL MACHINE (KVM)
3341P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003342M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003343L: kvm@vger.kernel.org
3344W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003346F: Documentation/*/kvm.txt
3347F: arch/*/kvm/
3348F: arch/*/include/asm/kvm*
3349F: include/linux/kvm*
3350F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003351
Joerg Roedelad8003d2008-09-10 20:01:07 +02003352KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3353P: Joerg Roedel
3354M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003355L: kvm@vger.kernel.org
3356W: http://kvm.qumranet.com
3357S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003358F: arch/x86/include/asm/svm.h
3359F: arch/x86/kvm/kvm_svm.h
3360F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003361
Hollis Blanchard513014b2008-04-16 23:28:08 -05003362KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3363P: Hollis Blanchard
3364M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003365L: kvm-ppc@vger.kernel.org
3366W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003368F: arch/powerpc/include/asm/kvm*
3369F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003370
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003371KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003372P: Xiantao Zhang
3373M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003374L: kvm-ia64@vger.kernel.org
3375W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003377F: Documentation/ia64/kvm.txt
3378F: arch/ia64/include/asm/kvm*
3379F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003380
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003381KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3382P: Carsten Otte
3383M: cotte@de.ibm.com
3384P: Christian Borntraeger
3385M: borntraeger@de.ibm.com
3386M: linux390@de.ibm.com
3387L: linux-s390@vger.kernel.org
3388W: http://www.ibm.com/developerworks/linux/linux390/
3389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003390F: Documentation/s390/kvm.txt
3391F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003392F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003393
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003394KEXEC
3395P: Eric Biederman
3396M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003397W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003398L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07003399L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003401F: include/linux/kexec.h
3402F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003403
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003404KGDB
3405P: Jason Wessel
3406M: jason.wessel@windriver.com
3407L: kgdb-bugreport@lists.sourceforge.net
3408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003409F: Documentation/DocBook/kgdb.tmpl
3410F: drivers/misc/kgdbts.c
3411F: drivers/serial/kgdboc.c
3412F: include/linux/kgdb.h
3413F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003414
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003415KMEMLEAK
3416P: Catalin Marinas
3417M: catalin.marinas@arm.com
3418L: linux-kernel@vger.kernel.org
3419S: Maintained
3420F: Documentation/kmemleak.txt
3421F: include/linux/kmemleak.h
3422F: mm/kmemleak.c
3423F: mm/kmemleak-test.c
3424
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003425KMEMTRACE
3426P: Eduard - Gabriel Munteanu
3427M: eduard.munteanu@linux360.ro
3428L: linux-kernel@vger.kernel.org
3429S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003430F: Documentation/trace/kmemtrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07003431F: include/trace/kmemtrace.h
3432F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003433
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003434KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003435P: Ananth N Mavinakayanahalli
3436M: ananth@in.ibm.com
3437P: Anil S Keshavamurthy
3438M: anil.s.keshavamurthy@intel.com
3439P: David S. Miller
3440M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003441P: Masami Hiramatsu
3442M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003443L: linux-kernel@vger.kernel.org
3444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003445F: Documentation/kprobes.txt
3446F: include/linux/kprobes.h
3447F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003448
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003449KS0108 LCD CONTROLLER DRIVER
3450P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003451M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003452L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07003453W: http://miguelojeda.es/auxdisplay.htm
3454W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/auxdisplay/ks0108
3457F: drivers/auxdisplay/ks0108.c
3458F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003462S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/networking/lapb-module.txt
3464F: include/*/lapb.h
3465F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
3467LASI 53c700 driver for PARISC
3468P: James E.J. Bottomley
3469M: James.Bottomley@HansenPartnership.com
3470L: linux-scsi@vger.kernel.org
3471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003472F: Documentation/scsi/53c700.txt
3473F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Richard Purdie263de9b2006-05-15 09:44:16 -07003475LED SUBSYSTEM
3476P: Richard Purdie
3477M: rpurdie@rpsys.net
3478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: drivers/leds/
3480F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482LEGO USB Tower driver
3483P: Juergen Stuber
3484M: starblue@users.sourceforge.net
3485L: legousb-devel@lists.sourceforge.net
3486W: http://legousb.sourceforge.net/
3487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003488F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Rusty Russell568a17f2007-10-25 14:12:24 +10003490LGUEST
3491P: Rusty Russell
3492M: rusty@rustcorp.com.au
3493L: lguest@ozlabs.org
3494W: http://lguest.ozlabs.org/
3495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/lguest/
3497F: arch/x86/lguest/
3498F: drivers/lguest/
3499F: include/linux/lguest*.h
3500F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003501
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502LINUX FOR IBM pSERIES (RS/6000)
3503P: Paul Mackerras
3504M: paulus@au.ibm.com
3505W: http://www.ibm.com/linux/ltc/projects/ppc
3506S: Supported
3507
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003508LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003509P: Benjamin Herrenschmidt
3510M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003511P: Paul Mackerras
3512M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513W: http://www.penguinppc.org/
3514L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003515T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516S: Supported
3517
3518LINUX FOR POWER MACINTOSH
3519P: Benjamin Herrenschmidt
3520M: benh@kernel.crashing.org
3521W: http://www.penguinppc.org/
3522L: linuxppc-dev@ozlabs.org
3523S: Maintained
3524
Grant Likely77a76362008-07-12 12:11:43 -06003525LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003526P: Grant Likely
3527M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003529T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530S: Maintained
3531
3532LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003533P: Josh Boyer
3534M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535P: Matt Porter
3536M: mporter@kernel.crashing.org
3537W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003538L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003539T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540S: Maintained
3541
Grant Likely260c02a2007-10-02 12:15:34 +10003542LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3543P: Grant Likely
3544M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003545W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003546L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003547T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548S: Maintained
3549
Tom Rinie93adf12005-07-26 12:49:53 -07003550LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003551P: Vitaly Bordug
3552M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003553P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003554M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003555W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003556L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003557S: Maintained
3558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003560P: Kumar Gala
3561M: galak@kernel.crashing.org
3562W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003563L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003564S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Olof Johanssonab06ff32006-09-06 14:44:54 -05003566LINUX FOR POWERPC PA SEMI PWRFICIENT
3567P: Olof Johansson
3568M: olof@lixom.net
3569W: http://www.pasemi.com/
3570L: linuxppc-dev@ozlabs.org
3571S: Supported
3572
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573LINUX SECURITY MODULE (LSM) FRAMEWORK
3574P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003575M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003576L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003577T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578S: Supported
3579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003580LLC (802.2)
3581P: Arnaldo Carvalho de Melo
3582M: acme@ghostprotocols.net
3583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: include/linux/llc.h
3585F: include/net/llc*
3586F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003587
Pavel Machek455fbdd2008-11-12 13:27:02 -08003588LIS3LV02D ACCELEROMETER DRIVER
3589P: Eric Piel
3590M: eric.piel@tremplin-utc.net
3591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003592F: Documentation/hwmon/lis3lv02d
3593F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595LM83 HARDWARE MONITOR DRIVER
3596P: Jean Delvare
3597M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003598L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003600F: Documentation/hwmon/lm83
3601F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602
3603LM90 HARDWARE MONITOR DRIVER
3604P: Jean Delvare
3605M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003606L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003608F: Documentation/hwmon/lm90
3609F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003611LOCKDEP AND LOCKSTAT
3612P: Peter Zijlstra
3613M: peterz@infradead.org
3614P: Ingo Molnar
3615M: mingo@redhat.com
3616L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003617T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003619F: Documentation/lockdep*.txt
3620F: Documentation/lockstat.txt
3621F: include/linux/lockdep.h
3622F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003623
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003624LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625P: Richard Russon (FlatCap)
3626M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003627L: linux-ntfs-dev@lists.sourceforge.net
3628W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003630F: Documentation/ldm.txt
3631F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003633LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3634P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003635M: Eric.Moore@lsi.com
3636M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003637L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003638L: linux-scsi@vger.kernel.org
3639W: http://www.lsilogic.com/support
3640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003641F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003642
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3644P: Matthew Wilcox
3645M: matthew@wil.cx
3646L: linux-scsi@vger.kernel.org
3647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
Mike Frysinger81365c32008-10-29 14:01:12 -07003650LTP (Linux Test Project)
3651P: Subrata Modak
3652M: subrata@linux.vnet.ibm.com
3653P: Mike Frysinger
3654M: vapier@gentoo.org
3655L: ltp-list@lists.sourceforge.net (subscribers-only)
3656W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003657T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003658S: Maintained
3659
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003660M32R ARCHITECTURE
3661P: Hirokazu Takata
3662M: takata@linux-m32r.org
3663L: linux-m32r@ml.linux-m32r.org
3664L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3665W: http://www.linux-m32r.org/
3666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: arch/m32r/
3668F: include/asm-m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670M68K ARCHITECTURE
3671P: Geert Uytterhoeven
3672M: geert@linux-m68k.org
3673P: Roman Zippel
3674M: zippel@linux-m68k.org
3675L: linux-m68k@lists.linux-m68k.org
3676W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003677T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003679F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003680F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681
3682M68K ON APPLE MACINTOSH
3683P: Joshua Thompson
3684M: funaho@jurai.org
3685W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003686L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003688F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690M68K ON HP9000/300
3691P: Philip Blundell
3692M: philb@gnu.org
3693W: http://www.tazenda.demon.co.uk/phil/linux-hp
3694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Jiri Benc64a327a2007-05-05 11:47:08 -07003697MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003698P: Johannes Berg
3699M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003700L: linux-wireless@vger.kernel.org
3701W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003702T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: Documentation/networking/mac80211-injection.txt
3705F: include/net/mac80211.h
3706F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003707
Stefano Brivio1036d862007-12-23 04:46:27 +01003708MAC80211 PID RATE CONTROL
3709P: Stefano Brivio
3710M: stefano.brivio@polimi.it
3711P: Mattias Nissler
3712M: mattias.nissler@gmx.de
3713L: linux-wireless@vger.kernel.org
3714W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003715T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003717F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003718
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003719MACVLAN DRIVER
3720P: Patrick McHardy
3721M: kaber@trash.net
3722L: netdev@vger.kernel.org
3723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003724F: drivers/net/macvlan.c
3725F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003726
Michael Kerriskfaf16682005-07-31 22:34:47 -07003727MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003728P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003729M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003730W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003731L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003732S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003733
Stefano Brivio74cda162007-11-19 20:27:46 +01003734MARVELL LIBERTAS WIRELESS DRIVER
3735P: Dan Williams
3736M: dcbw@redhat.com
3737L: libertas-dev@lists.infradead.org
3738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003739F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003740
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003741MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003742P: Lennert Buytenhek
3743M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003744L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003746F: drivers/net/mv643xx_eth.*
3747F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Pierre Ossman2a695672009-03-16 19:52:26 +01003749MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3750P: Nicolas Pitre
3751M: nico@cam.org
3752L: linux-kernel@vger.kernel.org
3753S: Maintained
3754
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003755MARVELL YUKON / SYSKONNECT DRIVER
3756P: Mirko Lindner
3757M: mlindner@syskonnect.de
3758P: Ralph Roesler
3759M: rroesler@syskonnect.de
3760W: http://www.syskonnect.com
3761S: Supported
3762
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763MATROX FRAMEBUFFER DRIVER
3764P: Petr Vandrovec
3765M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003766L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003768F: drivers/video/matrox/matroxfb_*
3769F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003771MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3772P: Hans J. Koch
3773M: hjk@linutronix.de
3774L: lm-sensors@lm-sensors.org
3775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003776F: Documentation/hwmon/max6650
3777F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003778
Joe Perches127c49a2009-04-08 08:34:04 -07003779MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3780P: Mauro Carvalho Chehab
3781M: mchehab@infradead.org
3782P: LinuxTV.org Project
3783L: linux-media@vger.kernel.org
3784W: http://linuxtv.org
3785T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3786S: Maintained
3787F: Documentation/dvb/
3788F: Documentation/video4linux/
3789F: drivers/media/
3790F: include/media/
3791F: include/linux/dvb/
3792F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003793
3794MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003795P: Neela Syam Kolli
Sumant Patrobdd0d7572007-05-10 07:22:35 -07003796M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003797L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003798W: http://megaraid.lsilogic.com
3799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003800F: Documentation/scsi/megaraid.txt
3801F: drivers/scsi/megaraid.*
3802F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804MEMORY MANAGEMENT
3805L: linux-mm@kvack.org
3806L: linux-kernel@vger.kernel.org
3807W: http://www.linux-mm.org
3808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: include/linux/mm.h
3810F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003811
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003812MEMORY RESOURCE CONTROLLER
3813P: Balbir Singh
3814M: balbir@linux.vnet.ibm.com
3815P: Pavel Emelyanov
3816M: xemul@openvz.org
3817P: KAMEZAWA Hiroyuki
3818M: kamezawa.hiroyu@jp.fujitsu.com
3819L: linux-mm@kvack.org
3820L: linux-kernel@vger.kernel.org
3821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003823
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824MEMORY TECHNOLOGY DEVICES (MTD)
3825P: David Woodhouse
3826M: dwmw2@infradead.org
3827W: http://www.linux-mtd.infradead.org/
3828L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003829T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003831F: drivers/mtd/
3832F: include/linux/mtd/
3833F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Michal Simekc6375b02009-03-27 14:25:52 +01003835MICROBLAZE ARCHITECTURE
3836P: Michal Simek
3837M: monstr@monstr.eu
3838L: microblaze-uclinux@itee.uq.edu.au
3839W: http://www.monstr.eu/fdt/
3840T: git git://git.monstr.eu/linux-2.6-microblaze.git
3841S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003842F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
3844MICROTEK X6 SCANNER
3845P: Oliver Neukum
3846M: oliver@neukum.name
3847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
3850MIPS
3851P: Ralf Baechle
3852M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003853W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003855T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003857F: Documentation/mips/
3858F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
3860MISCELLANEOUS MCA-SUPPORT
3861P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003862M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863L: linux-kernel@vger.kernel.org
3864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003865F: Documentation/ia64/mca.txt
3866F: Documentation/mca.txt
3867F: drivers/mca/
3868F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869
3870MODULE SUPPORT
3871P: Rusty Russell
3872M: rusty@rustcorp.com.au
3873L: linux-kernel@vger.kernel.org
3874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003875F: include/linux/module.h
3876F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3879P: Stelian Pop
3880M: stelian@popies.net
3881W: http://popies.net/meye/
3882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003883F: Documentation/video4linux/meye.txt
3884F: drivers/media/video/meye.*
3885F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Pavel Pisac58ff042007-05-16 01:10:41 +02003887MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3888P: Pavel Pisa
3889M: ppisa@pikron.com
3890L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894MOUSE AND MISC DEVICES [GENERAL]
3895P: Alessandro Rubini
3896M: rubini@ipvvis.unipv.it
3897L: linux-kernel@vger.kernel.org
3898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003899F: drivers/input/mouse/
3900F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Jiri Slabyb9705b62008-04-30 00:53:48 -07003902MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003903P: Jiri Slaby
3904M: jirislaby@gmail.com
3905L: linux-kernel@vger.kernel.org
3906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003907F: Documentation/serial/moxa-smartio
3908F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003909
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003910MSI LAPTOP SUPPORT
3911P: Lennart Poettering
3912M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003913W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003914W: http://0pointer.de/lennart/tchibo.html
3915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003916F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003917
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003918MULTIFUNCTION DEVICES (MFD)
3919P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003920M: sameo@linux.intel.com
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003921L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003922T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003924F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003925
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003926MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003927P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003928M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003929L: linux-kernel@vger.kernel.org
3930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003931F: drivers/mmc/
3932F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003933
David Brownell15a05802007-08-08 09:12:54 -07003934MULTIMEDIA CARD (MMC) ETC. OVER SPI
3935P: David Brownell
3936M: dbrownell@users.sourceforge.net
3937L: linux-kernel@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003938S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/mmc/host/mmc_spi.c
3940F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942MULTISOUND SOUND DRIVER
3943P: Andrew Veliath
3944M: andrewtv@usa.net
3945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003946F: Documentation/sound/oss/MultiSound
3947F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Jiri Slabyd7354102006-12-08 02:38:35 -08003949MULTITECH MULTIPORT CARD (ISICOM)
3950P: Jiri Slaby
3951M: jirislaby@gmail.com
3952L: linux-kernel@vger.kernel.org
3953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/char/isicom.c
3955F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003956
Felipe Balbi550a7372008-07-24 12:27:36 +03003957MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003958P: Felipe Balbi
3959M: felipe.balbi@nokia.com
3960L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003961T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003964
Brice Goglin2d3cf582008-05-17 12:45:36 +02003965MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3966P: Andrew Gallatin
3967M: gallatin@myri.com
3968P: Brice Goglin
3969M: brice@myri.com
3970L: netdev@vger.kernel.org
3971W: http://www.myri.com/scs/download-Myri10GE.html
3972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003973F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003976P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977M: thockin@hockin.org
3978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003979F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981NCP FILESYSTEM
3982P: Petr Vandrovec
3983M: vandrove@vc.cvut.cz
3984L: linware@sh.cvut.cz
3985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003986F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987
3988NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3989P: James E.J. Bottomley
3990M: James.Bottomley@HansenPartnership.com
3991L: linux-scsi@vger.kernel.org
3992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003993F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003995NETEFFECT IWARP RNIC DRIVER (IW_NES)
3996P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003997M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003998P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003999M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004000L: general@lists.openfabrics.org
4001W: http://www.neteffect.com
4002S: Supported
4003F: drivers/infiniband/hw/nes/
4004
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004005NETEM NETWORK EMULATOR
4006P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08004007M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004008L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004010F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004011
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004012NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004013P: Ramkrishna Vepa
4014M: ram.vepa@neterion.com
4015P: Rastapur Santosh
4016M: santosh.rastapur@neterion.com
4017P: Sivakumar Subramani
4018M: sivakumar.subramani@neterion.com
4019P: Sreenivasa Honnur
4020M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004021P: Anil Murthy
4022M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004023L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004024W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4025W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004027F: Documentation/networking/s2io.txt
4028F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030NETFILTER/IPTABLES/IPCHAINS
4031P: Rusty Russell
4032P: Marc Boucher
4033P: James Morris
4034P: Harald Welte
4035P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004036P: Patrick McHardy
4037M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004038L: netfilter-devel@vger.kernel.org
4039L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004040L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041W: http://www.netfilter.org/
4042W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004044F: include/linux/netfilter*
4045F: include/linux/netfilter/
4046F: include/net/netfilter/
4047F: net/*/netfilter.c
4048F: net/*/netfilter/
4049F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Paul Moore4cc67732006-09-25 15:57:13 -07004051NETLABEL
4052P: Paul Moore
4053M: paul.moore@hp.com
4054W: http://netlabel.sf.net
4055L: netdev@vger.kernel.org
4056S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004057F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004058F: include/net/netlabel.h
4059F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061NETROM NETWORK LAYER
4062P: Ralf Baechle
4063M: ralf@linux-mips.org
4064L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004065W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: include/linux/netrom.h
4068F: include/net/netrom.h
4069F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004071NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072P: Paul Clements
4073M: Paul.Clements@steeleye.com
4074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004075F: Documentation/blockdev/nbd.txt
4076F: drivers/block/nbd.c
4077F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004080P: David S. Miller
4081M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004082L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004083W: http://www.linuxfoundation.org/en/Net
4084T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004086F: net/
4087F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
4089NETWORKING [IPv4/IPv6]
4090P: David S. Miller
4091M: davem@davemloft.net
4092P: Alexey Kuznetsov
4093M: kuznet@ms2.inr.ac.ru
4094P: Pekka Savola (ipv6)
4095M: pekkas@netcore.fi
4096P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004097M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098P: Hideaki YOSHIFUJI
4099M: yoshfuji@linux-ipv6.org
4100P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004101M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004102L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004103T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004105F: net/ipv4/
4106F: net/ipv6/
4107F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
James Morris10e2ff12007-08-25 14:41:28 -07004109NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4110P: Paul Moore
4111M: paul.moore@hp.com
4112L: netdev@vger.kernel.org
4113S: Maintained
4114
John W. Linville29f8f632006-01-18 14:52:48 -08004115NETWORKING [WIRELESS]
4116P: John W. Linville
4117M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004118L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004119T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004121F: net/wireless/
4122F: include/net/ieee80211*
4123F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004124
Joe Perches788873a2009-04-16 09:38:45 +00004125NETWORKING DRIVERS
4126L: netdev@vger.kernel.org
4127W: http://www.linuxfoundation.org/en/Net
4128T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4129S: Odd Fixes
4130F: drivers/net/
4131
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004132NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004133P: Dhananjay Phadke
4134M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004135L: netdev@vger.kernel.org
4136W: http://www.netxen.com
4137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004138F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004139
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004140NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004142M: Trond.Myklebust@netapp.com
4143L: linux-nfs@vger.kernel.org
4144W: http://client.linux-nfs.org
4145T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004147F: fs/lockd/
4148F: fs/nfs/
4149F: fs/nfs_common/
4150F: net/sunrpc/
4151F: include/linux/lockd/
4152F: include/linux/nfs*
4153F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
4155NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004156P: Jan-Pascal van Best
4157M: janpascal@vanbest.org
4158P: Andreas Mohr
4159M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004160L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004162F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004164NILFS2 FILESYSTEM
4165P: KONISHI Ryusuke
4166M: konishi.ryusuke@lab.ntt.co.jp
4167L: users@nilfs.org
4168W: http://www.nilfs.org/en/
4169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004170F: Documentation/filesystems/nilfs2.txt
4171F: fs/nilfs2/
4172F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004173
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4175P: YOKOTA Hiroshi
4176M: yokota@netlab.is.tsukuba.ac.jp
4177W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004179F: Documentation/scsi/NinjaSCSI.txt
4180F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
4182NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4183P: GOTO Masanori
4184M: gotom@debian.or.jp
4185P: YOKOTA Hiroshi
4186M: yokota@netlab.is.tsukuba.ac.jp
4187W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004189F: Documentation/scsi/NinjaSCSI.txt
4190F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192NTFS FILESYSTEM
4193P: Anton Altaparmakov
4194M: aia21@cantab.net
4195L: linux-ntfs-dev@lists.sourceforge.net
4196L: linux-kernel@vger.kernel.org
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004197W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004198T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: Documentation/filesystems/ntfs.txt
4201F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004203NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004204P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004205M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004206L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004208F: drivers/video/riva/
4209F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Tony Lindgrenf5525782009-05-28 13:23:53 -07004211OMAP SUPPORT
4212P: Tony Lindgren <tony@atomide.com>
4213M: tony@atomide.com
4214L: linux-omap@vger.kernel.org
4215W: http://www.muru.com/linux/omap/
4216W: http://linux.omap.com/
4217T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4218S: Maintained
4219F: arch/arm/*omap*
4220
4221OMAP CLOCK FRAMEWORK SUPPORT
4222P: Paul Walmsley
4223M: paul@pwsan.com
4224L: linux-omap@vger.kernel.org
4225S: Maintained
4226F: arch/arm/*omap*/*clock*
4227
4228OMAP POWER MANAGEMENT SUPPORT
4229P: Kevin Hilman
4230M: khilman@deeprootsystems.com
4231L: linux-omap@vger.kernel.org
4232S: Maintained
4233F: arch/arm/*omap*/*pm*
4234
4235OMAP AUDIO SUPPORT
4236P: Jarkko Nikula
4237M: jhnikula@gmail.com
4238L: alsa-devel@alsa-project.org (subscribers-only)
4239L: linux-omap@vger.kernel.org
4240S: Maintained
4241F: sound/soc/omap/
4242
4243OMAP FRAMEBUFFER SUPPORT
4244P: Imre Deak
4245M: imre.deak@nokia.com
4246L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4247L: linux-omap@vger.kernel.org
4248S: Maintained
4249F: drivers/video/omap/
4250
4251OMAP MMC SUPPORT
4252P: Jarkko Lavinen
4253M: jarkko.lavinen@nokia.com
4254L: linux-kernel@vger.kernel.org
4255L: linux-omap@vger.kernel.org
4256S: Maintained
4257F: drivers/mmc/host/*omap*
4258
4259OMAP RANDOM NUMBER GENERATOR SUPPORT
4260P: Deepak Saxena
4261M: dsaxena@plexity.net
4262S: Maintained
4263F: drivers/char/hw_random/omap-rng.c
4264
4265OMAP USB SUPPORT
4266P: Felipe Balbi
4267M: felipe.balbi@nokia.com
4268P: David Brownell
4269M: dbrownell@users.sourceforge.net
4270L: linux-usb@vger.kernel.org
4271L: linux-omap@vger.kernel.org
4272S: Maintained
4273
Bob Copeland0ad122d2008-07-25 19:45:18 -07004274OMFS FILESYSTEM
4275P: Bob Copeland
4276M: me@bobcopeland.com
4277L: linux-karma-devel@lists.sourceforge.net
4278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/filesystems/omfs.txt
4280F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004281
Harald Weltec1986ee2005-11-13 16:06:29 -08004282OMNIKEY CARDMAN 4000 DRIVER
4283P: Harald Welte
4284M: laforge@gnumonks.org
4285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/char/pcmcia/cm4000_cs.c
4287F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004288
Harald Welte77c44ab2005-11-13 16:06:26 -08004289OMNIKEY CARDMAN 4040 DRIVER
4290P: Harald Welte
4291M: laforge@gnumonks.org
4292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004293F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004294
Jonathan Corbet77d51402007-03-22 19:44:17 -03004295OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004296P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004297M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004298L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004299T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004301F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004302
Thomas Gleixner431bca72007-05-02 09:31:35 +02004303ONENAND FLASH DRIVER
4304P: Kyungmin Park
4305M: kyungmin.park@samsung.com
4306L: linux-mtd@lists.infradead.org
4307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004308F: drivers/mtd/onenand/
4309F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004310
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311ONSTREAM SCSI TAPE DRIVER
4312P: Willem Riede
4313M: osst@riede.org
4314L: osst-users@lists.sourceforge.net
4315L: linux-scsi@vger.kernel.org
4316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004317F: drivers/scsi/osst*
4318F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004320OPENCORES I2C BUS DRIVER
4321P: Peter Korsgaard
4322M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004323L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004325F: Documentation/i2c/busses/i2c-ocores
4326F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004327
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004329P: Robert Richter
4330M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331L: oprofile-list@lists.sf.net
4332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004333F: arch/*/oprofile/
4334F: drivers/oprofile/
4335F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004337ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4338P: Mark Fasheh
4339M: mfasheh@suse.com
4340P: Joel Becker
4341M: joel.becker@oracle.com
4342L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4343W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004344T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004346F: Documentation/filesystems/ocfs2.txt
4347F: Documentation/filesystems/dlmfs.txt
4348F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350ORINOCO DRIVER
4351P: Pavel Roskin
4352M: proski@gnu.org
4353P: David Gibson
4354M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004355L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004356L: orinoco-users@lists.sourceforge.net
4357L: orinoco-devel@lists.sourceforge.net
4358W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004360F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
Boaz Harrosh68274792009-01-25 17:24:14 +02004362OSD LIBRARY
4363P: Boaz Harrosh
4364M: bharrosh@panasas.com
4365P: Benny Halevy
4366M: bhalevy@panasas.com
4367L: osd-dev@open-osd.org
4368W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004369T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004370S: Maintained
4371
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004372P54 WIRELESS DRIVER
4373P: Michael Wu
4374M: flamingice@sourmilk.net
4375L: linux-wireless@vger.kernel.org
4376W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004377T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004380
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004381PA SEMI ETHERNET DRIVER
4382P: Olof Johansson
4383M: olof@lixom.net
4384L: netdev@vger.kernel.org
4385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004386F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004387
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004388PA SEMI SMBUS DRIVER
4389P: Olof Johansson
4390M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004391L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004393F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004394
Harald Welte709ee532008-09-23 17:46:57 +02004395PANASONIC LAPTOP ACPI EXTRAS DRIVER
4396P: Harald Welte
4397M: laforge@gnumonks.org
4398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004400
David Howells4fa97182008-10-13 10:42:44 +01004401PANASONIC MN10300/AM33 PORT
4402P: David Howells
4403M: dhowells@redhat.com
4404P: Koichi Yasutake
4405M: yasutake.koichi@jp.panasonic.com
4406L: linux-am33-list@redhat.com (moderated for non-subscribers)
4407W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: Documentation/mn10300/
4410F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004413L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004414S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004415F: drivers/parport/
4416F: include/linux/parport*.h
4417F: drivers/char/ppdev.c
4418F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004420PARAVIRT_OPS INTERFACE
4421P: Jeremy Fitzhardinge
4422M: jeremy@xensource.com
4423P: Chris Wright
4424M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004425P: Alok Kataria
4426M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004427P: Rusty Russell
4428M: rusty@rustcorp.com.au
4429L: virtualization@lists.osdl.org
4430L: linux-kernel@vger.kernel.org
4431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004432F: Documentation/ia64/paravirt_ops.txt
4433F: arch/*/kernel/paravirt*
4434F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004435
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4437P: Tim Waugh
4438M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004439L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440W: http://www.torque.net/linux-pp.html
4441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/blockdev/paride.txt
4443F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
4445PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004446P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004447M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004448P: Helge Deller
4449M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004450L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004452T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004454F: arch/parisc/
4455F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Jim Cromie1662d322006-10-06 00:43:59 -07004457PC87360 HARDWARE MONITORING DRIVER
4458P: Jim Cromie
4459M: jim.cromie@gmail.com
4460L: lm-sensors@lm-sensors.org
4461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: Documentation/hwmon/pc87360
4463F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004464
4465PC8736x GPIO DRIVER
4466P: Jim Cromie
4467M: jim.cromie@gmail.com
4468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004469F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004470
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004471PCA9532 LED DRIVER
4472P: Riku Voipio
4473M: riku.voipio@iki.fi
4474S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004475F: drivers/leds/leds-pca9532.c
4476F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004477
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004478PCI ERROR RECOVERY
4479P: Linas Vepstas
4480M: linas@austin.ibm.com
4481L: linux-kernel@vger.kernel.org
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004482L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004483S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004484F: Documentation/PCI/pci-error-recovery.txt
4485F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004486
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004488P: Jesse Barnes
4489M: jbarnes@virtuousgeek.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490L: linux-kernel@vger.kernel.org
Jesse Barnes29054742008-05-03 08:35:49 -07004491L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004492T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004494F: Documentation/PCI/
4495F: drivers/pci/
4496F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004498PCIE HOTPLUG DRIVER
4499P: Kristen Carlson Accardi
4500M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004501L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004502S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004503F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004506P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004507L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004508W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004509T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004511F: Documentation/pcmcia/
4512F: drivers/pcmcia/
4513F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
4515PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004516P: Don Fry
4517M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004518L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004520F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004522PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004523P: Balbir Singh
4524M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004525L: linux-kernel@vger.kernel.org
4526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004527F: include/linux/delayacct.h
4528F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004529
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004530PERFORMANCE COUNTER SUBSYSTEM
4531P: Peter Zijlstra
4532M: a.p.zijlstra@chello.nl
4533P: Paul Mackerras
4534M: paulus@samba.org
4535P: Ingo Molnar
4536M: mingo@elte.hu
4537L: linux-kernel@vger.kernel.org
4538S: Supported
4539
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004540PERSONALITY HANDLING
4541P: Christoph Hellwig
4542M: hch@infradead.org
4543L: linux-abi-devel@lists.sourceforge.net
4544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004548P: Joern Engel
4549M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550L: linux-mtd@lists.infradead.org
4551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004552F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Peter Osterlund249a6772005-09-27 21:45:30 -07004554PKTCDVD DRIVER
4555P: Peter Osterlund
4556M: petero2@telia.com
4557L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07004558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004559F: drivers/block/pktcdvd.c
4560F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004563P: Thomas Gleixner
4564M: tglx@linutronix.de
Hormsf1c3ddf2006-01-15 02:18:28 +01004565L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004567F: fs/timerfd.c
4568F: include/linux/timer*
4569F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Anton Vorontsov3be86142007-07-15 04:43:36 +04004571POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4572P: Anton Vorontsov
4573M: cbou@mail.ru
4574P: David Woodhouse
4575M: dwmw2@infradead.org
4576L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004577T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: include/linux/power_supply.h
4580F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004581
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582PNP SUPPORT
4583P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004584M: abelay@mit.edu
4585P: Bjorn Helgaas
4586M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004588F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Vitaly Wool999445d2007-01-04 13:07:03 +01004590PNXxxxx I2C DRIVER
4591P: Vitaly Wool
4592M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004593L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004595F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004596
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597PPP PROTOCOL DRIVERS AND COMPRESSORS
4598P: Paul Mackerras
4599M: paulus@samba.org
4600L: linux-ppp@vger.kernel.org
4601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004602F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
4604PPP OVER ATM (RFC 2364)
4605P: Mitchell Blank Jr
4606M: mitch@sfgoth.com
4607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: net/atm/pppoatm.c
4609F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
4611PPP OVER ETHERNET
4612P: Michal Ostrowski
Chris Wright5e70b7f32008-06-09 16:07:28 -07004613M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004615F: drivers/net/pppoe.c
4616F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617
James Chapmana6d23702007-06-27 15:53:17 -07004618PPP OVER L2TP
4619P: James Chapman
4620M: jchapman@katalix.com
4621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: drivers/net/pppol2tp.c
4623F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004624
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625PREEMPTIBLE KERNEL
4626P: Robert Love
4627M: rml@tech9.net
4628L: linux-kernel@vger.kernel.org
4629L: kpreempt-tech@lists.sourceforge.net
4630W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004632F: Documentation/preempt-locking.txt
4633F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634
4635PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004636P: Luis R. Rodriguez
4637M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004638L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639W: http://prism54.org
4640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004641F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
4643PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4644P: Peter Denison
4645M: promise@pnd-pc.demon.co.uk
4646W: http://www.pnd-pc.demon.co.uk/promise/
4647S: Maintained
4648
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004649PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4650P: Mikael Pettersson
4651M: mikpe@it.uu.se
4652L: linux-ide@vger.kernel.org
4653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004654F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004655
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004656PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004657P: Geoff Levand
4658M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004659L: netdev@vger.kernel.org
4660L: cbe-oss-dev@ozlabs.org
4661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004662F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004663
Geoff Levandf58a9d12006-11-23 00:46:51 +01004664PS3 PLATFORM SUPPORT
4665P: Geoff Levand
4666M: geoffrey.levand@am.sony.com
4667L: linuxppc-dev@ozlabs.org
4668L: cbe-oss-dev@ozlabs.org
4669S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004670F: arch/powerpc/boot/ps3*
4671F: arch/powerpc/include/asm/lv1call.h
4672F: arch/powerpc/include/asm/ps3*.h
4673F: arch/powerpc/platforms/ps3/
4674F: drivers/*/ps3*
4675F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004676F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004677F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004678F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004679
Jim Pariscffb4add2009-01-06 11:32:10 +00004680PS3VRAM DRIVER
4681P: Jim Paris
4682M: jim@jtan.com
4683L: cbe-oss-dev@ozlabs.org
4684S: Maintained
4685
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004686PTRACE SUPPORT
4687P: Roland McGrath
4688M: roland@redhat.com
4689P: Oleg Nesterov
4690M: oleg@redhat.com
4691L: linux-kernel@vger.kernel.org
4692S: Maintained
4693F: include/asm-generic/syscall.h
4694F: include/linux/ptrace.h
4695F: include/linux/regset.h
4696F: include/linux/tracehook.h
4697F: kernel/ptrace.c
4698
Michael Krufky83202042006-07-03 00:24:18 -07004699PVRUSB2 VIDEO4LINUX DRIVER
4700P: Mike Isely
4701M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004702L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004703L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004704W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004705T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/video4linux/README.pvrusb2
4708F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004709
Eric Miao30ec2612008-06-12 15:21:41 -07004710PXA2xx/PXA3xx SUPPORT
4711P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004712M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004713P: Russell King
4714M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004715L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004717F: arch/arm/mach-pxa/
4718F: drivers/pcmcia/pxa2xx*
4719F: drivers/spi/pxa2xx*
4720F: drivers/usb/gadget/pxa2*
4721F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004722F: sound/arm/pxa*
4723F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004725PXA168 SUPPORT
4726P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004727M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004728P: Jason Chagas
4729M: jason.chagas@marvell.com
4730L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004731T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004732S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004733
Eric Miao5fa82eb2009-03-20 12:52:24 +08004734PXA910 SUPPORT
4735P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004736M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004737L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004738T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004739S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004740
Pierre Ossman272f1332007-05-14 21:25:26 +02004741PXA MMCI DRIVER
4742S: Orphan
4743
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004744PXA RTC DRIVER
4745P: Robert Jarzmik
4746M: robert.jarzmik@free.fr
4747L: rtc-linux@googlegroups.com
4748S: Maintained
4749
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750QLOGIC QLA2XXX FC-SCSI DRIVER
4751P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004752M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753L: linux-scsi@vger.kernel.org
4754S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004755F: Documentation/scsi/LICENSE.qla2xxx
4756F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
Ron Mercer5a4faa872006-07-25 00:40:21 -07004758QLOGIC QLA3XXX NETWORK DRIVER
4759P: Ron Mercer
4760M: linux-driver@qlogic.com
4761L: netdev@vger.kernel.org
4762S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004763F: Documentation/networking/LICENSE.qla3xxx
4764F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004765
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004766QLOGIC QLGE 10Gb ETHERNET DRIVER
4767P: Ron Mercer
4768M: linux-driver@qlogic.com
4769M: ron.mercer@qlogic.com
4770L: netdev@vger.kernel.org
4771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004772F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774QNX4 FILESYSTEM
4775P: Anders Larsen
4776M: al@alarsen.net
4777L: linux-kernel@vger.kernel.org
4778W: http://www.alarsen.net/linux/qnx4fs/
4779S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004780F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004781F: include/linux/qnx4_fs.h
4782F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004785P: Benjamin Herrenschmidt
4786M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004787L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004789F: drivers/video/aty/radeon*
4790F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004793P: Paul Mackerras
4794M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004795L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Randy Dunlape7839f22008-10-12 16:11:45 -07004799RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004800P: rt2x00 project
4801L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004802L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004803W: http://rt2x00.serialmonkey.com/
4804S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004805T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004806F: drivers/net/wireless/rt2x00/
4807
Nick Piggin9db55792008-02-08 04:19:49 -08004808RAMDISK RAM BLOCK DEVICE DRIVER
4809P: Nick Piggin
4810M: npiggin@suse.de
4811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: Documentation/blockdev/ramdisk.txt
4813F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004814
Matt Mackall9e95ce22005-04-16 15:25:56 -07004815RANDOM NUMBER DRIVER
4816P: Matt Mackall
4817M: mpm@selenic.com
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004820
Matt Porter394b7012005-11-07 01:00:15 -08004821RAPIDIO SUBSYSTEM
4822P: Matt Porter
4823M: mporter@kernel.crashing.org
4824L: linux-kernel@vger.kernel.org
4825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004826F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004827
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004828RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4829P: Corey Thomas
4830M: coreythomas@charter.net
4831L: linux-wireless@vger.kernel.org
4832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004833F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004834
4835RCUTORTURE MODULE
4836P: Josh Triplett
4837M: josh@freedesktop.org
4838L: linux-kernel@vger.kernel.org
4839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: Documentation/RCU/torture.txt
4841F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004842
Florian Fainellic1f766b2008-02-06 22:39:44 +01004843RDC R-321X SoC
4844P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004845M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004846L: linux-kernel@vger.kernel.org
4847S: Maintained
4848
Florian Fainellidb17f392007-12-19 11:30:30 +01004849RDC R6040 FAST ETHERNET DRIVER
4850P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004851M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004852L: netdev@vger.kernel.org
4853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004854F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004855
Andy Grovera09ed662009-02-24 15:30:41 +00004856RDS - RELIABLE DATAGRAM SOCKETS
4857P: Andy Grover
4858M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004859L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004861F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004862
Josh Triplett595182b2006-10-04 02:17:21 -07004863READ-COPY UPDATE (RCU)
4864P: Dipankar Sarma
4865M: dipankar@in.ibm.com
4866W: http://www.rdrop.com/users/paulmck/rclock/
4867L: linux-kernel@vger.kernel.org
4868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004869F: Documentation/RCU/rcu.txt
4870F: Documentation/RCU/rcuref.txt
4871F: include/linux/rcupdate.h
4872F: include/linux/srcu.h
4873F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004874
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875REAL TIME CLOCK DRIVER
4876P: Paul Gortmaker
4877M: p_gortmaker@yahoo.com
4878L: linux-kernel@vger.kernel.org
4879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004880F: Documentation/rtc.txt
4881F: drivers/rtc/
4882F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004884REAL TIME CLOCK (RTC) SUBSYSTEM
4885P: Alessandro Zummo
4886M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004887L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: Documentation/rtc.txt
4890F: drivers/rtc/
4891F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004894L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004896F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897
Ivo van Doorne08976452008-04-12 19:23:55 +02004898RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004899P: Johannes Berg
4900M: johannes@sipsolutions.net
4901L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004902S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004903F Documentation/rfkill.txt
4904F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004905
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004906RISCOM8 DRIVER
4907S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004908F: Documentation/serial/riscom8.txt
4909F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911ROCKETPORT DRIVER
4912P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913W: http://www.comtrol.com
4914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004915F: Documentation/serial/rocket.txt
4916F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
4918ROSE NETWORK LAYER
4919P: Ralf Baechle
4920M: ralf@linux-mips.org
4921L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004922W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004924F: include/linux/rose.h
4925F: include/net/rose.h
4926F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927
Larry Finger59840482008-11-12 17:13:09 -06004928RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004929P: John W. Linville
4930M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004931L: linux-wireless@vger.kernel.org
4932W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004933T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004935F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004936
Larry Finger59840482008-11-12 17:13:09 -06004937RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004938P: Herton Ronaldo Krzesinski
4939M: herton@mandriva.com.br
4940P: Hin-Tak Leung
4941M: htl10@users.sourceforge.net
4942P: Larry Finger
4943M: Larry.Finger@lwfinger.net
4944L: linux-wireless@vger.kernel.org
4945W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004946T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004949
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004950S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004951P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004952M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004953L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004955F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957S390
4958P: Martin Schwidefsky
4959M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004960P: Heiko Carstens
4961M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004963L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004964W: http://www.ibm.com/developerworks/linux/linux390/
4965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004966F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004967
4968S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004969P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004970M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004971P: Frank Blaschka
4972M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004973M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004974L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004975W: http://www.ibm.com/developerworks/linux/linux390/
4976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004977F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004978
Felix Beckfeed9b62009-03-26 15:24:23 +01004979S390 ZCRYPT DRIVER
4980P: Felix Beck
4981M: felix.beck@de.ibm.com
4982P: Ralph Wuerthner
4983M: ralph.wuerthner@de.ibm.com
4984M: linux390@de.ibm.com
4985L: linux-s390@vger.kernel.org
4986S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004987F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004988
Heiko Carstens5238da42006-02-11 17:56:01 -08004989S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004990P: Christof Schmitt
4991M: christof.schmitt@de.ibm.com
4992P: Martin Peschke
4993M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004994M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004995L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004996W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004998F: Documentation/s390/zfcpdump.txt
4999F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Ursula Braundd96df22007-09-19 13:09:02 +02005001S390 IUCV NETWORK LAYER
5002P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005003M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02005004M: linux390@de.ibm.com
5005L: linux-s390@vger.kernel.org
5006W: http://www.ibm.com/developerworks/linux/linux390/
5007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005008F: drivers/s390/net/*iucv*
5009F: include/net/iucv/
5010F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005011
Ben Dooks4dde7f72008-06-30 22:40:38 +01005012S3C24XX SD/MMC Driver
5013P: Ben Dooks
5014M: ben-linux@fluff.org
5015L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5016L: linux-kernel@vger.kernel.org
5017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005018F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020SAA7146 VIDEO4LINUX-2 DRIVER
5021P: Michael Hunold
5022M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005023L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005024T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025W: http://www.mihu.de/linux/saa7146
5026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005027F: drivers/media/common/saa7146*
5028F: drivers/media/video/*7146*
5029F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031SC1200 WDT DRIVER
5032P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005033M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005035F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037SCHEDULER
5038P: Ingo Molnar
5039M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005040P: Peter Zijlstra
5041M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042L: linux-kernel@vger.kernel.org
5043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: kernel/sched*
5045F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047SCSI CDROM DRIVER
5048P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005049M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050L: linux-scsi@vger.kernel.org
5051W: http://www.kernel.dk
5052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005053F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
5055SCSI SG DRIVER
5056P: Doug Gilbert
5057M: dgilbert@interlog.com
5058L: linux-scsi@vger.kernel.org
5059W: http://www.torque.net/sg
5060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: drivers/scsi/sg.c
5062F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064SCSI SUBSYSTEM
5065P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005066M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005068T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5069T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5070T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: drivers/scsi/
5073F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
5075SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005076P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077M: Kai.Makisara@kolumbus.fi
5078L: linux-scsi@vger.kernel.org
5079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005080F: Documentation/scsi/st.txt
5081F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
5083SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005084P: Vlad Yasevich
5085M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005086P: Sridhar Samudrala
5087M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005088L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005089W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005091F: Documentation/networking/sctp.txt
5092F: include/linux/sctp.h
5093F: include/net/sctp/
5094F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095
5096SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005097P: Jim Cromie
5098M: jim.cromie@gmail.com
5099S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005100F: Documentation/i2c/busses/scx200_acb
5101F: arch/x86/kernel/scx200_32.c
5102F: drivers/watchdog/scx200_wdt.c
5103F: drivers/i2c/busses/scx200*
5104F: drivers/mtd/maps/scx200_docflash.c
5105F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005106
5107SCx200 GPIO DRIVER
5108P: Jim Cromie
5109M: jim.cromie@gmail.com
5110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005111F: drivers/char/scx200_gpio.c
5112F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005113
5114SCx200 HRT CLOCKSOURCE DRIVER
5115P: Jim Cromie
5116M: jim.cromie@gmail.com
5117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005118F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119
Sascha Sommer6a369132008-07-15 14:21:29 +02005120SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5121P: Sascha Sommer
5122M: saschasommer@freenet.de
5123L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005125F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005126
Randy Dunlape7839f22008-10-12 16:11:45 -07005127SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005128P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005129M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005130L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005131S: Maintained
5132
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005133SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5134P: Anton Vorontsov
5135M: avorontsov@ru.mvista.com
5136L: linuxppc-dev@ozlabs.org
5137L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
James Morris8711cca2008-12-04 03:19:45 +11005141SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005142P: James Morris
5143M: jmorris@namei.org
5144L: linux-kernel@vger.kernel.org
5145L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005146T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005147W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005148S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005149F: security/
James Morris8711cca2008-12-04 03:19:45 +11005150
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151SECURITY CONTACT
5152P: Security Officers
5153M: security@kernel.org
5154S: Supported
5155
5156SELINUX SECURITY MODULE
5157P: Stephen Smalley
5158M: sds@tycho.nsa.gov
5159P: James Morris
5160M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005161P: Eric Paris
5162M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163L: linux-kernel@vger.kernel.org (kernel issues)
Joe Perches7d2c86b2009-04-07 20:59:01 -07005164L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005165W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005166T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005168F: include/linux/selinux*
5169F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
Jiri Slabycef2cf02007-05-08 00:31:45 -07005171SENSABLE PHANTOM
5172P: Jiri Slaby
5173M: jirislaby@gmail.com
5174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005175F: drivers/misc/phantom.c
5176F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005177
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005178SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179P: Jeff Garzik
5180M: jgarzik@pobox.com
5181L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005182T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005184F: drivers/ata/
5185F: include/linux/ata.h
5186F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005188SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5189P: Sathya Perla
5190M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005191P: Subbu Seetharaman
5192M: subbus@serverengines.com
5193L: netdev@vger.kernel.org
5194W: http://www.serverengines.com
5195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005196F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005197
Ben Hutchings8ceee662008-04-27 12:55:59 +01005198SFC NETWORK DRIVER
5199P: Steve Hodgson
5200P: Ben Hutchings
5201P: Robert Stonehouse
5202M: linux-net-drivers@solarflare.com
5203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005204F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005205
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005206SGI GRU DRIVER
5207P: Jack Steiner
5208M: steiner@sgi.com
5209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005211
5212SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5213P: Pat Gefre
5214M: pfg@sgi.com
5215L: linux-ia64@vger.kernel.org
5216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005217F: Documentation/ia64/serial.txt
5218F: drivers/serial/ioc?_serial.c
5219F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221SGI VISUAL WORKSTATION 320 AND 540
5222P: Andrey Panin
5223M: pazke@donpac.ru
5224L: linux-visws-devel@lists.sf.net
5225W: http://linux-visws.sf.net
5226S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005227F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228
Jack Steiner75312612008-08-15 00:40:42 -07005229SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005230P: Robin Holt
5231M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005233F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005234
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005235SHARP LH SUPPORT (LH7952X & LH7A40X)
5236P: Marc Singer
5237M: elf@buici.com
5238W: http://projects.buici.com/arm
5239L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5242F: arch/arm/mach-lh7a40x/
5243F: drivers/serial/serial_lh7a40x.c
5244F: drivers/usb/gadget/lh7a40*
5245F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005246
5247SHPC HOTPLUG DRIVER
5248P: Kristen Carlson Accardi
5249M: kristen.c.accardi@intel.com
5250L: linux-pci@vger.kernel.org
5251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005252F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005253
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254SIMTEC EB110ATX (Chalice CATS)
5255P: Ben Dooks
5256P: Vincent Sanders
5257M: support@simtec.co.uk
5258W: http://www.simtec.co.uk/products/EB110ATX/
5259S: Supported
5260
5261SIMTEC EB2410ITX (BAST)
5262P: Ben Dooks
5263P: Vincent Sanders
5264M: support@simtec.co.uk
5265W: http://www.simtec.co.uk/products/EB2410ITX/
5266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005267F: arch/arm/mach-s3c2410/
5268F: drivers/*/*s3c2410*
5269F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Francois Romieu92aab3c2005-07-30 13:11:18 +02005271SIS 190 ETHERNET DRIVER
5272P: Francois Romieu
5273M: romieu@fr.zoreil.com
5274L: netdev@vger.kernel.org
5275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005277
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278SIS 900/7016 FAST ETHERNET DRIVER
5279P: Daniele Venzano
5280M: venza@brownhat.org
5281W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005282L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005284F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005286SIS 96X I2C/SMBUS DRIVER
5287P: Mark M. Hoffman
5288M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005289L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005291F: Documentation/i2c/busses/i2c-sis96x
5292F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005293
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294SIS FRAMEBUFFER DRIVER
5295P: Thomas Winischhofer
5296M: thomas@winischhofer.net
5297W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005299F: Documentation/fb/sisfb.txt
5300F: drivers/video/sis/
5301F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
5303SIS USB2VGA DRIVER
5304P: Thomas Winischhofer
5305M: thomas@winischhofer.net
5306W: http://www.winischhofer.at/linuxsisusbvga.shtml
5307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005308F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005309
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005310SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5311P: Stephen Hemminger
5312M: shemminger@linux-foundation.org
5313L: netdev@vger.kernel.org
5314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005315F: drivers/net/skge.*
5316F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005317
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005318SLAB ALLOCATOR
5319P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005320M: cl@linux-foundation.org
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005321P: Pekka Enberg
5322M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005323P: Matt Mackall
5324M: mpm@selenic.com
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005325L: linux-mm@kvack.org
5326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005327F: include/linux/sl?b*.h
5328F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005329
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330SMC91x ETHERNET DRIVER
5331P: Nicolas Pitre
5332M: nico@cam.org
5333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005334F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005336SMSC47B397 HARDWARE MONITOR DRIVER
5337P: Mark M. Hoffman
5338M: mhoffman@lightlink.com
5339L: lm-sensors@lm-sensors.org
5340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005341F: Documentation/hwmon/smsc47b397
5342F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005343
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005344SMSC911x ETHERNET DRIVER
5345P: Steve Glendinning
5346M: steve.glendinning@smsc.com
5347L: netdev@vger.kernel.org
5348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005349F: include/linux/smsc911x.h
5350F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005351
Steve Glendinning2cb37722008-12-11 20:54:30 -08005352SMSC9420 PCI ETHERNET DRIVER
5353P: Steve Glendinning
5354M: steve.glendinning@smsc.com
5355L: netdev@vger.kernel.org
5356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005357F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005358
Ben Nizetteb54f2862008-03-13 22:27:30 +11005359SMX UIO Interface
5360P: Ben Nizette
5361M: bn@niasdigital.com
5362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005364
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005365SN-IA64 (Itanium) SUB-PLATFORM
5366P: Jes Sorensen
5367M: jes@sgi.com
5368L: linux-altix@sgi.com
5369L: linux-ia64@vger.kernel.org
5370W: http://www.sgi.com/altix
5371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005372F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005373
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005374SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005375P: Guennadi Liakhovetski
5376M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005377L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005378T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: include/media/v4l2*
5381F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005382
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005383SOEKRIS NET48XX LED SUPPORT
5384P: Chris Boot
5385M: bootc@bootc.net
5386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005387F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005388
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005391M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005393S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005394F: drivers/md/
5395F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397SONIC NETWORK DRIVER
5398P: Thomas Bogendoerfer
5399M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005400L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005402F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
Michael Buesch61e115a2007-09-18 15:12:50 -04005404SONICS SILICON BACKPLANE DRIVER (SSB)
5405P: Michael Buesch
5406M: mb@bu3sch.de
5407L: netdev@vger.kernel.org
5408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005409F: drivers/ssb/
5410F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005413P: Mattia Dongili
5414M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005415L: linux-acpi@vger.kernel.org
5416W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005418F: Documentation/laptops/sony-laptop.txt
5419F: drivers/char/sonypi.c
5420F: drivers/platform/x86/sony-laptop.c
5421F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Alex Dubovbaf85322008-02-09 10:20:54 -08005423SONY MEMORYSTICK CARD SUPPORT
5424P: Alex Dubov
5425M: oakad@yahoo.com
5426L: linux-kernel@vger.kernel.org
5427W: http://tifmxx.berlios.de/
5428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005429F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431SOUND
5432P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005433M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005434P: Takashi Iwai
5435M: tiwai@suse.de
Takashi Iwai82622042007-04-16 12:32:52 +02005436L: alsa-devel@alsa-project.org (subscribers-only)
Joe Perches3126a172009-04-15 23:38:45 -07005437W: http://www.alsa-project.org/
5438T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5439T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005441F: Documentation/sound/
5442F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005443F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444
Mark Brownbd903bd2008-11-19 19:16:05 +00005445SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005446P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005447M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005448P: Mark Brown
5449M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005450T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Takashi Iwai82622042007-04-16 12:32:52 +02005451L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005452W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005454F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005455F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005456
Sam Ravnborg473321f2009-01-04 15:47:49 -08005457SPARC + UltraSPARC (sparc/sparc64)
5458P: David S. Miller
5459M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005461T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5462T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005464F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465
5466SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5467P: Roger Wolff
5468M: R.E.Wolff@BitWizard.nl
Joe Perches7d2c86b2009-04-07 20:59:01 -07005469L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005471F: Documentation/serial/specialix.txt
5472F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005474SPI SUBSYSTEM
5475P: David Brownell
5476M: dbrownell@users.sourceforge.net
5477L: spi-devel-general@lists.sourceforge.net
5478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/spi/
5480F: drivers/spi/
5481F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005482
Jim Lewis2752e402006-09-29 02:01:19 -07005483SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005484P: Ishizaki Kou
5485M: kou.ishizaki@toshiba.co.jp
5486P: Jens Osterkamp
5487M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005488L: netdev@vger.kernel.org
5489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005490F: Documentation/networking/spider_net.txt
5491F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005492
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005493SPU FILE SYSTEM
5494P: Jeremy Kerr
5495M: jk@ozlabs.org
5496L: linuxppc-dev@ozlabs.org
5497L: cbe-oss-dev@ozlabs.org
5498W: http://www.ibm.com/developerworks/power/cell/
5499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005500F: Documentation/filesystems/spufs.txt
5501F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005502
Phillip Lougherfc555842009-01-05 08:46:29 +00005503SQUASHFS FILE SYSTEM
5504P: Phillip Lougher
5505M: phillip@lougher.demon.co.uk
5506L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5507W: http://squashfs.org.uk
5508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005509F: Documentation/filesystems/squashfs.txt
5510F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005511
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512SRM (Alpha) environment access
5513P: Jan-Benedict Glaw
5514M: jbglaw@lug-owl.de
5515L: linux-kernel@vger.kernel.org
5516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005517F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
Linus Torvalds26e9a392008-10-17 09:50:12 -07005519STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005520P: Greg Kroah-Hartman
5521M: greg@kroah.com
5522P: Chris Wright
5523M: chrisw@sous-sol.org
5524L: stable@kernel.org
5525S: Maintained
5526
Linus Torvalds26e9a392008-10-17 09:50:12 -07005527STAGING SUBSYSTEM
5528P: Greg Kroah-Hartman
5529M: gregkh@suse.de
5530L: linux-kernel@vger.kernel.org
5531T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005534
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535STARFIRE/DURALAN NETWORK DRIVER
5536P: Ion Badulescu
5537M: ionut@cs.columbia.edu
5538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
5541STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5542W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005543S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005544F: drivers/net/wireless/strip.c
5545F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546
5547STRADIS MPEG-2 DECODER DRIVER
5548P: Nathan Laredo
5549M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550W: http://www.stradis.com/
5551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005554SUN3/3X
5555P: Sam Creasey
5556M: sammy@sammy.net
5557W: http://sammy.net/sun3/
5558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005559F: arch/m68k/kernel/*sun3*
5560F: arch/m68k/sun3*/
5561F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005562
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005563SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564P: Paul Mundt
5565M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005566L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005568T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005569S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005570F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005571F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005572F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005574SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005575P: Len Brown
5576M: len.brown@intel.com
5577P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005578M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005579P: Rafael J. Wysocki
5580M: rjw@sisk.pl
5581L: linux-pm@lists.linux-foundation.org
5582S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005583F: Documentation/power/
5584F: arch/x86/kernel/acpi/
5585F: drivers/base/power/
5586F: kernel/power/
5587F: include/linux/suspend.h
5588F: include/linux/freezer.h
5589F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
5591SVGA HANDLING
5592P: Martin Mares
5593M: mj@ucw.cz
5594L: linux-video@atrey.karlin.mff.cuni.cz
5595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005596F: Documentation/svga.txt
5597F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598
5599SYSV FILESYSTEM
5600P: Christoph Hellwig
5601M: hch@infradead.org
5602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005603F: Documentation/filesystems/sysv-fs.txt
5604F: fs/sysv/
5605F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
Alan Cox4e688522008-04-30 00:52:11 -07005607TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005608P: Balbir Singh
5609M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005610L: linux-kernel@vger.kernel.org
5611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005612F: Documentation/accounting/taskstats*
5613F: include/linux/taskstats*
5614F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005615
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005616TC CLASSIFIER
5617P: Jamal Hadi Salim
5618M: hadi@cyberus.ca
5619L: netdev@vger.kernel.org
5620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005621F: include/linux/pkt_cls.h
5622F: include/net/pkt_cls.h
5623F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005624
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005625TCP LOW PRIORITY MODULE
5626P: Wong Hoi Sing, Edison
5627M: hswong3i@gmail.com
5628P: Hung Hing Lun, Mike
5629M: hlhung3i@gmail.com
5630W: http://tcp-lp-mod.sourceforge.net/
5631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005632F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005633
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005634TEHUTI ETHERNET DRIVER
5635P: Alexander Indenbaum
5636M: baum@tehutinetworks.net
5637P: Andy Gospodarek
5638M: andy@greyhouse.net
5639L: netdev@vger.kernel.org
5640S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005641F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005642
Alan Cox4e688522008-04-30 00:52:11 -07005643Telecom Clock Driver for MCPL0010
5644P: Mark Gross
5645M: mark.gross@intel.com
5646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005647F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005648
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005649TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005650P: Chris Zankel
5651M: chris@zankel.net
5652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005653F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005654
5655THINKPAD ACPI EXTRAS DRIVER
5656P: Henrique de Moraes Holschuh
5657M: ibm-acpi@hmh.eng.br
5658L: ibm-acpi-devel@lists.sourceforge.net
5659W: http://ibm-acpi.sourceforge.net
5660W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005661T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005663F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005664
Alex Dubov4020f2d2006-10-04 02:15:37 -07005665TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005666P: Alex Dubov
5667M: oakad@yahoo.com
5668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005669F: drivers/misc/tifm*
5670F: drivers/mmc/host/tifm_sd.c
5671F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005672
Per Lidene86eaa32006-01-12 16:45:18 +01005673TIPC NETWORK LAYER
5674P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005675M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005676P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005677M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005678P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005679M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005680L: tipc-discussion@lists.sourceforge.net
5681W: http://tipc.sourceforge.net/
5682W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005683T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005685F: include/linux/tipc*.h
5686F: include/net/tipc/
5687F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005688
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689TLAN NETWORK DRIVER
5690P: Samuel Chessman
5691M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005692L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693W: http://sourceforge.net/projects/tlan/
5694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005695F: Documentation/networking/tlan.txt
5696F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005697
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005698TOMOYO SECURITY MODULE
5699P: Kentaro Takeda
5700M: takedakn@nttdata.co.jp
5701P: Tetsuo Handa
5702M: penguin-kernel@I-love.SAKURA.ne.jp
5703L: linux-kernel@vger.kernel.org (kernel issues)
5704L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5705L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5706L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5707W: http://tomoyo.sourceforge.jp/
5708T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005711
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005713S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005714F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
5716TOSHIBA SMM DRIVER
5717P: Jonathan Buzzard
5718M: jonathan@buzzard.org.uk
5719L: tlinux-users@tce.toshiba-dme.co.jp
5720W: http://www.buzzard.org.uk/toshiba/
5721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005722F: drivers/char/toshiba.c
5723F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Pierre Ossmand719f902009-03-24 21:06:09 +01005725TMIO MMC DRIVER
5726P: Ian Molton
5727M: ian@mnementh.co.uk
5728S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005729F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005730
Hugh Dickins98f32602009-05-21 20:33:58 +01005731TMPFS (SHMEM FILESYSTEM)
5732P: Hugh Dickins
5733M: hugh.dickins@tiscali.co.uk
5734L: linux-mm@kvack.org
5735S: Maintained
5736F: include/linux/shmem_fs.h
5737F: mm/shmem.c
5738
Alan Cox4e688522008-04-30 00:52:11 -07005739TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005740P: Debora Velarde
5741M: debora@linux.vnet.ibm.com
5742P: Rajiv Andrade
5743M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005744W: http://tpmdd.sourceforge.net
5745P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005746M: m.selhorst@sirrix.com
5747W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005748L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005750F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005751
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005753P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005754M: trivial@kernel.org
5755L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005756T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757S: Maintained
5758
Alan Cox4e688522008-04-30 00:52:11 -07005759TTY LAYER
5760P: Alan Cox
5761M: alan@lxorguk.ukuu.org.uk
5762L: linux-kernel@vger.kernel.org
5763S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005764T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005765
Grant Grundler740db6d2008-02-17 11:53:49 -07005766TULIP NETWORK DRIVERS
5767P: Grant Grundler
5768M: grundler@parisc-linux.org
5769P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005770M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005771L: netdev@vger.kernel.org
5772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005773F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
5775TUN/TAP driver
5776P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005777M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778L: vtun@office.satix.net
5779W: http://vtun.sourceforge.net/tun
5780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005781F: Documentation/networking/tuntap.txt
5782F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005784TURBOCHANNEL SUBSYSTEM
5785P: Maciej W. Rozycki
5786M: macro@linux-mips.org
5787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: drivers/tc/
5789F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005790
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791U14-34F SCSI DRIVER
5792P: Dario Ballabio
5793M: ballabio_dario@emc.com
5794L: linux-scsi@vger.kernel.org
5795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005796F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005798UBI FILE SYSTEM (UBIFS)
5799P: Artem Bityutskiy
5800M: dedekind@infradead.org
5801P: Adrian Hunter
5802M: ext-adrian.hunter@nokia.com
5803L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005804T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005805W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005807F: Documentation/filesystems/ubifs.txt
5808F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005809
Alan Coxcc2020e2008-05-19 14:21:51 +01005810UCLINUX (AND M68KNOMMU)
5811P: Greg Ungerer
5812M: gerg@uclinux.org
5813W: http://www.uclinux.org/
5814L: uclinux-dev@uclinux.org (subscribers-only)
5815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005816F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005817
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005818UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005819P: Yoshinori Sato
5820M: ysato@users.sourceforge.jp
5821W: http://uclinux-h8.sourceforge.jp/
5822S: Supported
5823
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005825P: Jan Kara
5826M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827W: http://linux-udf.sourceforge.net
5828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005829F: Documentation/filesystems/udf.txt
5830F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831
Alan Coxcc2020e2008-05-19 14:21:51 +01005832UFS FILESYSTEM
5833P: Evgeniy Dushistov
5834M: dushistov@mail.ru
5835L: linux-kernel@vger.kernel.org
5836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005837F: Documentation/filesystems/ufs.txt
5838F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005839
David Vrabel18332a82008-09-17 16:34:44 +01005840ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5841P: David Vrabel
5842M: david.vrabel@csr.com
5843L: linux-usb@vger.kernel.org
5844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005845F: drivers/uwb/*
5846F: include/linux/uwb.h
5847F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005848
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849UNIFORM CDROM DRIVER
5850P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005851M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852L: linux-kernel@vger.kernel.org
5853W: http://www.kernel.dk
5854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005855F: Documentation/cdrom/
5856F: drivers/cdrom/cdrom.c
5857F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005859UNSORTED BLOCK IMAGES (UBI)
5860P: Artem Bityutskiy
5861M: dedekind@infradead.org
5862W: http://www.linux-mtd.infradead.org/
5863L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005864T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005865S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005866F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005867F: include/linux/mtd/ubi.h
5868F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870USB ACM DRIVER
5871P: Oliver Neukum
5872M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005873L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: Documentation/usb/acm.txt
5876F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
5878USB BLOCK DRIVER (UB ub)
5879P: Pete Zaitcev
5880M: zaitcev@redhat.com
5881L: linux-kernel@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005882L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005884F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886USB CDC ETHERNET DRIVER
5887P: Greg Kroah-Hartman
5888M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005889L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890S: Maintained
5891W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/net/usb/cdc_*.c
5893F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005895USB CYPRESS C67X00 DRIVER
5896P: Peter Korsgaard
5897M: jacmet@sunsite.dk
5898L: linux-usb@vger.kernel.org
5899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005900F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005901
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005902USB DAVICOM DM9601 DRIVER
5903P: Peter Korsgaard
5904M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005905L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005906W: http://www.linux-usb.org/usbnet
5907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005908F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005909
Alan Coxcc2020e2008-05-19 14:21:51 +01005910USB DIAMOND RIO500 DRIVER
5911P: Cesar Miquel
5912M: miquel@df.uba.ar
5913L: rio500-users@lists.sourceforge.net
5914W: http://rio500.sourceforge.net
5915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005916F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918USB EHCI DRIVER
5919P: David Brownell
5920M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005921L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005922S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005923F: Documentation/usb/ehci.txt
5924F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925
Luca Risolia7ce08c92006-01-11 02:06:59 +00005926USB ET61X[12]51 DRIVER
5927P: Luca Risolia
5928M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005929L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005930L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005931T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005932W: http://www.linux-projects.org
5933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005934F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005935
David Brownell69ae9e32006-11-14 02:03:31 -08005936USB GADGET/PERIPHERAL SUBSYSTEM
5937P: David Brownell
5938M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005939L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005940W: http://www.linux-usb.org/gadget
5941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005942F: drivers/usb/gadget/
5943F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005944
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005945USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266fd2007-01-15 09:56:21 +01005946P: Jiri Kosina
5947M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005948L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005949T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005951F: Documentation/usb/hiddev.txt
5952F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953
Olav Kongas959eea22005-11-03 17:38:14 +02005954USB ISP116X DRIVER
5955P: Olav Kongas
5956M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005957L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005959F: drivers/usb/host/isp116x*
5960F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005961
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962USB KAWASAKI LSI DRIVER
5963P: Oliver Neukum
5964M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005965L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
5969USB MASS STORAGE DRIVER
5970P: Matthew Dharm
5971M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005972L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005973L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974S: Maintained
5975W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005976F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977
5978USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005979P: David Brownell
5980M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005981L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005982S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005983F: Documentation/usb/ohci.txt
5984F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985
Matthias Urlichsba460e42005-07-14 00:33:47 -07005986USB OPTION-CARD DRIVER
5987P: Matthias Urlichs
5988M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005989L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005992
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993USB OV511 DRIVER
5994P: Mark McClelland
5995M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005996L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997W: http://alpha.dyndns.org/ov511/
5998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005999F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
6001USB PEGASUS DRIVER
6002P: Petko Manolov
6003M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006004L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006005L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006W: http://pegasus2.sourceforge.net/
6007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006008F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006010USB PRINTER DRIVER (usblp)
6011P: Pete Zaitcev
6012M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006013L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006015F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016
6017USB RTL8150 DRIVER
6018P: Petko Manolov
6019M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006020L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006021L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022W: http://pegasus2.sourceforge.net/
6023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025
6026USB SE401 DRIVER
6027P: Jeroen Vreeken
6028M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006029L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030W: http://www.chello.nl/~j.vreeken/se401/
6031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: Documentation/video4linux/se401.txt
6033F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Alan Cox4e688522008-04-30 00:52:11 -07006035USB SERIAL BELKIN F5U103 DRIVER
6036P: William Greathouse
6037M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006038L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006041
6042USB SERIAL CYPRESS M8 DRIVER
6043P: Lonnie Mendez
6044M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006045L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006046S: Maintained
6047W: http://geocities.com/i0xox0i
6048W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006049F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006050
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051USB SERIAL CYBERJACK DRIVER
6052P: Matthias Bruestle and Harald Welte
6053M: support@reiner-sct.com
6054W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006056F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
6058USB SERIAL DIGI ACCELEPORT DRIVER
6059P: Peter Berger and Al Borchers
6060M: pberger@brimson.com
6061M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006062L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065
6066USB SERIAL DRIVER
6067P: Greg Kroah-Hartman
6068M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006069L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006071F: Documentation/usb/usb-serial.txt
6072F: drivers/usb/serial/generic.c
6073F: drivers/usb/serial/usb-serial.c
6074F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6077P: Gary Brubaker
6078M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006079L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006081F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
6083USB SERIAL KEYSPAN DRIVER
6084P: Greg Kroah-Hartman
6085M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006086L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087W: http://www.kroah.com/linux/
6088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006089F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
6091USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006092P: Support Department
6093M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006094L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095W: http://www.connecttech.com
6096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006097F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006099USB SMSC95XX ETHERNET DRIVER
6100P: Steve Glendinning
6101M: steve.glendinning@smsc.com
6102L: netdev@vger.kernel.org
6103S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006104F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006105
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006106USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107P: Luca Risolia
6108M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006109L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006110L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006111T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112W: http://www.linux-projects.org
6113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006114F: Documentation/video4linux/sn9c102.txt
6115F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116
6117USB SUBSYSTEM
6118P: Greg Kroah-Hartman
6119M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006120L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006122T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006124F: Documentation/usb/
6125F: drivers/net/usb/
6126F: drivers/usb/
6127F: include/linux/usb.h
6128F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
6130USB UHCI DRIVER
6131P: Alan Stern
6132M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006133L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136
David Brownell69ae9e32006-11-14 02:03:31 -08006137USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138P: David Brownell
6139M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006140L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006141W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006143F: drivers/net/usb/usbnet.c
6144F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006146USB VIDEO CLASS
6147P: Laurent Pinchart
6148M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006149L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006150L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006151T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006152W: http://linux-uvc.berlios.de
6153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006154F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006155
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156USB W996[87]CF DRIVER
6157P: Luca Risolia
6158M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006159L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006160L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006161T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162W: http://www.linux-projects.org
6163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006164F: Documentation/video4linux/w9968cf.txt
6165F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006167USB WIRELESS RNDIS DRIVER (rndis_wlan)
6168P: Jussi Kivilinna
6169M: jussi.kivilinna@mbnet.fi
6170L: linux-wireless@vger.kernel.org
6171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006173
Luca Risolia60f78052006-02-06 16:29:35 +00006174USB ZC0301 DRIVER
6175P: Luca Risolia
6176M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006177L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006178L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006179T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006180W: http://www.linux-projects.org
6181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006182F: Documentation/video4linux/zc0301.txt
6183F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006184
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185USB ZD1201 DRIVER
6186P: Jeroen Vreeken
6187M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006188L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189W: http://linux-lc100020.sourceforge.net
6190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006193USB ZR364XX DRIVER
6194P: Antoine Jacquet
6195M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006196L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006197L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006198T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006199W: http://royale.zerezo.com/zr364xx/
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: Documentation/video4linux/zr364xx.txt
6202F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006203
Randy Dunlape7839f22008-10-12 16:11:45 -07006204USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006206M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207L: user-mode-linux-devel@lists.sourceforge.net
6208L: user-mode-linux-user@lists.sourceforge.net
6209W: http://user-mode-linux.sourceforge.net
6210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: Documentation/uml/
6212F: arch/um/
6213F: fs/hostfs/
6214F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006215
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006216USERSPACE I/O (UIO)
6217P: Hans J. Koch
6218M: hjk@linutronix.de
6219P: Greg Kroah-Hartman
6220M: gregkh@suse.de
6221L: linux-kernel@vger.kernel.org
6222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006223F: Documentation/DocBook/uio-howto.tmpl
6224F: drivers/uio/
6225F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006226
Karel Zakf899b0a2008-05-23 13:04:21 -07006227UTIL-LINUX-NG PACKAGE
6228P: Karel Zak
6229M: kzak@redhat.com
6230L: util-linux-ng@vger.kernel.org
6231W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006232T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006233S: Maintained
6234
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006235UVESAFB DRIVER
6236P: Michal Januszewski
6237M: spock@gentoo.org
6238L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6239W: http://dev.gentoo.org/~spock/projects/uvesafb/
6240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006241F: Documentation/fb/uvesafb.txt
6242F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006243
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006244VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245P: OGAWA Hirofumi
6246M: hirofumi@mail.parknet.co.jp
6247L: linux-kernel@vger.kernel.org
6248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006249F: Documentation/filesystems/vfat.txt
6250F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Linus Torvalds1da177e2005-04-16 15:20:36 -07006252VIA RHINE NETWORK DRIVER
6253P: Roger Luethi
6254M: rl@hellgate.ch
6255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006256F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Jean Delvare32c0a522005-09-22 21:47:58 +02006258VIAPRO SMBUS DRIVER
6259P: Jean Delvare
6260M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006261L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006263F: Documentation/i2c/busses/i2c-viapro
6264F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006265
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006266VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6267P: Joseph Chan
6268M: JosephChan@via.com.tw
6269P: Scott Fang
6270M: ScottFang@viatech.com.cn
6271L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006273F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006274
Francois Romieu01f20732007-01-26 00:57:17 -08006275VIA VELOCITY NETWORK DRIVER
6276P: Francois Romieu
6277M: romieu@fr.zoreil.com
6278L: netdev@vger.kernel.org
6279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006280F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281
Patrick McHardybe7f8272007-10-23 20:26:36 -07006282VLAN (802.1Q)
6283P: Patrick McHardy
6284M: kaber@trash.net
6285L: netdev@vger.kernel.org
6286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006287F: drivers/net/macvlan.c
6288F: include/linux/if_*vlan.h
6289F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006290
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006291VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6292P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006293M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006294P: Mark Brown
6295M: broonie@opensource.wolfsonmicro.com
6296W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006297W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006298T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006300F: drivers/regulator/
6301F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006302
Juerg Haefligerab413192006-09-24 20:54:04 +02006303VT1211 HARDWARE MONITOR DRIVER
6304P: Juerg Haefliger
6305M: juergh@gmail.com
6306L: lm-sensors@lm-sensors.org
6307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006308F: Documentation/hwmon/vt1211
6309F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006310
Roger Lucas1de9e372005-11-26 20:20:05 +01006311VT8231 HARDWARE MONITOR DRIVER
6312P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006313M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006314L: lm-sensors@lm-sensors.org
6315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006316F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006317
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318W1 DALLAS'S 1-WIRE BUS
6319P: Evgeniy Polyakov
6320M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006322F: Documentation/w1/
6323F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324
Charles Spirakis13927072006-07-05 18:05:15 +02006325W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006326P: Marc Hulsman
6327M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006328L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: Documentation/hwmon/w83791d
6331F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006332
Rudolf Marek61db0112006-12-12 18:18:30 +01006333W83793 HARDWARE MONITORING DRIVER
6334P: Rudolf Marek
6335M: r.marek@assembler.cz
6336L: lm-sensors@lm-sensors.org
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: Documentation/hwmon/w83793
6339F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006340
Linus Torvalds1da177e2005-04-16 15:20:36 -07006341W83L51xD SD/MMC CARD INTERFACE DRIVER
6342P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006343M: pierre@ossman.eu
Pierre Ossmanfac88992007-01-27 13:18:26 +01006344L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006346F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006348WATCHDOG DEVICE DRIVERS
6349P: Wim Van Sebroeck
6350M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006351T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006353F: Documentation/watchdog/
6354F: drivers/watchdog/
6355F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006356
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6358P: Jean Tourrilhes
6359M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006360L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006363F: Documentation/networking/wavelan.txt
6364F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365
6366WD7000 SCSI DRIVER
6367P: Miroslav Zagorac
6368M: zaga@fly.cc.fer.hr
6369L: linux-scsi@vger.kernel.org
6370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006371F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006373WIMAX STACK
6374P: Inaky Perez-Gonzalez
6375M: inaky.perez-gonzalez@intel.com
6376M: linux-wimax@intel.com
6377L: wimax@linuxwimax.org
6378S: Supported
6379W: http://linuxwimax.org
6380
David Vrabel18332a82008-09-17 16:34:44 +01006381WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6382P: David Vrabel
6383M: david.vrabel@csr.com
6384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006385F: include/linux/wlp.h
6386F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006387
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006388WISTRON LAPTOP BUTTON DRIVER
6389P: Miloslav Trmac
6390M: mitr@volny.cz
6391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006392F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006393
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394WL3501 WIRELESS PCMCIA CARD DRIVER
6395P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006396M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006397L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006398W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006400F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401
Mark Brownfebf1df2008-04-02 00:51:09 -04006402WM97XX TOUCHSCREEN DRIVERS
6403P: Mark Brown
6404M: broonie@opensource.wolfsonmicro.com
6405P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006406M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006407L: linux-input@vger.kernel.org
6408T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6409W: http://opensource.wolfsonmicro.com/node/7
6410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006411F: drivers/input/touchscreen/*wm97*
6412F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006413
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414X.25 NETWORK LAYER
6415P: Henner Eisen
6416M: eis@baty.hanse.de
6417L: linux-x25@vger.kernel.org
6418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006419F: Documentation/networking/x25*
6420F: include/net/x25*
6421F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006423X86 ARCHITECTURE (32-BIT AND 64-BIT)
6424P: Thomas Gleixner
6425M: tglx@linutronix.de
6426P: Ingo Molnar
6427M: mingo@redhat.com
6428P: H. Peter Anvin
6429M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006430M: x86@kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006431L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006432T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006434F: Documentation/x86/
6435F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006436
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006437XEN HYPERVISOR INTERFACE
6438P: Jeremy Fitzhardinge
6439M: jeremy@xensource.com
6440P: Chris Wright
6441M: chrisw@sous-sol.org
6442L: virtualization@lists.osdl.org
6443L: xen-devel@lists.xensource.com
6444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006445F: arch/x86/xen/
6446F: drivers/*/xen-*front.c
6447F: drivers/xen/
6448F: arch/x86/include/asm/xen/
6449F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451XFS FILESYSTEM
6452P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006453P: Felix Blyakher
6454M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006456L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006458T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006460F: Documentation/filesystems/xfs.txt
6461F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006463XILINX SYSTEMACE DRIVER
6464P: Grant Likely
6465M: grant.likely@secretlab.ca
6466W: http://www.secretlab.ca/
6467L: linux-kernel@vger.kernel.org
6468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006469F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006470
Peter Korsgaard238b8722006-12-06 20:35:17 -08006471XILINX UARTLITE SERIAL DRIVER
6472P: Peter Korsgaard
6473M: jacmet@sunsite.dk
6474L: linux-serial@vger.kernel.org
6475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006476F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006477
Linus Torvalds1da177e2005-04-16 15:20:36 -07006478YAM DRIVER FOR AX.25
6479P: Jean-Paul Roubelat
6480M: jpr@f6fbb.org
6481L: linux-hams@vger.kernel.org
6482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006483F: drivers/net/hamradio/yam*
6484F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485
Henkaf64a5e2005-10-12 15:02:56 +02006486YEALINK PHONE DRIVER
6487P: Henk Vergonet
6488M: Henk.Vergonet@gmail.com
6489L: usbb2k-api-dev@nongnu.org
6490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006491F: Documentation/input/yealink.txt
6492F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006493
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494Z8530 DRIVER FOR AX.25
6495P: Joerg Reuter
6496M: jreuter@yaina.de
6497W: http://yaina.de/jreuter/
6498W: http://www.qsl.net/dl1bke/
6499L: linux-hams@vger.kernel.org
6500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006501F: Documentation/networking/z8530drv.txt
6502F: drivers/net/hamradio/*scc.c
6503F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006505ZD1211RW WIRELESS DRIVER
6506P: Daniel Drake
6507M: dsd@gentoo.org
6508P: Ulrich Kunitz
6509M: kune@deine-taler.de
6510W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006511L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006512L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006514F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006515
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006518L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006520T: Mercurial http://linuxtv.org/hg/v4l-dvb
6521S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006522F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006524ZS DECSTATION Z85C30 SERIAL DRIVER
6525P: Maciej W. Rozycki
6526M: macro@linux-mips.org
6527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006528F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006529
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530THE REST
6531P: Linus Torvalds
Joe Perchescfe81f72009-04-07 21:09:58 -07006532T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533S: Buried alive in reporters