blob: 99371ee7c3627b84b8ad6a4f48d6404522804308 [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
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
76P: Person
77M: Mail patches to
78L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
107P: Philip Blundell
108M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700109L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700111F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Steffen Klasserta6d89912007-08-10 14:05:27 -07001133C59X NETWORK DRIVER
114P: Steffen Klassert
115M: klassert@mathematik.tu-chemnitz.de
116L: netdev@vger.kernel.org
117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: Documentation/networking/vortex.txt
119F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213CR990 NETWORK DRIVER
122P: David Dillow
123M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129P: Adam Radford
130M: linuxraid@amcc.com
131L: linux-scsi@vger.kernel.org
132W: http://www.amcc.com
133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700134F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001363W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137P: Adam Radford
138M: linuxraid@amcc.com
139L: linux-scsi@vger.kernel.org
140W: http://www.amcc.com
141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700142F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
14453C700 AND 53C700-66 SCSI DRIVER
145P: James E.J. Bottomley
146M: James.Bottomley@HansenPartnership.com
147L: linux-scsi@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1516PACK NETWORK DRIVER FOR AX.25
152P: Andreas Koensgen
153M: ajk@iehk.rwth-aachen.de
154L: linux-hams@vger.kernel.org
155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700156F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588169 10/100/1000 GIGABIT ETHERNET DRIVER
159P: Francois Romieu
160M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166L: linux-serial@vger.kernel.org
167W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100168M: alan@lxorguk.ukuu.org.uk
169S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700170F: drivers/serial/8250*
171F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
1738390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
174P: Paul Gortmaker
175M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700176L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700178F: drivers/net/*8390*
179F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001819P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100182P: Eric Van Hensbergen
183M: ericvh@gmail.com
184P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500185M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100186P: Latchesar Ionkov
187M: lucho@ionkov.net
188L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500189W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700190T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700192F: Documentation/filesystems/9p.txt
193F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195A2232 SERIAL BOARD DRIVER
196P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197M: A2232@gmx.net
198L: linux-m68k@lists.linux-m68k.org
199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700200F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700202AACRAID SCSI RAID DRIVER
203P: Adaptec OEM Raid Solutions
204M: aacraid@adaptec.com
205L: linux-scsi@vger.kernel.org
206W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700208F: Documentation/scsi/aacraid.txt
209F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200212P: Hans de Goede
213M: j.w.r.degoede@hhs.nl
214L: lm-sensors@lm-sensors.org
215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700216F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200217
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700218ABIT UGURU 3 HARDWARE MONITOR DRIVER
219P: Alistair John Strachan
220M: alistair@devzero.co.uk
221L: lm-sensors@lm-sensors.org
222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700223F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225ACENIC DRIVER
226P: Jes Sorensen
227M: jes@trained-monkey.org
228L: linux-acenic@sunsite.dk
229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700230F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232ACER WMI LAPTOP EXTRAS
233P: Carlos Corbacho
234M: carlos@strangeworlds.co.uk
235L: aceracpi@googlegroups.com (subscribers-only)
236W: http://code.google.com/p/aceracpi
237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700238F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200241P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500242M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500243L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400244W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700245T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700247F: drivers/acpi/
248F: drivers/pnp/pnpacpi/
249F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500250
251ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400252P: Alexey Starikovskiy
253M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500254L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300255W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700257F: drivers/acpi/battery.c
258F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500259
260ACPI EC DRIVER
261P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400262M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500263L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300264W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500265S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700266F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500267
268ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400269P: Zhang Rui
270M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500271L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300272W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700274F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700276ACPI PCI HOTPLUG DRIVER
277P: Kristen Carlson Accardi
278M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700279L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700281F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500282
283ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400284P: Zhang Rui
285M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500286L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300287W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700289F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700290
Len Brown359acec2007-02-10 01:59:24 -0500291ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400292P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400293M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500294L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300295W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700297F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500298
Carlos Corbachobff431e2008-02-05 02:17:04 +0000299ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200300P: Carlos Corbacho
301M: carlos@strangeworlds.co.uk
302L: linux-acpi@vger.kernel.org
303W: http://www.lesswatts.org/projects/acpi/
304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700305F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000306
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100307AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200308P: Kyle McMartin
309M: kyle@mcmartin.ca
310P: Thibaut Varene
311M: T-Bone@parisc-linux.org
312W: http://wiki.parisc-linux.org/AD1889
313L: linux-parisc@vger.kernel.org
314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700315F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317ADM1025 HARDWARE MONITOR DRIVER
318P: Jean Delvare
319M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200320L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700322F: Documentation/hwmon/adm1025
323F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Corentin Labbecae2caa2007-02-14 21:15:04 +0100325ADM1029 HARDWARE MONITOR DRIVER
326P: Corentin Labbe
327M: corentin.labbe@geomatys.fr
328L: lm-sensors@lm-sensors.org
329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100331
Michael Wucc0b88c2007-08-31 01:15:25 -0400332ADM8211 WIRELESS DRIVER
333P: Michael Wu
334M: flamingice@sourmilk.net
335L: linux-wireless@vger.kernel.org
336W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700337T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700339F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341ADT746X FAN DRIVER
342P: Colin Leroy
343M: colin@colino.net
344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700345F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400347ADVANSYS SCSI DRIVER
348P: Matthew Wilcox
349M: matthew@wil.cx
350L: linux-scsi@vger.kernel.org
351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700352F: Documentation/scsi/advansys.txt
353F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355AEDSP16 DRIVER
356P: Riccardo Facchetti
357M: fizban@tin.it
358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700359F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361AFFS FILE SYSTEM
362P: Roman Zippel
363M: zippel@linux-m68k.org
364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700365F: Documentation/filesystems/affs.txt
366F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700368AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
369P: David Howells
370M: dhowells@redhat.com
371L: linux-afs@lists.infradead.org
372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700373F: fs/afs/
374F: include/net/af_rxrpc.h
375F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400378P: David Airlie
379M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700380T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700382F: drivers/char/agp/
383F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385AHA152X SCSI DRIVER
386P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700387M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388L: linux-scsi@vger.kernel.org
389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700390F: drivers/scsi/aha152x*
391F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Hannes Reinecke64624d42007-10-19 10:32:29 +0200393AIC7XXX / AIC79XX SCSI DRIVER
394P: Hannes Reinecke
395M: hare@suse.de
396L: linux-scsi@vger.kernel.org
397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/scsi/aic7xxx/
399F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200400
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700401AIO
402P: Benjamin LaHaise
403M: bcrl@kvack.org
404L: linux-aio@kvack.org
405S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700406F: fs/aio.c
407F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409ALCATEL SPEEDTOUCH USB DRIVER
410P: Duncan Sands
411M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700412L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413W: http://www.linux-usb.org/SpeedTouch/
414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700415F: drivers/usb/atm/speedtch.c
416F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Pierre Ossman272f1332007-05-14 21:25:26 +0200418ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200419P: Manuel Lauss
420M: manuel.lauss@gmail.com
421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700422F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200423
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000424ALI1563 I2C DRIVER
425P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100426M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100427L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700429F: Documentation/i2c/busses/i2c-ali1563
430F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432ALPHA PORT
433P: Richard Henderson
434M: rth@twiddle.net
435S: Odd Fixes for 2.4; Maintained for 2.6.
436P: Ivan Kokshaysky
437M: ink@jurassic.park.msu.ru
438S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700439L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700440F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700442AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
443P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700444M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700445L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700447F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700448
Jordan Crousef90b8112006-01-06 00:12:14 -0800449AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100450P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700451L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800452W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700454F: arch/x86/kernel/geode_32.c
455F: drivers/char/hw_random/geode-rng.c
456F: drivers/crypto/geode*
457F: drivers/video/geode/
458F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800459
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200460AMD IOMMU (AMD-VI)
461P: Joerg Roedel
462M: joerg.roedel@amd.com
463L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700464T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700466F: arch/x86/kernel/amd_iommu*.c
467F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200468
Peter Orubae7f5b302008-07-28 18:44:11 +0200469AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700470P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700471M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700472L: amd64-microcode@amd64.org
473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700474F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200475
Stelian Pop284f42b2006-12-12 18:18:31 +0100476AMS (Apple Motion Sensor) DRIVER
477P: Stelian Pop
478M: stelian@popies.net
479P: Michael Hanselmann
480M: linux-kernel@hansmi.ch
481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700482F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100483
Tom Tuckerf94b5332006-09-22 15:22:48 -0700484AMSO1100 RNIC DRIVER
485P: Tom Tucker
486M: tom@opengridcomputing.com
487P: Steve Wise
488M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700489L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700491F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700492
Johannes Berg42269062006-07-25 16:15:50 +0200493AOA (Apple Onboard Audio) ALSA DRIVER
494P: Johannes Berg
495M: johannes@sipsolutions.net
496L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700497L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501APM DRIVER
502P: Stephen Rothwell
503M: sfr@canb.auug.org.au
504L: linux-laptop@vger.kernel.org
505W: http://www.canb.auug.org.au/~sfr/
506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700507F: arch/x86/kernel/apm_32.c
508F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700510APPLE BCM5974 MULTITOUCH DRIVER
511P: Henrik Rydberg
512M: rydberg@euromail.se
513L: linux-input@vger.kernel.org
514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700515F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700516
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700517APPLE SMC DRIVER
518P: Nicolas Boichat
519M: nicolas@boichat.ch
520L: mactel-linux-devel@lists.sourceforge.net
521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700522F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524APPLETALK NETWORK LAYER
525P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300526M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700528F: drivers/net/appletalk/
529F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400531APPLETOUCH TOUCHPAD DRIVER
532P: Johannes Berg
533M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400534L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700536F: Documentation/input/appletouch.txt
537F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400538
Jaya Kumar1154ea72005-06-21 17:17:04 -0700539ARC FRAMEBUFFER DRIVER
540P: Jaya Kumar
541M: jayalk@intworks.biz
542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700543F: drivers/video/arcfb.c
544F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546ARM MFM AND FLOPPY DRIVERS
547P: Ian Molton
548M: spyro@f2s.com
549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700550F: arch/arm/lib/floppydma.S
551F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Russell Kingd4275352009-04-16 14:05:27 +0100553ARM PORT
554P: Russell King
555M: linux@arm.linux.org.uk
556L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
557W: http://www.arm.linux.org.uk/
558S: Maintained
559F: arch/arm/
560
Russell King2761f5c2007-05-24 06:56:08 +0200561ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200562S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700563F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200564
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800565ARM/ADI ROADRUNNER MACHINE SUPPORT
566P: Lennert Buytenhek
567M: kernel@wantstofly.org
568L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700570F: arch/arm/mach-ixp23xx/
571F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800572
573ARM/ADS SPHERE MACHINE SUPPORT
574P: Lennert Buytenhek
575M: kernel@wantstofly.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
578
Sergey Lapin9c784f92008-08-03 02:29:48 +0100579ARM/AFEB9260 MACHINE SUPPORT
580P: Sergey Lapin
581M: slapin@ossfans.org
582L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
583S: Maintained
584
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800585ARM/AJECO 1ARM MACHINE SUPPORT
586P: Lennert Buytenhek
587M: kernel@wantstofly.org
588L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
589S: Maintained
590
Andrew Victord4a89c72006-12-04 13:56:21 +0100591ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200592P: Andrew Victor
593M: linux@maxim.org.za
594L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
595W: http://maxim.org.za/at91_26.html
596S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100597
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800598ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
599P: Lennert Buytenhek
600M: kernel@wantstofly.org
601L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
602S: Maintained
603
604ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
605P: Lennert Buytenhek
606M: kernel@wantstofly.org
607L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
608S: Maintained
609
Russell Kingd4275352009-04-16 14:05:27 +0100610ARM/CLKDEV SUPPORT
611P: Russell King
612M: linux@arm.linux.org.uk
613L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
614F: arch/arm/common/clkdev.c
615F: arch/arm/include/asm/clkdev.h
616
Mike Rapoportd48134e2008-08-20 09:03:26 +0100617ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100618P: Mike Rapoport
619M: mike@compulab.co.il
620L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
621S: Maintained
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623ARM/CORGI MACHINE SUPPORT
624P: Richard Purdie
625M: rpurdie@rpsys.net
626S: Maintained
627
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200628ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
629P: Paulius Zaleckas
630M: paulius.zaleckas@teltonika.lt
631L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700632T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200633S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300634F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200635
Russell Kingd4275352009-04-16 14:05:27 +0100636ARM/EBSA110 MACHINE SUPPORT
637P: Russell King
638M: linux@arm.linux.org.uk
639L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
640W: http://www.arm.linux.org.uk/
641S: Maintained
642F: arch/arm/mach-ebsa110/
643F: drivers/net/arm/am79c961a.*
644
Russell Kinga9da4f72008-07-12 21:42:04 +0100645ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
646P: Daniel Ribeiro
647M: drwyrm@gmail.com
648P: Stefan Schmidt
649M: stefan@openezx.org
650P: Harald Welte
651M: laforge@openezx.org
652L: openezx-devel@lists.openezx.org (subscribers-only)
653W: http://www.openezx.org/
654S: Maintained
655
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200656ARM/FARADAY FA526 PORT
657P: Paulius Zaleckas
658M: paulius.zaleckas@teltonika.lt
659L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
660S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300661F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200662
Russell Kingd4275352009-04-16 14:05:27 +0100663ARM/FOOTBRIDGE ARCHITECTURE
664P: Russell King
665M: linux@arm.linux.org.uk
666L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
667W: http://www.arm.linux.org.uk/
668S: Maintained
669F: arch/arm/include/asm/hardware/dec21285.h
670F: arch/arm/mach-footbridge/
671
Sascha Hauer86183a52008-07-24 23:50:35 +0200672ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
673P: Sascha Hauer
674M: kernel@pengutronix.de
675L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
676S: Maintained
677
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800678ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
679P: Lennert Buytenhek
680M: kernel@wantstofly.org
681L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
682S: Maintained
683
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100684ARM/GUMSTIX MACHINE SUPPORT
685P: Steve Sakoman
686M: sakoman@gmail.com
687L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
688S: Maintained
689
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200690ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
691P: Philipp Zabel
692M: philipp.zabel@gmail.com
693S: Maintained
694F: arch/arm/mach-pxa/hx4700.c
695F: arch/arm/mach-pxa/include/mach/hx4700.h
696
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100697ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200698P: Kristoffer Ericson
699M: kristoffer.ericson@gmail.com
700W: www.jlime.com
701S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100702
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703ARM/INTEL IOP32X ARM ARCHITECTURE
704P: Lennert Buytenhek
705M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100706P: Dan Williams
707M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800708L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100709S: Supported
710
711ARM/INTEL IOP33X ARM ARCHITECTURE
712P: Dan Williams
713M: dan.j.williams@intel.com
714L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
715S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800716
717ARM/INTEL IOP13XX ARM ARCHITECTURE
718P: Lennert Buytenhek
719M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100720P: Dan Williams
721M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800722L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100723S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800724
725ARM/INTEL IQ81342EX MACHINE SUPPORT
726P: Lennert Buytenhek
727M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100728P: Dan Williams
729M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800730L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100731S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800732
733ARM/INTEL IXP2000 ARM ARCHITECTURE
734P: Lennert Buytenhek
735M: kernel@wantstofly.org
736L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
737S: Maintained
738
739ARM/INTEL IXDP2850 MACHINE SUPPORT
740P: Lennert Buytenhek
741M: kernel@wantstofly.org
742L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
743S: Maintained
744
745ARM/INTEL IXP23XX ARM ARCHITECTURE
746P: Lennert Buytenhek
747M: kernel@wantstofly.org
748L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
749S: Maintained
750
751ARM/INTEL XSC3 (MANZANO) ARM CORE
752P: Lennert Buytenhek
753M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100754P: Dan Williams
755M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800756L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100757S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758
759ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
760P: Lennert Buytenhek
761M: kernel@wantstofly.org
762L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
763S: Maintained
764
765ARM/LOGICPD PXA270 MACHINE SUPPORT
766P: Lennert Buytenhek
767M: kernel@wantstofly.org
768L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
769S: Maintained
770
Philipp Zabel3b8861712008-07-09 21:27:15 +0100771ARM/MAGICIAN MACHINE SUPPORT
772P: Philipp Zabel
773M: philipp.zabel@gmail.com
774S: Maintained
775
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100776ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
777P: Michael Petchkovsky
778M: mkpetch@internode.on.net
779S: Maintained
780
Dirk Opfer8459c152005-11-06 14:27:52 +0000781ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800782P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100783M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000784P: Dirk Opfer
785M: dirk@opfer-online.de
786S: Maintained
787
Marek Vasut54088bf2009-03-24 00:29:29 +0100788ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100789P: Marek Vasut
790M: marek.vasut@gmail.com
791W: http://hackndev.com
792S: Maintained
793
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100794ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700795P: Sergey Lapin
796M: slapin@ossfans.org
797W: http://hackndev.com
798S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800ARM/PLEB SUPPORT
801P: Peter Chubb
802M: pleb@gelato.unsw.edu.au
803W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
804S: Maintained
805
806ARM/PT DIGITAL BOARD PORT
807P: Stefan Eletzhofer
808M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700809L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810W: http://www.arm.linux.org.uk/
811S: Maintained
812
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800813ARM/RADISYS ENP2611 MACHINE SUPPORT
814P: Lennert Buytenhek
815M: kernel@wantstofly.org
816L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
817S: Maintained
818
Russell Kingd4275352009-04-16 14:05:27 +0100819ARM/RISCPC ARCHITECTURE
820P: Russell King
821M: linux@arm.linux.org.uk
822L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
823W: http://www.arm.linux.org.uk/
824S: Maintained
825F: arch/arm/common/time-acorn.c
826F: arch/arm/include/asm/hardware/entry-macro-iomd.S
827F: arch/arm/include/asm/hardware/ioc.h
828F: arch/arm/include/asm/hardware/iomd.h
829F: arch/arm/include/asm/hardware/memc.h
830F: arch/arm/mach-rpc/
831F: drivers/net/arm/ether*
832F: drivers/scsi/arm/
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834ARM/SHARK MACHINE SUPPORT
835P: Alexander Schulz
836M: alex@shark-linux.de
837W: http://www.shark-linux.de/shark.html
838S: Maintained
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840ARM/S3C2410 ARM ARCHITECTURE
841P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800842M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700843L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844W: http://www.fluff.org/ben/linux/
845S: Maintained
846
847ARM/S3C2440 ARM ARCHITECTURE
848P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800849M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700850L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851W: http://www.fluff.org/ben/linux/
852S: Maintained
853
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800854ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
855P: Lennert Buytenhek
856M: kernel@wantstofly.org
857L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
858S: Maintained
859
860ARM/THECUS N2100 MACHINE SUPPORT
861P: Lennert Buytenhek
862M: kernel@wantstofly.org
863L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
864S: Maintained
865
wanzongshun98ad6e32009-02-13 06:04:32 +0100866ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700867P: Wan ZongShun
868M: mcuos.com@gmail.com
869L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
870W: http://www.mcuos.com
871S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100872
Russell Kingd4275352009-04-16 14:05:27 +0100873ARM/VFP SUPPORT
874P: Russell King
875M: linux@arm.linux.org.uk
876L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
877W: http://www.arm.linux.org.uk/
878S: Maintained
879F: arch/arm/vfp/
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881ARPD SUPPORT
882P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700883L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700885F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500888P: Corentin Chary
889M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890P: Karol Kozimor
891M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892L: acpi4asus-user@lists.sourceforge.net
893W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500894W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700896F: arch/x86/kernel/acpi/boot.c
897F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400899ASUS ASB100 HARDWARE MONITOR DRIVER
900P: Mark M. Hoffman
901M: mhoffman@lightlink.com
902L: lm-sensors@lm-sensors.org
903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700904F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400905
Corentin Chary85091b72007-01-26 14:04:30 +0100906ASUS LAPTOP EXTRAS DRIVER
907P: Corentin Chary
908M: corentincj@iksaif.net
909L: acpi4asus-user@lists.sourceforge.net
910W: http://sourceforge.net/projects/acpi4asus
911W: http://xf.iksaif.net/acpi4asus
912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700913F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100914
Andrew Morton953a6472008-11-06 12:53:28 -0800915ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700916P: Dan Williams
917M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100918P: Maciej Sosnowski
919M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700920W: http://sourceforge.net/projects/xscaleiop
921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700922F: Documentation/crypto/async-tx-api.txt
923F: crypto/async_tx/
924F: drivers/dma/
925F: include/linux/dmaengine.h
926F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700927
Randy Dunlape7839f22008-10-12 16:11:45 -0700928ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929P: Ed L. Cashin
930M: ecashin@coraid.com
931W: http://www.coraid.com/support/linux
932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700933F: Documentation/aoe/
934F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200936ATHEROS ATH5K WIRELESS DRIVER
937P: Jiri Slaby
938M: jirislaby@gmail.com
939P: Nick Kossifidis
940M: mickflemm@gmail.com
941P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700942M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400943P: Bob Copeland
944M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200945L: linux-wireless@vger.kernel.org
946L: ath5k-devel@lists.ath5k.org
947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700948F: drivers/net/wireless/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200949
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700950ATHEROS ATH9K WIRELESS DRIVER
951P: Luis R. Rodriguez
952M: lrodriguez@atheros.com
953P: Jouni Malinen
954M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400955P: Sujith Manoharan
956M: Sujith.Manoharan@atheros.com
957P: Vasanthakumar Thiagarajan
958M: vasanth@atheros.com
959P: Senthil Balasubramanian
960M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700961L: linux-wireless@vger.kernel.org
962L: ath9k-devel@lists.ath9k.org
963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700964F: drivers/net/wireless/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700965
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100966ATHEROS AR9170 WIRELESS DRIVER
967P: Christian Lamparter
968M: chunkeey@web.de
969L: linux-wireless@vger.kernel.org
970W: http://wireless.kernel.org/en/users/Drivers/ar9170
971S: Maintained
972F: drivers/net/wireless/ar9170/
973
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000974ATI_REMOTE2 DRIVER
975P: Ville Syrjala
976M: syrjala@sci.fi
977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700978F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000979
Chris Snook7ae115b2008-09-09 03:26:57 -0400980ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600981P: Jay Cliburn
982M: jcliburn@gmail.com
983P: Chris Snook
984M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400985P: Jie Yang
986M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600987L: atl1-devel@lists.sourceforge.net
988W: http://sourceforge.net/projects/atl1
989W: http://atl1.sourceforge.net
990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700991F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993ATM
994P: Chas Williams
995M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700996L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800997L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998W: http://linux-atm.sourceforge.net
999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001000F: drivers/atm/
1001F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Pierre Ossman272f1332007-05-14 21:25:26 +02001003ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001004P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001005M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001006L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1007W: http://www.atmel.com/products/AT91/
1008W: http://www.at91.com/
1009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001010F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001011
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001012ATMEL AT91 / AT32 SERIAL DRIVER
1013P: Haavard Skinnemoen
1014M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001016F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001017
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001018ATMEL LCDFB DRIVER
1019P: Nicolas Ferre
1020M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001021L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001023F: drivers/video/atmel_lcdfb.c
1024F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001025
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001026ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001027P: Haavard Skinnemoen
1028M: hskinnemoen@atmel.com
1029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001030F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001031
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001032ATMEL SPI DRIVER
1033P: Haavard Skinnemoen
1034M: hskinnemoen@atmel.com
1035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001036F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001037
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001038ATMEL USBA UDC DRIVER
1039P: Haavard Skinnemoen
1040M: hskinnemoen@atmel.com
1041L: kernel@avr32linux.org
1042W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001044F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046ATMEL WIRELESS DRIVER
1047P: Simon Kelley
1048M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001049L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050W: http://www.thekelleys.org.uk/atmel
1051W: http://atmelwlandriver.sourceforge.net/
1052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001053F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Chris Wrighta92b7b82005-07-07 18:12:23 -07001055AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001056P: Al Viro
1057M: viro@zeniv.linux.org.uk
1058P: Eric Paris
1059M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001060L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001061W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001062T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001064F: include/linux/audit.h
1065F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001066
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001067AUXILIARY DISPLAY DRIVERS
1068P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001069M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001070W: http://miguelojeda.es/auxdisplay.htm
1071W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001073F: drivers/auxdisplay/
1074F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001075
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001076AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001077P: Haavard Skinnemoen
1078M: hskinnemoen@atmel.com
1079W: http://www.atmel.com/products/AVR32/
1080W: http://avr32linux.org/
1081W: http://avrfreaks.net/
1082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001083F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001084
1085AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001086P: Haavard Skinnemoen
1087M: hskinnemoen@atmel.com
1088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001089F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091AX.25 NETWORK LAYER
1092P: Ralf Baechle
1093M: ralf@linux-mips.org
1094L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001095W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001097F: include/linux/ax25.h
1098F: include/net/ax25.h
1099F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001101B43 WIRELESS DRIVER
1102P: Michael Buesch
1103M: mb@bu3sch.de
1104P: Stefano Brivio
1105M: stefano.brivio@polimi.it
1106L: linux-wireless@vger.kernel.org
1107W: http://linuxwireless.org/en/users/Drivers/b43
1108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001109F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001110
1111B43LEGACY WIRELESS DRIVER
1112P: Larry Finger
1113M: Larry.Finger@lwfinger.net
1114P: Stefano Brivio
1115M: stefano.brivio@polimi.it
1116L: linux-wireless@vger.kernel.org
1117W: http://linuxwireless.org/en/users/Drivers/b43
1118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001119F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001120
Richard Purdie300abeb2007-02-07 22:21:07 +00001121BACKLIGHT CLASS/SUBSYSTEM
1122P: Richard Purdie
1123M: rpurdie@rpsys.net
1124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: drivers/video/backlight/
1126F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001128BAYCOM/HDLCDRV DRIVERS FOR AX.25
1129P: Thomas Sailer
1130M: t.sailer@alumni.ethz.ch
1131L: linux-hams@vger.kernel.org
1132W: http://www.baycom.org/~tom/ham/ham.html
1133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001134F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001135
1136BEFS FILE SYSTEM
1137P: Sergey S. Kostyliov
1138M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001140F: Documentation/filesystems/befs.txt
1141F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001142
1143BFS FILE SYSTEM
1144P: Tigran A. Aivazian
1145M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001147F: Documentation/filesystems/bfs.txt
1148F: fs/bfs/
1149F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001150
Bryan Wu1394f032007-05-06 14:50:22 -07001151BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001152P: Mike Frysinger
1153M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001154L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001155W: http://blackfin.uclinux.org
1156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001157F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001158
Bryan Wue190d6b2007-07-17 14:43:44 +08001159BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001160P: Michael Hennerich
1161M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001162L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001163W: http://blackfin.uclinux.org
1164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001165F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001166
Mike Frysinger566da5b2007-06-11 15:31:30 +08001167BLACKFIN RTC DRIVER
1168P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001169M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001170L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001171W: http://blackfin.uclinux.org
1172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001173F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001174
Bryan Wu1394f032007-05-06 14:50:22 -07001175BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001176P: Sonic Zhang
1177M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001178L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001179W: http://blackfin.uclinux.org
1180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001181F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001182
Bryan Wu1e6d3202007-07-15 02:50:02 +08001183BLACKFIN WATCHDOG DRIVER
1184P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001185M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001186L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001187W: http://blackfin.uclinux.org
1188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001189F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001190
Bryan Wud24ecfc2007-05-01 23:26:32 +02001191BLACKFIN I2C TWI DRIVER
1192P: Sonic Zhang
1193M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001194L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001195W: http://blackfin.uclinux.org/
1196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001197F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199BLOCK LAYER
1200P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001201M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001202T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001204F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Joern Engel2b54aae2008-02-06 01:38:02 -08001206BLOCK2MTD DRIVER
1207P: Joern Engel
1208M: joern@lazybastard.org
1209L: linux-mtd@lists.infradead.org
1210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001212
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001213BLUETOOTH DRIVERS
1214P: Marcel Holtmann
1215M: marcel@holtmann.org
1216L: linux-bluetooth@vger.kernel.org
1217W: http://www.bluez.org/
1218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001219F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221BLUETOOTH SUBSYSTEM
1222P: Marcel Holtmann
1223M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001224L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001225W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001226T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001228F: net/bluetooth/
1229F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001232P: Jay Vosburgh
1233M: fubar@us.ibm.com
1234L: bonding-devel@lists.sourceforge.net
1235W: http://sourceforge.net/projects/bonding/
1236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001237F: drivers/net/bonding/
1238F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Gary Zambrano39105892006-06-22 17:26:20 -07001240BROADCOM B44 10/100 ETHERNET DRIVER
1241P: Gary Zambrano
1242M: zambrano@broadcom.com
1243L: netdev@vger.kernel.org
1244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001245F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001246
Michael Chan948c51e2006-06-04 02:51:39 -07001247BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1248P: Michael Chan
1249M: mchan@broadcom.com
1250L: netdev@vger.kernel.org
1251S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001252F: drivers/net/bnx2.*
1253F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001254
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001255BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001256P: Eilon Greenstein
1257M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001258L: netdev@vger.kernel.org
1259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001260F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001261
Michael Chan948c51e2006-06-04 02:51:39 -07001262BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001263P: Matt Carlson
1264M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001265P: Michael Chan
1266M: mchan@broadcom.com
1267L: netdev@vger.kernel.org
1268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001269F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001270
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001271BSG (block layer generic sg v4 driver)
1272P: FUJITA Tomonori
1273M: fujita.tomonori@lab.ntt.co.jp
1274L: linux-scsi@vger.kernel.org
1275S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001276F: block/bsg.c
1277F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001278
Michael Bueschff1d5c22008-07-25 01:46:10 -07001279BT8XXGPIO DRIVER
1280P: Michael Buesch
1281M: mb@bu3sch.de
1282W: http://bu3sch.de/btgpio.php
1283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001284F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001285
Joe Percheseb1eb042009-01-21 10:49:16 -05001286BTRFS FILE SYSTEM
1287P: Chris Mason
1288M: chris.mason@oracle.com
1289L: linux-btrfs@vger.kernel.org
1290W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001291T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001293F: Documentation/filesystems/btrfs.txt
1294F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001297P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001298M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001299L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001300W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001301T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001303F: Documentation/video4linux/bttv/
1304F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
David Howellsa5432f52009-04-20 15:46:45 +01001306CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1307P: David Howells
1308M: dhowells@redhat.com
1309L: linux-cachefs@redhat.com
1310S: Supported
1311F: Documentation/filesystems/caching/cachefiles.txt
1312F: fs/cachefiles/
1313
Jonathan Corbet77d51402007-03-22 19:44:17 -03001314CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001315P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001316M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001317L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001318T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001320F: Documentation/video4linux/cafe_ccic
1321F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001322
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001323CALGARY x86-64 IOMMU
1324P: Muli Ben-Yehuda
1325M: muli@il.ibm.com
1326P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001327M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001328L: discuss@x86-64.org
1329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001330F: arch/x86/kernel/pci-calgary_64.c
1331F: arch/x86/kernel/tce_64.c
1332F: arch/x86/include/asm/calgary.h
1333F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001334
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001335CAN NETWORK LAYER
1336P: Urs Thuermann
1337M: urs.thuermann@volkswagen.de
1338P: Oliver Hartkopp
1339M: oliver.hartkopp@volkswagen.de
1340L: socketcan-core@lists.berlios.de (subscribers-only)
1341W: http://developer.berlios.de/projects/socketcan/
1342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001343F: drivers/net/can/
1344F: include/linux/can/
1345F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001346
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001347CAN NETWORK DRIVERS
1348P: Wolfgang Grandegger
1349M: wg@grandegger.com
1350L: socketcan-core@lists.berlios.de (subscribers-only)
1351W: http://developer.berlios.de/projects/socketcan/
1352S: Maintained
1353
Arnd Bergmannb8154542008-05-16 11:10:59 +02001354CELL BROADBAND ENGINE ARCHITECTURE
1355P: Arnd Bergmann
1356M: arnd@arndb.de
1357L: linuxppc-dev@ozlabs.org
1358L: cbe-oss-dev@ozlabs.org
1359W: http://www.ibm.com/developerworks/power/cell/
1360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001361F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001362F: arch/powerpc/include/asm/spu*.h
1363F: arch/powerpc/oprofile/*cell*
1364F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001365
David Vrabel18332a82008-09-17 16:34:44 +01001366CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1367P: David Vrabel
1368M: david.vrabel@csr.com
1369L: linux-usb@vger.kernel.org
1370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001371F: Documentation/usb/WUSB-Design-overview.txt
1372F: Documentation/usb/wusb-cbaf
1373F: drivers/usb/wusbcore/
1374F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001375
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001376CFAG12864B LCD DRIVER
1377P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001378M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001379W: http://miguelojeda.es/auxdisplay.htm
1380W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001382F: drivers/auxdisplay/cfag12864b.c
1383F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001384
1385CFAG12864BFB LCD FRAMEBUFFER DRIVER
1386P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001387M: miguel.ojeda.sandonis@gmail.com
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/cfag12864bfb.c
1392F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001393
Johannes Berg704232c2007-04-23 12:20:05 -07001394CFG80211 and NL80211
1395P: Johannes Berg
1396M: johannes@sipsolutions.net
1397L: linux-wireless@vger.kernel.org
1398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001399F: include/linux/nl80211.h
1400F: include/net/cfg80211.h
1401F: net/wireless/*
1402X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001403
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001404CHECKPATCH
1405P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001406M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001408F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001409
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001410CISCO 10G ETHERNET DRIVER
1411P: Scott Feldman
1412M: scofeldm@cisco.com
1413P: Joe Eykholt
1414M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001415S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001416F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001417
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001418CIRRUS LOGIC EP93XX ETHERNET DRIVER
1419P: Lennert Buytenhek
1420M: kernel@wantstofly.org
1421L: netdev@vger.kernel.org
1422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001423F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001424
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001425CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1426P: Lennert Buytenhek
1427M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001428L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001430F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001431
Timur Tabid9e9d822008-04-24 08:45:26 +10001432CIRRUS LOGIC CS4270 SOUND DRIVER
1433P: Timur Tabi
1434M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001435L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001437F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1440P: Cirrus Logic Corporation (kernel 2.2 driver)
1441M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1442P: Nils Faerber (port to kernel 2.4)
1443M: Nils Faerber <nils@kernelconcepts.de>
1444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001445F: Documentation/input/cs461x.txt
1446F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Russell Kingd4275352009-04-16 14:05:27 +01001448CLK API
1449P: Russell King
1450M: linux@arm.linux.org.uk
1451F: include/linux/clk.h
1452
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001453CISCO FCOE HBA DRIVER
1454P: Abhijeet Joglekar
1455M: abjoglek@cisco.com
1456P: Joe Eykholt
1457M: jeykholt@cisco.com
1458L: linux-scsi@vger.kernel.org
1459S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001460F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462CODA FILE SYSTEM
1463P: Jan Harkes
1464M: jaharkes@cs.cmu.edu
1465M: coda@cs.cmu.edu
1466L: codalist@coda.cs.cmu.edu
1467W: http://www.coda.cs.cmu.edu/
1468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001469F: Documentation/filesystems/coda.txt
1470F: fs/coda/
1471F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001473COMMON INTERNET FILE SYSTEM (CIFS)
1474P: Steve French
1475M: sfrench@samba.org
1476L: linux-cifs-client@lists.samba.org
1477L: samba-technical@lists.samba.org
1478W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001479T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001481F: Documentation/filesystems/cifs.txt
1482F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484COMPACTPCI HOTPLUG CORE
1485P: Scott Murray
1486M: scottm@somanetworks.com
1487M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001488L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001490F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1493P: Scott Murray
1494M: scottm@somanetworks.com
1495M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001496L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001498F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500COMPACTPCI HOTPLUG GENERIC DRIVER
1501P: Scott Murray
1502M: scottm@somanetworks.com
1503M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001504L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001506F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001508COMPAL LAPTOP SUPPORT
1509P: Cezary Jackiewicz
1510M: cezary.jackiewicz@gmail.com
1511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001512F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514COMPUTONE INTELLIPORT MULTIPORT CARD
1515P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001516M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: Documentation/serial/computone.txt
1520F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Simon Arlott949be0f2007-03-06 02:47:46 -08001522CONEXANT ACCESSRUNNER USB DRIVER
1523P: Simon Arlott
1524M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001525L: accessrunner-general@lists.sourceforge.net
1526W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001529
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001530CONFIGFS
1531P: Joel Becker
1532M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001533S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001534F: fs/configfs/
1535F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001536
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001537CONTROL GROUPS (CGROUPS)
1538P: Paul Menage
1539M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001540P: Li Zefan
1541M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001542L: containers@lists.linux-foundation.org
1543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001544F: include/linux/cgroup*
1545F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001546
Rudolf Marekbebe4672007-05-08 17:22:02 +02001547CORETEMP HARDWARE MONITORING DRIVER
1548P: Rudolf Marek
1549M: r.marek@assembler.cz
1550L: lm-sensors@lm-sensors.org
1551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001552F: Documentation/hwmon/coretemp
1553F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555COSA/SRP SYNC SERIAL DRIVER
1556P: Jan "Yenya" Kasprzak
1557M: kas@fi.muni.cz
1558W: http://www.fi.muni.cz/~kas/cosa/
1559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001560F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Florian Fainelli4371ee32009-06-01 02:43:17 -07001562CPMAC ETHERNET DRIVER
1563P: Florian Fainelli
1564M: florian@openwrt.org
1565L: netdev@vger.kernel.org
1566S: Maintained
1567F: drivers/net/cpmac.c
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569CPU FREQUENCY DRIVERS
1570P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001571M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001572L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001574T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001576F: arch/x86/kernel/cpu/cpufreq/
1577F: drivers/cpufreq/
1578F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580CPUID/MSR DRIVER
1581P: H. Peter Anvin
1582M: hpa@zytor.com
1583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001584F: arch/x86/kernel/cpuid.c
1585F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Paul Jacksoned90fb42005-09-27 21:45:37 -07001587CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001588P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001589M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001590W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001591W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001592S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001593F: Documentation/cgroups/cpusets.txt
1594F: include/linux/cpuset.h
1595F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001598W: http://sourceforge.net/projects/cramfs/
1599S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001600F: Documentation/filesystems/cramfs.txt
1601F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603CRIS PORT
1604P: Mikael Starvik
1605M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001606P: Jesper Nilsson
1607M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608L: dev-etrax@axis.com
1609W: http://developer.axis.com
1610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
1613CRYPTO API
1614P: Herbert Xu
1615M: herbert@gondor.apana.org.au
1616P: David S. Miller
1617M: davem@davemloft.net
1618L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001619T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001621F: Documentation/crypto/
1622F: arch/*/crypto/
1623F: crypto/
1624F: drivers/crypto/
1625F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Neil Horman5b07bd52009-02-05 16:03:04 +11001627CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1628P: Neil Horman
1629M: nhorman@tuxdriver.com
1630L: linux-crypto@vger.kernel.org
1631S: Maintained
1632
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001633CS5535 Audio ALSA driver
1634P: Jaya Kumar
1635M: jayakumar.alsa@gmail.com
1636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001638
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001639CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001640P: Hans Verkuil
1641M: hverkuil@xs4all.nl
1642P: Andy Walls
1643M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001644L: ivtv-devel@ivtvdriver.org
1645L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001646L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001647T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001648W: http://linuxtv.org
1649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001650F: Documentation/video4linux/cx18.txt
1651F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001652
Steve Wisee5ec3782008-05-20 14:06:33 -07001653CXGB3 ETHERNET DRIVER (CXGB3)
1654P: Divy Le Ray
1655M: divy@chelsio.com
1656L: netdev@vger.kernel.org
1657W: http://www.chelsio.com
1658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001659F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001660
1661CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1662P: Steve Wise
1663M: swise@chelsio.com
1664L: general@lists.openfabrics.org
1665W: http://www.openfabrics.org
1666S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001667F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669CYBERPRO FB DRIVER
1670P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001671M: linux@arm.linux.org.uk
1672L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673W: http://www.arm.linux.org.uk/
1674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001675F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677CYCLADES 2X SYNC CARD DRIVER
1678P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001679M: acme@ghostprotocols.net
1680W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001682F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001686S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001687F: drivers/char/cyclades.c
1688F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001692S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001693F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695DAMA SLAVE for AX.25
1696P: Joerg Reuter
1697M: jreuter@yaina.de
1698W: http://yaina.de/jreuter/
1699W: http://www.qsl.net/dl1bke/
1700L: linux-hams@vger.kernel.org
1701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001702F: net/ax25/af_ax25.c
1703F: net/ax25/ax25_dev.c
1704F: net/ax25/ax25_ds_*
1705F: net/ax25/ax25_in.c
1706F: net/ax25/ax25_out.c
1707F: net/ax25/ax25_timer.c
1708F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001710DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1711P: Tobias Ringstrom
1712M: tori@unhappy.mine.nu
1713L: netdev@vger.kernel.org
1714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001715F: Documentation/networking/dmfe.txt
1716F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001717
1718DC390/AM53C974 SCSI driver
1719P: Kurt Garloff
1720M: garloff@suse.de
1721W: http://www.garloff.de/kurt/linux/dc390/
1722P: Guennadi Liakhovetski
1723M: g.liakhovetski@gmx.de
1724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001726
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727DC395x SCSI driver
1728P: Oliver Neukum
1729M: oliver@neukum.name
1730P: Ali Akcaagac
1731M: aliakc@web.de
1732P: Jamie Lenehan
1733M: lenehan@twibble.org
1734W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001735L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736L: http://lists.twibble.org/mailman/listinfo/dc395x/
1737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001738F: Documentation/scsi/dc395x.txt
1739F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001741DCCP PROTOCOL
1742P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001743M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001744L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001745W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001747F: include/linux/dccp.h
1748F: include/linux/tfrc.h
1749F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001752P: Christine Caulfield
1753M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754W: http://linux-decnet.sourceforge.net
1755L: linux-decnet-user@lists.sourceforge.net
1756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001757F: Documentation/networking/decnet.txt
1758F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760DEFXX FDDI NETWORK DRIVER
1761P: Maciej W. Rozycki
1762M: macro@linux-mips.org
1763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001764F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001766DELL LAPTOP DRIVER
1767P: Matthew Garrett
1768M: mjg59@srcf.ucam.org
1769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001770F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772DELL LAPTOP SMM DRIVER
1773P: Massimo Dal Zotto
1774M: dz@debian.org
1775W: http://www.debian.org/~dz/i8k/
1776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: drivers/char/i8k.c
1778F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Doug Warzecha90563ec2005-09-06 15:17:15 -07001780DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1781P: Doug Warzecha
1782M: Douglas_Warzecha@dell.com
1783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001784F: Documentation/dcdbas.txt
1785F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001786
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001787DELL WMI EXTRAS DRIVER
1788P: Matthew Garrett
1789M: mjg59@srcf.ucam.org
1790S: Maintained
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792DEVICE NUMBER REGISTRY
1793P: Torben Mathiasen
1794M: device@lanana.org
1795W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796S: Maintained
1797
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001798DEVICE-MAPPER (LVM)
1799P: Alasdair Kergon
1800L: dm-devel@redhat.com
1801W: http://sources.redhat.com/dm
1802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001803F: Documentation/device-mapper/
1804F: drivers/md/dm*
1805F: include/linux/device-mapper.h
1806F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808DIGI INTL. EPCA DRIVER
1809P: Digi International, Inc
1810M: Eng.Linux@digi.com
1811L: Eng.Linux@digi.com
1812W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001813S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001814F: Documentation/serial/digiepca.txt
1815F: drivers/char/epca*
1816F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Randy Dunlape7839f22008-10-12 16:11:45 -07001818DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001819P: Eric Paris
1820M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001822F: Documentation/filesystems/dnotify.txt
1823F: fs/notify/dnotify/
1824F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826DISK GEOMETRY AND PARTITION HANDLING
1827P: Andries Brouwer
1828M: aeb@cwi.nl
1829W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1830W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1831W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1832S: Maintained
1833
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001834DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835P: Jan Kara
1836M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/filesystems/quota.txt
1839F: fs/quota/
1840F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Randy Dunlape7839f22008-10-12 16:11:45 -07001842DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001843P: Christine Caulfield
1844M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001845P: David Teigland
1846M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001847L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001848W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001849T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001851F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001852
Dan Williamsb3e5f262007-08-07 10:26:35 -07001853DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001854P: Maciej Sosnowski
1855M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001856P: Dan Williams
1857M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001858S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001859F: drivers/dma/
1860F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001861
Juerg Haefligerb8250372007-06-09 10:11:16 -04001862DME1737 HARDWARE MONITOR DRIVER
1863P: Juerg Haefliger
1864M: juergh@gmail.com
1865L: lm-sensors@lm-sensors.org
1866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001867F: Documentation/hwmon/dme1737
1868F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001869
Martin Waitzba483d52005-06-17 13:20:59 -07001870DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001871P: Randy Dunlap
1872M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001873S: Maintained
1874
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001875DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001876P: Shaohua Li
1877M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001878L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001880F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001881
Joe Perches7d2c86b2009-04-07 20:59:01 -07001882DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001883P: Randy Dunlap
1884M: rdunlap@xenotime.net
1885L: linux-doc@vger.kernel.org
1886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001887F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889DOUBLETALK DRIVER
1890P: James R. Van Zandt
1891M: jrv@vanzandt.mv.com
1892L: blinux-list@redhat.com
1893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001894F: drivers/char/dtlk.c
1895F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001897DPT_I2O SCSI RAID DRIVER
1898P: Adaptec OEM Raid Solutions
1899M: aacraid@adaptec.com
1900L: linux-scsi@vger.kernel.org
1901W: http://www.adaptec.com/
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: drivers/scsi/dpt*
1904F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906DRIVER CORE, KOBJECTS, AND SYSFS
1907P: Greg Kroah-Hartman
1908M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001909T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001911F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001912F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001913F: fs/sysfs/
1914F: include/linux/kobj*
1915F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917DRM DRIVERS
1918P: David Airlie
1919M: airlied@linux.ie
1920L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001921T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001923F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001926P: Francois Romieu
1927M: romieu@fr.zoreil.com
1928L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001930F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001932DZ DECSTATION DZ11 SERIAL DRIVER
1933P: Maciej W. Rozycki
1934M: macro@linux-mips.org
1935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001936F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938EATA-DMA SCSI DRIVER
1939P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001940M: mike@i-Connect.Net
1941L: linux-eata@i-connect.net
1942L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001944F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946EATA ISA/EISA/PCI SCSI DRIVER
1947P: Dario Ballabio
1948M: ballabio_dario@emc.com
1949L: linux-scsi@vger.kernel.org
1950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001951F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953EATA-PIO SCSI DRIVER
1954P: Michael Neuffer
1955M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001956L: linux-eata@i-connect.net
1957L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001959F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961EBTABLES
1962P: Bart De Schuymer
1963M: bart.de.schuymer@pandora.be
1964L: ebtables-user@lists.sourceforge.net
1965L: ebtables-devel@lists.sourceforge.net
1966W: http://ebtables.sourceforge.net/
1967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: include/linux/netfilter_bridge/ebt_*.h
1969F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Michael Halcrow237fead2006-10-04 02:16:22 -07001971ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001972P: Tyler Hicks
1973M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07001974P: Dustin Kirkland
1975M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001976L: ecryptfs-devel@lists.launchpad.net
1977W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001978S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001979F: Documentation/filesystems/ecryptfs.txt
1980F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001981
Alan Coxda9bb1d2006-01-18 17:44:13 -08001982EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001983P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001984M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001985L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001986W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001988F: Documentation/edac.txt
1989F: drivers/edac/edac_*
1990F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001991
Borislav Petkovc476c232009-05-20 20:31:58 +02001992EDAC-AMD64
1993P: Doug Thompson
1994M: dougthompson@xmission.com
1995P: Borislav Petkov
1996M: borislav.petkov@amd.com
1997L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1998W: bluesmoke.sourceforge.net
1999S: Supported
2000F: drivers/edac/amd64_edac*
2001
Dave Peterson0e438e32006-03-26 01:38:55 -08002002EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002003P: Mark Gross
2004M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002005P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002006M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002007L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002008W: bluesmoke.sourceforge.net
2009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002010F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002011
2012EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002013P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002014M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002015L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002016W: bluesmoke.sourceforge.net
2017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002018F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002019
Douglas Thompson6bc78402007-07-19 01:50:12 -07002020EDAC-I82443BXGX
2021P: Tim Small
2022M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002023L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002024W: bluesmoke.sourceforge.net
2025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002026F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002027
2028EDAC-I3000
2029P: Jason Uhlenkott
2030M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002031L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002032W: bluesmoke.sourceforge.net
2033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002034F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002035
2036EDAC-I5000
2037P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002038M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002039L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002040W: bluesmoke.sourceforge.net
2041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002042F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002043
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002044EDAC-I5400
2045P: Mauro Carvalho Chehab
2046M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002047L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002048W: bluesmoke.sourceforge.net
2049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002050F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002051
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002052EDAC-I82975X
2053P: Ranganathan Desikan
2054P: Arvind R.
2055M: rdesikan@jetzbroadband.com
2056M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002057L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002058W: bluesmoke.sourceforge.net
2059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002060F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002061
2062EDAC-PASEMI
2063P: Egor Martovetsky
2064M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002065L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002066W: bluesmoke.sourceforge.net
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002069
Dave Peterson0e438e32006-03-26 01:38:55 -08002070EDAC-R82600
2071P: Tim Small
2072M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002073L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002074W: bluesmoke.sourceforge.net
2075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002076F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002077
Eric Coopere59f8792008-03-13 12:55:46 +01002078EEEPC LAPTOP EXTRAS DRIVER
2079P: Corentin Chary
2080M: corentincj@iksaif.net
2081L: acpi4asus-user@lists.sourceforge.net
2082W: http://sourceforge.net/projects/acpi4asus
2083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002085
Josh Triplett0bee8d22006-07-30 03:03:58 -07002086EFS FILESYSTEM
2087W: http://aeschi.ch.eu.org/efs/
2088S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002089F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002090
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002091EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002092P: Hoang-Nam Nguyen
2093M: hnguyen@de.ibm.com
2094P: Christoph Raisch
2095M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002096L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002098F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002099
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002100EMBEDDED LINUX
2101P: Paul Gortmaker
2102M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002103P: Matt Mackall
2104M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002105P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002106M: dwmw2@infradead.org
2107L: linux-embedded@vger.kernel.org
2108S: Maintained
2109
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002110EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002111P: James Smart
2112M: james.smart@emulex.com
2113L: linux-scsi@vger.kernel.org
2114W: http://sourceforge.net/projects/lpfcxxxx
2115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002116F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002117
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002118ENE CB710 FLASH CARD READER DRIVER
2119P: Michał Mirosław
2120M: mirq-linux@rere.qmqm.pl
2121L: linux-kernel@vger.kernel.org
2122S: Maintained
2123F: drivers/misc/cb710/
2124F: drivers/mmc/host/cb710-mmc.*
2125F: include/linux/cb710.h
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127EPSON 1355 FRAMEBUFFER DRIVER
2128P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002129M: ch@murgatroid.com
2130P: Christopher Hoover
2131M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002133F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002135EPSON S1D13XXX FRAMEBUFFER DRIVER
2136P: Kristoffer Ericson
2137M: kristoffer.ericson@gmail.com
2138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002139F: drivers/video/s1d13xxxfb.c
2140F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142ETHEREXPRESS-16 NETWORK DRIVER
2143P: Philip Blundell
2144M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002145L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149ETHERNET BRIDGE
2150P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002151M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002152L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002153W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002155F: include/linux/netfilter_bridge/
2156F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158ETHERTEAM 16I DRIVER
2159P: Mika Kuoppala
2160M: miku@iki.fi
2161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002162F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002165L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002167F: Documentation/filesystems/ext2.txt
2168F: fs/ext2/
2169F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002172P: Stephen Tweedie
2173M: sct@redhat.com
2174P: Andrew Morton
2175M: akpm@linux-foundation.org
2176P: Andreas Dilger
2177M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002178L: linux-ext4@vger.kernel.org
2179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002180F: Documentation/filesystems/ext3.txt
2181F: fs/ext3/
2182F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002183
2184EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002185P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002186M: tytso@mit.edu
2187P: Andreas Dilger
2188M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002189L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002190W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: Documentation/filesystems/ext4.txt
2193F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Jean Delvaree53004e2006-01-09 23:26:14 +01002195F71805F HARDWARE MONITORING DRIVER
2196P: Jean Delvare
2197M: khali@linux-fr.org
2198L: lm-sensors@lm-sensors.org
2199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: Documentation/hwmon/f71805f
2201F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203FARSYNC SYNCHRONOUS DRIVER
2204P: Kevin Curtis
2205M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206W: http://www.farsite.co.uk/
2207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002208F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Akinobu Mitac5408b82007-04-23 14:41:20 -07002210FAULT INJECTION SUPPORT
2211P: Akinobu Mita
2212M: akinobu.mita@gmail.com
2213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002214F: Documentation/fault-injection/
2215F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002216
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002217FILE LOCKING (flock() and fcntl()/lockf())
2218P: Matthew Wilcox
2219M: matthew@wil.cx
2220L: linux-fsdevel@vger.kernel.org
2221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002222F: include/linux/fcntl.h
2223F: include/linux/fs.h
2224F: fs/fcntl.c
2225F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002226
2227FILESYSTEMS (VFS and infrastructure)
2228P: Alexander Viro
2229M: viro@zeniv.linux.org.uk
2230L: linux-fsdevel@vger.kernel.org
2231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002232F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002233
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002234FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2235P: Riku Voipio
2236M: riku.vipio@iki.fi
2237L: lm-sensors@lm-sensors.org
2238S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002239F: drivers/hwmon/f75375s.c
2240F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002241
Joe Perches7d2c86b2009-04-07 20:59:01 -07002242FIREWIRE SUBSYSTEM
2243P: Kristian Hoegsberg
2244M: krh@redhat.com
2245P: Stefan Richter
2246M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002247L: linux1394-devel@lists.sourceforge.net
2248W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002249T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002251F: drivers/firewire/
2252F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002253
2254FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002255S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002256F: Documentation/firmware_class/
2257F: drivers/base/firmware*.c
2258F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259
2260FPU EMULATOR
2261P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002262M: billm@melbpc.org.au
2263W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002265F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002266
2267FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2268P: Mike McLagan
2269M: mike.mclagan@linux.org
2270L: netdev@vger.kernel.org
2271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002272F: drivers/net/wan/dlci.c
2273F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275FRAMEBUFFER LAYER
2276P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002277M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002278L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279W: http://linux-fbdev.sourceforge.net/
2280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002281F: Documentation/fb/
2282F: drivers/video/fb*
2283F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Zhang Wei173acc72008-03-01 07:42:48 -07002285FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002286P: Li Yang
2287M: leoli@freescale.com
2288P: Zhang Wei
2289M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002290L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002293
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002294FREESCALE I2C CPM DRIVER
2295P: Jochen Friedrich
2296M: jochen@scram.de
2297L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002298L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002301
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002302FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2303P: Sascha Hauer
2304M: kernel@pengutronix.de
2305L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2306L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: arch/arm/plat-mxc/include/mach/imxfb.h
2309F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002310
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002311FREESCALE SOC FS_ENET DRIVER
2312P: Pantelis Antoniou
2313M: pantelis.antoniou@gmail.com
2314P: Vitaly Bordug
2315M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002316L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002317L: netdev@vger.kernel.org
2318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002319F: drivers/net/fs_enet/
2320F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002321
Timur Tabid9e9d822008-04-24 08:45:26 +10002322FREESCALE QUICC ENGINE LIBRARY
2323P: Timur Tabi
2324M: timur@freescale.com
2325L: linuxppc-dev@ozlabs.org
2326S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002327F: arch/powerpc/sysdev/qe_lib/
2328F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002329
Li Yanga7205b32007-04-23 10:38:18 -07002330FREESCALE HIGHSPEED USB DEVICE DRIVER
2331P: Li Yang
2332M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002333L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002334L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002336F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002337
Li Yangbeaf53b2007-05-25 13:54:02 +08002338FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2339P: Li Yang
2340M: leoli@freescale.com
2341L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002342L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002344F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002345
Timur Tabid9e9d822008-04-24 08:45:26 +10002346FREESCALE QUICC ENGINE UCC UART DRIVER
2347P: Timur Tabi
2348M: timur@freescale.com
2349L: linuxppc-dev@ozlabs.org
2350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002352
2353FREESCALE SOC SOUND DRIVERS
2354P: Timur Tabi
2355M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002356L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002357L: linuxppc-dev@ozlabs.org
2358S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002359F: sound/soc/fsl/fsl*
2360F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362FREEVXFS FILESYSTEM
2363P: Christoph Hellwig
2364M: hch@infradead.org
2365W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002367F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Pavel Machek71038f52009-01-15 13:51:02 -08002369FREEZER
2370P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002371M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002372P: Rafael J. Wysocki
2373M: rjw@sisk.pl
2374L: linux-pm@lists.linux-foundation.org
2375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002376F: Documentation/power/freezing-of-tasks.txt
2377F: include/linux/freezer.h
2378F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002379
David Howellsa5432f52009-04-20 15:46:45 +01002380FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2381P: David Howells
2382M: dhowells@redhat.com
2383L: linux-cachefs@redhat.com
2384S: Supported
2385F: Documentation/filesystems/caching/
2386F: fs/fscache/
2387F: include/linux/fscache*.h
2388
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002389FTRACE
2390P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002391M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: Documentation/ftrace.txt
2394F: arch/*/*/*/ftrace.h
2395F: arch/*/kernel/ftrace.c
2396F: include/*/ftrace.h
2397F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002398
David Howells5ab7ffe2007-04-10 15:10:45 +01002399FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400P: David Howells
2401M: dhowells@redhat.com
2402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002403F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Jonathan Woithe20b93732008-06-11 10:14:56 +09302405FUJITSU LAPTOP EXTRAS
2406P: Jonathan Woithe
2407M: jwoithe@physics.adelaide.edu.au
2408L: linux-acpi@vger.kernel.org
2409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002410F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302411
Miklos Szeredi04578f12005-09-09 13:10:22 -07002412FUSE: FILESYSTEM IN USERSPACE
2413P: Miklos Szeredi
2414M: miklos@szeredi.hu
2415L: fuse-devel@lists.sourceforge.net
2416W: http://fuse.sourceforge.net/
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: fs/fuse/
2419F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2422P: Rik Faith
2423M: faith@cs.unc.edu
2424L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002425S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002426F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428GDT SCSI DISK ARRAY CONTROLLER DRIVER
2429P: Achim Leubner
2430M: achim_leubner@adaptec.com
2431L: linux-scsi@vger.kernel.org
2432W: http://www.icp-vortex.com/
2433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002434F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002436GENERIC GPIO I2C DRIVER
2437P: Haavard Skinnemoen
2438M: hskinnemoen@atmel.com
2439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002440F: drivers/i2c/busses/i2c-gpio.c
2441F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002442
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002443GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444P: Krzysztof Halasa
2445M: khc@pm.waw.pl
2446W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: drivers/net/wan/c101.c
2449F: drivers/net/wan/hd6457*
2450F: drivers/net/wan/hdlc*
2451F: drivers/net/wan/n2.c
2452F: drivers/net/wan/pc300too.c
2453F: drivers/net/wan/pci200syn.c
2454F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002456GFS2 FILE SYSTEM
2457P: Steven Whitehouse
2458M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002459L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002460W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002461T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2462T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002464F: Documentation/filesystems/gfs2*.txt
2465F: fs/gfs2/
2466F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002467
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002468GIGASET ISDN DRIVERS
2469P: Hansjoerg Lipp
2470M: hjlipp@web.de
2471P: Tilman Schmidt
2472M: tilman@imap.cc
2473L: gigaset307x-common@lists.sourceforge.net
2474W: http://gigaset307x.sourceforge.net/
2475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002476F: Documentation/isdn/README.gigaset
2477F: drivers/isdn/gigaset/
2478F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002479
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002480HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002481P: Frank Seidel
2482M: frank@f-seidel.de
2483L: lm-sensors@lm-sensors.org
2484W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002486F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002487
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002488HYPERVISOR VIRTUAL CONSOLE DRIVER
2489L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002490S: Odd Fixes
2491F: drivers/char/hvc_*
2492
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002493GSPCA FINEPIX SUBDRIVER
2494P: Frank Zago
2495M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002496L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002497T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002499F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002500
2501GSPCA M5602 SUBDRIVER
2502P: Erik Andren
2503M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002504L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002505T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002507F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002508
2509GSPCA PAC207 SONIXB SUBDRIVER
2510P: Hans de Goede
2511M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002512L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002513T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002515F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002516
2517GSPCA T613 SUBDRIVER
2518P: Leandro Costantino
2519M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002520L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002521T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002524
2525GSPCA USB WEBCAM DRIVER
2526P: Jean-Francois Moine
2527M: moinejf@free.fr
2528W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002529L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002530T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002532F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002533
Jean Delvare5b543962005-08-15 19:51:02 +02002534HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002535L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002536W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002538F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002539
Michael Buesch844dd052006-06-26 00:24:59 -07002540HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002541S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002542F: Documentation/hw_random.txt
2543F: drivers/char/hw_random/
2544F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002545
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546HARMONY SOUND DRIVER
2547P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002548M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002549L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002551F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553HAYES ESP SERIAL DRIVER
2554P: Andrew J. Robinson
2555M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556W: http://www.nyx.net/~arobinso
2557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: Documentation/serial/hayes-esp.txt
2559F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002560
2561HEWLETT-PACKARD SMART2 RAID DRIVER
2562P: Chirag Kantharia
2563M: chirag.kantharia@hp.com
2564L: iss_storagedev@hp.com
2565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002566F: Documentation/blockdev/cpqarray.txt
2567F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002568
2569HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2570P: Mike Miller
2571M: mike.miller@hp.com
2572L: iss_storagedev@hp.com
2573S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002574F: Documentation/blockdev/cciss.txt
2575F: drivers/block/cciss*
2576F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578HFS FILESYSTEM
2579P: Roman Zippel
2580M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002582F: Documentation/filesystems/hfs.txt
2583F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585HGA FRAMEBUFFER DRIVER
2586P: Ferenc Bakonyi
2587M: fero@drama.obuda.kando.hu
2588L: linux-nvidia@lists.surfsouth.com
2589W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002591F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002593HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002594P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002595M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002596P: Rafael J. Wysocki
2597M: rjw@sisk.pl
2598L: linux-pm@lists.linux-foundation.org
2599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002600F: arch/x86/power/
2601F: drivers/base/power/
2602F: kernel/power/
2603F: include/linux/suspend.h
2604F: include/linux/freezer.h
2605F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002606F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002607
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002608HID CORE LAYER
2609P: Jiri Kosina
2610M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002611L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002612T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002614F: drivers/hid/
2615F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002616
Ingo Molnar38bed542007-02-22 09:09:34 +01002617HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2618P: Thomas Gleixner
2619M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: Documentation/timers/
2622F: kernel/hrtimer.c
2623F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625HIGH-SPEED SCC DRIVER FOR AX.25
2626P: Klaus Kudielka
2627M: klaus.kudielka@ieee.org
2628L: linux-hams@vger.kernel.org
2629W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: drivers/net/hamradio/dmascc.c
2632F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002634HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2635P: HighPoint Linux Team
2636M: linux@highpoint-tech.com
2637W: http://www.highpoint-tech.com
2638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002639F: Documentation/scsi/hptiop.txt
2640F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642HIPPI
2643P: Jes Sorensen
2644M: jes@trained-monkey.org
2645L: linux-hippi@sunsite.dk
2646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002647F: include/linux/hippidevice.h
2648F: include/linux/if_hippi.h
2649F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
Jouni Malinenff1d2762005-05-12 22:54:16 -04002651HOST AP DRIVER
2652P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002653M: j@w1.fi
2654L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002655L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002656W: http://hostap.epitest.fi/
2657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002659
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002660HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2661P: Carlos Corbacho
2662M: carlos@strangeworlds.co.uk
2663S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002664F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002665
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002666HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2667P: Jaroslav Kysela
2668M: perex@perex.cz
2669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002671
Joe Perches7d2c86b2009-04-07 20:59:01 -07002672HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002673P: Clemens Ladisch
2674M: clemens@ladisch.de
2675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002676F: Documentation/timers/hpet.txt
2677F: drivers/char/hpet.c
2678F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002679
2680HPET: i386
2681P: Venkatesh Pallipadi (Venki)
2682M: venkatesh.pallipadi@intel.com
2683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: arch/x86/kernel/hpet.c
2685F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002686
2687HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002688P: Vojtech Pavlik
2689M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002690S: Maintained
2691
Joe Perches7d2c86b2009-04-07 20:59:01 -07002692HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002693P: Bob Picco
2694M: bob.picco@hp.com
2695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002696F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698HPFS FILESYSTEM
2699P: Mikulas Patocka
2700M: mikulas@artax.karlin.mff.cuni.cz
2701W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002703F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Joe Perches7d2c86b2009-04-07 20:59:01 -07002705HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002706P: Jan Dumon
2707M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002708W: http://www.pharscape.org
2709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002710F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002711
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002712HTCPEN TOUCHSCREEN DRIVER
2713P: Pau Oliva Fora
2714M: pof@eslack.org
2715L: linux-input@vger.kernel.org
2716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002717F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719HUGETLB FILESYSTEM
2720P: William Irwin
2721M: wli@holomorphy.com
2722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002725I2C/SMBUS STUB DRIVER
2726P: Mark M. Hoffman
2727M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002728L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002731
Jean Delvare5b543962005-08-15 19:51:02 +02002732I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002733P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002735P: Ben Dooks (embedded platforms)
2736M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002737L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002738W: http://i2c.wiki.kernel.org/
2739T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002741F: Documentation/i2c/
2742F: drivers/i2c/
2743F: include/linux/i2c.h
2744F: include/linux/i2c-dev.h
2745F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Till Harbaume8c76ee2007-05-01 23:26:35 +02002747I2C-TINY-USB DRIVER
2748P: Till Harbaum
2749M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002750L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002751W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002753F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002756P: H. Peter Anvin
2757M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002759F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762P: H. Peter Anvin
2763M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002764T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765S: Maintained
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767IA64 (Itanium) PLATFORM
2768P: Tony Luck
2769M: tony.luck@intel.com
2770L: linux-ia64@vger.kernel.org
2771W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002772T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002774F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776IBM MCA SCSI SUBSYSTEM DRIVER
2777P: Michael Lang
2778M: langa2@kph.uni-mainz.de
2779W: http://www.uni-mainz.de/~langm000/linux.html
2780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002781F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783IBM Power Linux RAID adapter
2784P: Brian King
2785M: brking@us.ibm.com
2786S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002787F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789IBM ServeRAID RAID DRIVER
2790P: Jack Hammer
2791P: Dave Jeffery
2792M: ipslinux@adaptec.com
2793W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002794S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002795F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002797IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002799M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002801T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: Documentation/ide/
2804F: drivers/ide/
2805F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002807IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002808P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002809M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002810L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002812F: Documentation/cdrom/ide-cd
2813F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Andy Henroid27471fd2008-10-09 11:45:22 -07002815IDLE-I7300
2816P: Andy Henroid
2817M: andrew.d.henroid@intel.com
2818L: linux-pm@lists.linux-foundation.org
2819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002821
Joe Perches7d2c86b2009-04-07 20:59:01 -07002822IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002824M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002825P: Stefan Richter
2826M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827L: linux1394-devel@lists.sourceforge.net
2828W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002829T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002831F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Joe Perches7d2c86b2009-04-07 20:59:01 -07002833IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834P: Dan Dennedy
2835M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002836P: Stefan Richter
2837M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002841
Sergey Lapin02cf2282009-06-08 12:18:50 +00002842IEEE 802.15.4 SUBSYSTEM
2843P: Dmitry Eremin-Solenikov
2844M: dbaryshkov@gmail.com
2845P: Sergey Lapin
2846M: slapin@ossfans.org
2847L: linux-zigbee-devel@lists.sourceforge.net
2848W: http://apps.sourceforge.net/trac/linux-zigbee
2849T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git
2850S: Maintained
2851F: net/ieee802154/
2852F: drivers/ieee801254/
2853
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002854INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2855P: Mimi Zohar
2856M: zohar@us.ibm.com
2857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002858F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002861L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002862S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002863F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865INFINIBAND SUBSYSTEM
2866P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002867M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002869M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002871M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002872L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002874T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002876F: Documentation/infiniband/
2877F: drivers/infiniband/
2878F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Robert Lovec9f04f52005-07-15 12:21:07 -04002880INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002881P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002882M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002883P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002884M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002885P: Eric Paris
2886M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002888F: Documentation/filesystems/inotify.txt
2889F: fs/notify/inotify/
2890F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002891
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002892INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2893P: Dmitry Torokhov
2894M: dmitry.torokhov@gmail.com
2895M: dtor@mail.ru
2896L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002897T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002899F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002900
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002901INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002902P: Sylvain Meyer
2903M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002904L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002906F: Documentation/fb/intelfb.txt
2907F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002910P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002911M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002912L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302916INTEL MENLOW THERMAL DRIVER
2917P: Sujith Thomas
2918M: sujith.thomas@intel.com
2919L: linux-acpi@vger.kernel.org
2920W: http://www.lesswatts.org/projects/acpi/
2921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924INTEL IA32 MICROCODE UPDATE SUPPORT
2925P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002926M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: arch/x86/kernel/microcode_core.c
2929F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002931INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002932P: Maciej Sosnowski
2933M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002935F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002936
David Woodhouse6c8909b2008-10-18 16:12:17 +01002937INTEL IOMMU (VT-d)
2938P: David Woodhouse
2939M: dwmw2@infradead.org
2940L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002941T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002943F: drivers/pci/intel-iommu.c
2944F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002945
Dan Williamsb3e5f262007-08-07 10:26:35 -07002946INTEL IOP-ADMA DMA DRIVER
2947P: Dan Williams
2948M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002950F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002951
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002952INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2953P: Krzysztof Halasa
2954M: khc@pm.waw.pl
2955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002956F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2957F: arch/arm/mach-ixp4xx/include/mach/npe.h
2958F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2959F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2960F: drivers/net/arm/ixp4xx_eth.c
2961F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002962
Michael Buesch844dd052006-06-26 00:24:59 -07002963INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2964P: Deepak Saxena
2965M: dsaxena@plexity.net
2966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002968
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002969INTEL IXP2000 ETHERNET DRIVER
2970P: Lennert Buytenhek
2971M: kernel@wantstofly.org
2972L: netdev@vger.kernel.org
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002975
Auke Kokd94e6fe2008-03-03 14:37:47 -08002976INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002977P: Jeff Kirsher
2978M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002979P: Jesse Brandeburg
2980M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002981P: Bruce Allan
2982M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002983P: PJ Waskiewicz
2984M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002985P: John Ronciak
2986M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002987L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002988W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002990F: drivers/net/e100.c
2991F: drivers/net/e1000/
2992F: drivers/net/e1000e/
2993F: drivers/net/igb/
2994F: drivers/net/ixgb/
2995F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
James Ketrenos826d2ab2005-11-07 18:56:59 -06002997INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002998P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002999M: yi.zhu@intel.com
3000P: James Ketrenos
3001M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003002P: Reinette Chatre
3003M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003004L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003005L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003006W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003007W: http://ipw2100.sourceforge.net
3008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: Documentation/networking/README.ipw2100
3010F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003011
3012INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003013P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003014M: yi.zhu@intel.com
3015P: James Ketrenos
3016M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003017P: Reinette Chatre
3018M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003019L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003020L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003021W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003022W: http://ipw2200.sourceforge.net
3023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003024F: Documentation/networking/README.ipw2200
3025F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003026
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003027INTEL WIRELESS WIMAX CONNECTION 2400
3028P: Inaky Perez-Gonzalez
3029M: inaky.perez-gonzalez@intel.com
3030M: linux-wimax@intel.com
3031L: wimax@linuxwimax.org
3032S: Supported
3033W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003034F: Documentation/wimax/README.i2400m
3035F: drivers/net/wimax/i2400m/
3036F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003037
Zhu Yib481de92007-09-25 17:54:57 -07003038INTEL WIRELESS WIFI LINK (iwlwifi)
3039P: Zhu Yi
3040M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003041P: Reinette Chatre
3042M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003043L: linux-wireless@vger.kernel.org
3044L: ipw3945-devel@lists.sourceforge.net
3045W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003046T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003048F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003049
Ralf Baechlecb109a02007-08-30 23:56:30 -07003050IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051P: Ralf Baechle
3052M: ralf@linux-mips.org
3053L: linux-mips@linux-mips.org
3054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Ralf Baechlecb109a02007-08-30 23:56:30 -07003057IOC3 SERIAL DRIVER
3058P: Pat Gefre
3059M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003060L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003062F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003063
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003064IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065P: Juanjo Ciarlante
3066M: jjciarla@raiz.uncu.edu.ar
3067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003068F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Francois Romieu1202d6f2007-09-17 17:13:55 -07003070IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3071P: Francois Romieu
3072M: romieu@fr.zoreil.com
3073P: Sorbica Shieh
3074M: sorbica@icplus.com.tw
3075P: Jesse Huang
3076M: jesse@icplus.com.tw
3077L: netdev@vger.kernel.org
3078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003079F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003080
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003081IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003082P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003083M: infinipath@qlogic.com
3084L: general@lists.openfabrics.org
3085T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003087F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003088
Corey Minyard4409ebe2006-04-20 02:43:12 -07003089IPMI SUBSYSTEM
3090P: Corey Minyard
3091M: minyard@acm.org
3092L: openipmi-developer@lists.sourceforge.net
3093W: http://openipmi.sourceforge.net/
3094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003095F: Documentation/IPMI.txt
3096F: drivers/char/ipmi/
3097F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003098
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003099IPS SCSI RAID DRIVER
3100P: Adaptec OEM Raid Solutions
3101M: aacraid@adaptec.com
3102L: linux-scsi@vger.kernel.org
3103W: http://www.adaptec.com/
3104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003106
3107IPVS
3108P: Wensong Zhang
3109M: wensong@linux-vs.org
3110P: Simon Horman
3111M: horms@verge.net.au
3112P: Julian Anastasov
3113M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003114L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003115L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003117F: Documentation/networking/ipvs-sysctl.txt
3118F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Randy Dunlape7839f22008-10-12 16:11:45 -07003120IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003121P: Jiri Kosina
3122M: jkosina@suse.cz
3123P: David Sterba
3124M: dsterba@suse.cz
3125S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003126T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003127F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003128
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003129IPX NETWORK LAYER
3130P: Arnaldo Carvalho de Melo
3131M: acme@ghostprotocols.net
3132L: netdev@vger.kernel.org
3133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003134F: include/linux/ipx.h
3135F: include/net/ipx.h
3136F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003139P: Samuel Ortiz
3140M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003141L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003143S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003144T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003145F: Documentation/networking/irda.txt
3146F: drivers/net/irda/
3147F: include/net/irda/
3148F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003150ISAPNP
3151P: Jaroslav Kysela
3152M: perex@perex.cz
3153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003154F: Documentation/isapnp.txt
3155F: drivers/pnp/isapnp/
3156F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003157
Mike Christie14816b12007-11-28 16:22:06 -08003158ISCSI
3159P: Mike Christie
3160M: michaelc@cs.wisc.edu
3161L: open-iscsi@googlegroups.com
3162W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003163T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: drivers/scsi/*iscsi*
3166F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003167
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168ISDN SUBSYSTEM
3169P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003170M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003171L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003173T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003175F: Documentation/isdn/
3176F: drivers/isdn/
3177F: include/linux/isdn.h
3178F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180ISDN SUBSYSTEM (Eicon active card driver)
3181P: Armin Schindler
3182M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003183L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184W: http://www.melware.de
3185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003186F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
Hans Verkuil91821ff2007-12-02 09:35:33 -03003188IVTV VIDEO4LINUX DRIVER
3189P: Hans Verkuil
3190M: hverkuil@xs4all.nl
3191L: ivtv-devel@ivtvdriver.org
3192L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003193L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003194T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003195W: http://www.ivtvdriver.org
3196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003197F: Documentation/video4linux/*.ivtv
3198F: drivers/media/video/ivtv/
3199F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003200
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003201JFS FILESYSTEM
3202P: Dave Kleikamp
3203M: shaggy@austin.ibm.com
3204L: jfs-discussion@lists.sourceforge.net
3205W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003206T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003208F: Documentation/filesystems/jfs.txt
3209F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003210
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003211JME NETWORK DRIVER
3212P: Guo-Fu Tseng
3213M: cooldavid@cooldavid.org
3214L: netdev@vger.kernel.org
3215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003216F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003217
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3219P: David Woodhouse
3220M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003221L: linux-mtd@lists.infradead.org
3222W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: fs/jffs2/
3225F: include/linux/jffs2.h
3226F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Josh Triplettde456d32006-07-30 03:04:00 -07003228JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003229P: Stephen Tweedie
3230M: sct@redhat.com
3231P: Andrew Morton
3232M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003233L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003235F: fs/jbd*/
3236F: include/linux/ext*jbd*.h
3237F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003238
Rudolf Marek4660cb32006-10-08 22:01:26 +02003239K8TEMP HARDWARE MONITORING DRIVER
3240P: Rudolf Marek
3241M: r.marek@assembler.cz
3242L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003244F: Documentation/hwmon/k8temp
3245F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247KCONFIG
3248P: Roman Zippel
3249M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003250L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: Documentation/kbuild/kconfig-language.txt
3253F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Vivek Goyalea6c2082006-05-20 14:59:55 -07003255KDUMP
3256P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003257M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003258P: Haren Myneni
3259M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003260L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003261W: http://lse.sourceforge.net/kdump/
3262S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003263F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265KERNEL AUTOMOUNTER (AUTOFS)
3266P: H. Peter Anvin
3267M: hpa@zytor.com
3268L: autofs@linux.kernel.org
3269S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003270F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
3272KERNEL AUTOMOUNTER v4 (AUTOFS4)
3273P: Ian Kent
3274M: raven@themaw.net
3275L: autofs@linux.kernel.org
3276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003277F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Joe Perches7d2c86b2009-04-07 20:59:01 -07003279KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280P: Sam Ravnborg
3281M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003282T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3283T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003284L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003286F: Documentation/kbuild/
3287F: Makefile
3288F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
3290KERNEL JANITORS
3291P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003292L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294S: Maintained
3295
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003296KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003297P: J. Bruce Fields
3298M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003300M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003301L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003304F: fs/nfsd/
3305F: include/linux/nfsd/
3306F: fs/lockd/
3307F: fs/nfs_common/
3308F: net/sunrpc/
3309F: include/linux/lockd/
3310F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Avi Kivity426d62e2006-12-13 00:34:03 -08003312KERNEL VIRTUAL MACHINE (KVM)
3313P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003314M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003315L: kvm@vger.kernel.org
3316W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003318F: Documentation/*/kvm.txt
3319F: arch/*/kvm/
3320F: arch/*/include/asm/kvm*
3321F: include/linux/kvm*
3322F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003323
Joerg Roedelad8003d2008-09-10 20:01:07 +02003324KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3325P: Joerg Roedel
3326M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003327L: kvm@vger.kernel.org
3328W: http://kvm.qumranet.com
3329S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003330F: arch/x86/include/asm/svm.h
3331F: arch/x86/kvm/kvm_svm.h
3332F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003333
Hollis Blanchard513014b2008-04-16 23:28:08 -05003334KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3335P: Hollis Blanchard
3336M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003337L: kvm-ppc@vger.kernel.org
3338W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003340F: arch/powerpc/include/asm/kvm*
3341F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003342
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003343KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003344P: Xiantao Zhang
3345M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003346L: kvm-ia64@vger.kernel.org
3347W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003349F: Documentation/ia64/kvm.txt
3350F: arch/ia64/include/asm/kvm*
3351F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003352
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003353KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3354P: Carsten Otte
3355M: cotte@de.ibm.com
3356P: Christian Borntraeger
3357M: borntraeger@de.ibm.com
3358M: linux390@de.ibm.com
3359L: linux-s390@vger.kernel.org
3360W: http://www.ibm.com/developerworks/linux/linux390/
3361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003362F: Documentation/s390/kvm.txt
3363F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003364F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003365
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003366KEXEC
3367P: Eric Biederman
3368M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003369W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003370L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003372F: include/linux/kexec.h
3373F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003374
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003375KGDB
3376P: Jason Wessel
3377M: jason.wessel@windriver.com
3378L: kgdb-bugreport@lists.sourceforge.net
3379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003380F: Documentation/DocBook/kgdb.tmpl
3381F: drivers/misc/kgdbts.c
3382F: drivers/serial/kgdboc.c
3383F: include/linux/kgdb.h
3384F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003385
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003386KMEMLEAK
3387P: Catalin Marinas
3388M: catalin.marinas@arm.com
3389L: linux-kernel@vger.kernel.org
3390S: Maintained
3391F: Documentation/kmemleak.txt
3392F: include/linux/kmemleak.h
3393F: mm/kmemleak.c
3394F: mm/kmemleak-test.c
3395
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003396KMEMTRACE
3397P: Eduard - Gabriel Munteanu
3398M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003399S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003400F: Documentation/trace/kmemtrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07003401F: include/trace/kmemtrace.h
3402F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003403
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003404KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003405P: Ananth N Mavinakayanahalli
3406M: ananth@in.ibm.com
3407P: Anil S Keshavamurthy
3408M: anil.s.keshavamurthy@intel.com
3409P: David S. Miller
3410M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003411P: Masami Hiramatsu
3412M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003414F: Documentation/kprobes.txt
3415F: include/linux/kprobes.h
3416F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003417
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003418KS0108 LCD CONTROLLER DRIVER
3419P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003420M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003421W: http://miguelojeda.es/auxdisplay.htm
3422W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: Documentation/auxdisplay/ks0108
3425F: drivers/auxdisplay/ks0108.c
3426F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003430S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003431F: Documentation/networking/lapb-module.txt
3432F: include/*/lapb.h
3433F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435LASI 53c700 driver for PARISC
3436P: James E.J. Bottomley
3437M: James.Bottomley@HansenPartnership.com
3438L: linux-scsi@vger.kernel.org
3439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: Documentation/scsi/53c700.txt
3441F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Richard Purdie263de9b2006-05-15 09:44:16 -07003443LED SUBSYSTEM
3444P: Richard Purdie
3445M: rpurdie@rpsys.net
3446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003447F: drivers/leds/
3448F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003449
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450LEGO USB Tower driver
3451P: Juergen Stuber
3452M: starblue@users.sourceforge.net
3453L: legousb-devel@lists.sourceforge.net
3454W: http://legousb.sourceforge.net/
3455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003456F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Rusty Russell568a17f2007-10-25 14:12:24 +10003458LGUEST
3459P: Rusty Russell
3460M: rusty@rustcorp.com.au
3461L: lguest@ozlabs.org
3462W: http://lguest.ozlabs.org/
3463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003464F: Documentation/lguest/
3465F: arch/x86/lguest/
3466F: drivers/lguest/
3467F: include/linux/lguest*.h
3468F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470LINUX FOR IBM pSERIES (RS/6000)
3471P: Paul Mackerras
3472M: paulus@au.ibm.com
3473W: http://www.ibm.com/linux/ltc/projects/ppc
3474S: Supported
3475
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003476LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003477P: Benjamin Herrenschmidt
3478M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003479P: Paul Mackerras
3480M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481W: http://www.penguinppc.org/
3482L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003483T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484S: Supported
3485
3486LINUX FOR POWER MACINTOSH
3487P: Benjamin Herrenschmidt
3488M: benh@kernel.crashing.org
3489W: http://www.penguinppc.org/
3490L: linuxppc-dev@ozlabs.org
3491S: Maintained
3492
Grant Likely77a76362008-07-12 12:11:43 -06003493LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003494P: Grant Likely
3495M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003497T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498S: Maintained
3499
3500LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003501P: Josh Boyer
3502M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503P: Matt Porter
3504M: mporter@kernel.crashing.org
3505W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003506L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003507T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508S: Maintained
3509
Grant Likely260c02a2007-10-02 12:15:34 +10003510LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3511P: Grant Likely
3512M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003513W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003514L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003515T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516S: Maintained
3517
Tom Rinie93adf12005-07-26 12:49:53 -07003518LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003519P: Vitaly Bordug
3520M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003521P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003522M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003523W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003524L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003525S: Maintained
3526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003528P: Kumar Gala
3529M: galak@kernel.crashing.org
3530W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003531L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003532S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
Olof Johanssonab06ff32006-09-06 14:44:54 -05003534LINUX FOR POWERPC PA SEMI PWRFICIENT
3535P: Olof Johansson
3536M: olof@lixom.net
3537W: http://www.pasemi.com/
3538L: linuxppc-dev@ozlabs.org
3539S: Supported
3540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541LINUX SECURITY MODULE (LSM) FRAMEWORK
3542P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003543M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003544L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003545T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546S: Supported
3547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003548LLC (802.2)
3549P: Arnaldo Carvalho de Melo
3550M: acme@ghostprotocols.net
3551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003552F: include/linux/llc.h
3553F: include/net/llc*
3554F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003555
Pavel Machek455fbdd2008-11-12 13:27:02 -08003556LIS3LV02D ACCELEROMETER DRIVER
3557P: Eric Piel
3558M: eric.piel@tremplin-utc.net
3559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003560F: Documentation/hwmon/lis3lv02d
3561F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563LM83 HARDWARE MONITOR DRIVER
3564P: Jean Delvare
3565M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003566L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: Documentation/hwmon/lm83
3569F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
3571LM90 HARDWARE MONITOR DRIVER
3572P: Jean Delvare
3573M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003574L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003576F: Documentation/hwmon/lm90
3577F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003579LOCKDEP AND LOCKSTAT
3580P: Peter Zijlstra
3581M: peterz@infradead.org
3582P: Ingo Molnar
3583M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003584T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003586F: Documentation/lockdep*.txt
3587F: Documentation/lockstat.txt
3588F: include/linux/lockdep.h
3589F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003590
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003591LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592P: Richard Russon (FlatCap)
3593M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003594L: linux-ntfs-dev@lists.sourceforge.net
3595W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003597F: Documentation/ldm.txt
3598F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003600LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3601P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003602M: Eric.Moore@lsi.com
3603M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003604L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003605L: linux-scsi@vger.kernel.org
3606W: http://www.lsilogic.com/support
3607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003608F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003609
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3611P: Matthew Wilcox
3612M: matthew@wil.cx
3613L: linux-scsi@vger.kernel.org
3614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003615F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616
Mike Frysinger81365c32008-10-29 14:01:12 -07003617LTP (Linux Test Project)
3618P: Subrata Modak
3619M: subrata@linux.vnet.ibm.com
3620P: Mike Frysinger
3621M: vapier@gentoo.org
3622L: ltp-list@lists.sourceforge.net (subscribers-only)
3623W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003624T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003625S: Maintained
3626
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003627M32R ARCHITECTURE
3628P: Hirokazu Takata
3629M: takata@linux-m32r.org
3630L: linux-m32r@ml.linux-m32r.org
3631L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3632W: http://www.linux-m32r.org/
3633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636M68K ARCHITECTURE
3637P: Geert Uytterhoeven
3638M: geert@linux-m68k.org
3639P: Roman Zippel
3640M: zippel@linux-m68k.org
3641L: linux-m68k@lists.linux-m68k.org
3642W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003643T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003646F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647
3648M68K ON APPLE MACINTOSH
3649P: Joshua Thompson
3650M: funaho@jurai.org
3651W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003652L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003654F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
3656M68K ON HP9000/300
3657P: Philip Blundell
3658M: philb@gnu.org
3659W: http://www.tazenda.demon.co.uk/phil/linux-hp
3660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Jiri Benc64a327a2007-05-05 11:47:08 -07003663MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003664P: Johannes Berg
3665M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003666L: linux-wireless@vger.kernel.org
3667W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003668T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003670F: Documentation/networking/mac80211-injection.txt
3671F: include/net/mac80211.h
3672F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003673
Stefano Brivio1036d862007-12-23 04:46:27 +01003674MAC80211 PID RATE CONTROL
3675P: Stefano Brivio
3676M: stefano.brivio@polimi.it
3677P: Mattias Nissler
3678M: mattias.nissler@gmx.de
3679L: linux-wireless@vger.kernel.org
3680W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003681T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003683F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003684
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003685MACVLAN DRIVER
3686P: Patrick McHardy
3687M: kaber@trash.net
3688L: netdev@vger.kernel.org
3689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003690F: drivers/net/macvlan.c
3691F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003692
Michael Kerriskfaf16682005-07-31 22:34:47 -07003693MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003694P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003695M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003696W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003697L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003698S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003699
Stefano Brivio74cda162007-11-19 20:27:46 +01003700MARVELL LIBERTAS WIRELESS DRIVER
3701P: Dan Williams
3702M: dcbw@redhat.com
3703L: libertas-dev@lists.infradead.org
3704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003706
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003707MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003708P: Lennert Buytenhek
3709M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003710L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003712F: drivers/net/mv643xx_eth.*
3713F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Pierre Ossman2a695672009-03-16 19:52:26 +01003715MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3716P: Nicolas Pitre
3717M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003718S: Maintained
3719
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003720MARVELL YUKON / SYSKONNECT DRIVER
3721P: Mirko Lindner
3722M: mlindner@syskonnect.de
3723P: Ralph Roesler
3724M: rroesler@syskonnect.de
3725W: http://www.syskonnect.com
3726S: Supported
3727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728MATROX FRAMEBUFFER DRIVER
3729P: Petr Vandrovec
3730M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003731L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003733F: drivers/video/matrox/matroxfb_*
3734F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003736MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3737P: Hans J. Koch
3738M: hjk@linutronix.de
3739L: lm-sensors@lm-sensors.org
3740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003741F: Documentation/hwmon/max6650
3742F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003743
Joe Perches127c49a2009-04-08 08:34:04 -07003744MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3745P: Mauro Carvalho Chehab
3746M: mchehab@infradead.org
3747P: LinuxTV.org Project
3748L: linux-media@vger.kernel.org
3749W: http://linuxtv.org
3750T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3751S: Maintained
3752F: Documentation/dvb/
3753F: Documentation/video4linux/
3754F: drivers/media/
3755F: include/media/
3756F: include/linux/dvb/
3757F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003758
3759MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003760P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003761M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003762L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003763W: http://megaraid.lsilogic.com
3764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003765F: Documentation/scsi/megaraid.txt
3766F: drivers/scsi/megaraid.*
3767F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769MEMORY MANAGEMENT
3770L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771W: http://www.linux-mm.org
3772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003773F: include/linux/mm.h
3774F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003775
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003776MEMORY RESOURCE CONTROLLER
3777P: Balbir Singh
3778M: balbir@linux.vnet.ibm.com
3779P: Pavel Emelyanov
3780M: xemul@openvz.org
3781P: KAMEZAWA Hiroyuki
3782M: kamezawa.hiroyu@jp.fujitsu.com
3783L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003785F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003786
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787MEMORY TECHNOLOGY DEVICES (MTD)
3788P: David Woodhouse
3789M: dwmw2@infradead.org
3790W: http://www.linux-mtd.infradead.org/
3791L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003792T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003794F: drivers/mtd/
3795F: include/linux/mtd/
3796F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Michal Simekc6375b02009-03-27 14:25:52 +01003798MICROBLAZE ARCHITECTURE
3799P: Michal Simek
3800M: monstr@monstr.eu
3801L: microblaze-uclinux@itee.uq.edu.au
3802W: http://www.monstr.eu/fdt/
3803T: git git://git.monstr.eu/linux-2.6-microblaze.git
3804S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003805F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
3807MICROTEK X6 SCANNER
3808P: Oliver Neukum
3809M: oliver@neukum.name
3810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003811F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
3813MIPS
3814P: Ralf Baechle
3815M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003816W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003818T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003820F: Documentation/mips/
3821F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
3823MISCELLANEOUS MCA-SUPPORT
3824P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003825M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: Documentation/ia64/mca.txt
3828F: Documentation/mca.txt
3829F: drivers/mca/
3830F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831
3832MODULE SUPPORT
3833P: Rusty Russell
3834M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: include/linux/module.h
3837F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3840P: Stelian Pop
3841M: stelian@popies.net
3842W: http://popies.net/meye/
3843S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003844F: Documentation/video4linux/meye.txt
3845F: drivers/media/video/meye.*
3846F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Pavel Pisac58ff042007-05-16 01:10:41 +02003848MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3849P: Pavel Pisa
3850M: ppisa@pikron.com
3851L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003853F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003854
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855MOUSE AND MISC DEVICES [GENERAL]
3856P: Alessandro Rubini
3857M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003859F: drivers/input/mouse/
3860F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Jiri Slabyb9705b62008-04-30 00:53:48 -07003862MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003863P: Jiri Slaby
3864M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: Documentation/serial/moxa-smartio
3867F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003868
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003869MSI LAPTOP SUPPORT
3870P: Lennart Poettering
3871M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003872W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003873W: http://0pointer.de/lennart/tchibo.html
3874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003875F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003876
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003877MULTIFUNCTION DEVICES (MFD)
3878P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003879M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003880T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003882F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003883
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003884MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003885P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003886M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003888F: drivers/mmc/
3889F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003890
David Brownell15a05802007-08-08 09:12:54 -07003891MULTIMEDIA CARD (MMC) ETC. OVER SPI
3892P: David Brownell
3893M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003894S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003895F: drivers/mmc/host/mmc_spi.c
3896F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898MULTISOUND SOUND DRIVER
3899P: Andrew Veliath
3900M: andrewtv@usa.net
3901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003902F: Documentation/sound/oss/MultiSound
3903F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
Jiri Slabyd7354102006-12-08 02:38:35 -08003905MULTITECH MULTIPORT CARD (ISICOM)
3906P: Jiri Slaby
3907M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: drivers/char/isicom.c
3910F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003911
Felipe Balbi550a7372008-07-24 12:27:36 +03003912MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003913P: Felipe Balbi
3914M: felipe.balbi@nokia.com
3915L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003916T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003919
Brice Goglin2d3cf582008-05-17 12:45:36 +02003920MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3921P: Andrew Gallatin
3922M: gallatin@myri.com
3923P: Brice Goglin
3924M: brice@myri.com
3925L: netdev@vger.kernel.org
3926W: http://www.myri.com/scs/download-Myri10GE.html
3927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003931P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932M: thockin@hockin.org
3933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
3936NCP FILESYSTEM
3937P: Petr Vandrovec
3938M: vandrove@vc.cvut.cz
3939L: linware@sh.cvut.cz
3940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003941F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
3943NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3944P: James E.J. Bottomley
3945M: James.Bottomley@HansenPartnership.com
3946L: linux-scsi@vger.kernel.org
3947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003948F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003950NETEFFECT IWARP RNIC DRIVER (IW_NES)
3951P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003952M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003953P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003954M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003955L: general@lists.openfabrics.org
3956W: http://www.neteffect.com
3957S: Supported
3958F: drivers/infiniband/hw/nes/
3959
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003960NETEM NETWORK EMULATOR
3961P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003962M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003963L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003966
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003967NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003968P: Ramkrishna Vepa
3969M: ram.vepa@neterion.com
3970P: Rastapur Santosh
3971M: santosh.rastapur@neterion.com
3972P: Sivakumar Subramani
3973M: sivakumar.subramani@neterion.com
3974P: Sreenivasa Honnur
3975M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003976P: Anil Murthy
3977M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003978L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003979W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3980W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003982F: Documentation/networking/s2io.txt
3983F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003984
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985NETFILTER/IPTABLES/IPCHAINS
3986P: Rusty Russell
3987P: Marc Boucher
3988P: James Morris
3989P: Harald Welte
3990P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07003991P: Patrick McHardy
3992M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07003993L: netfilter-devel@vger.kernel.org
3994L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003995L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996W: http://www.netfilter.org/
3997W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003999F: include/linux/netfilter*
4000F: include/linux/netfilter/
4001F: include/net/netfilter/
4002F: net/*/netfilter.c
4003F: net/*/netfilter/
4004F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
Paul Moore4cc67732006-09-25 15:57:13 -07004006NETLABEL
4007P: Paul Moore
4008M: paul.moore@hp.com
4009W: http://netlabel.sf.net
4010L: netdev@vger.kernel.org
4011S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004012F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004013F: include/net/netlabel.h
4014F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004015
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016NETROM NETWORK LAYER
4017P: Ralf Baechle
4018M: ralf@linux-mips.org
4019L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004020W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004022F: include/linux/netrom.h
4023F: include/net/netrom.h
4024F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004026NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027P: Paul Clements
4028M: Paul.Clements@steeleye.com
4029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004030F: Documentation/blockdev/nbd.txt
4031F: drivers/block/nbd.c
4032F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
4034NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004035P: David S. Miller
4036M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004037L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004038W: http://www.linuxfoundation.org/en/Net
4039T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004041F: net/
4042F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
4044NETWORKING [IPv4/IPv6]
4045P: David S. Miller
4046M: davem@davemloft.net
4047P: Alexey Kuznetsov
4048M: kuznet@ms2.inr.ac.ru
4049P: Pekka Savola (ipv6)
4050M: pekkas@netcore.fi
4051P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004052M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053P: Hideaki YOSHIFUJI
4054M: yoshfuji@linux-ipv6.org
4055P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004056M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004057L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004058T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004060F: net/ipv4/
4061F: net/ipv6/
4062F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
James Morris10e2ff12007-08-25 14:41:28 -07004064NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4065P: Paul Moore
4066M: paul.moore@hp.com
4067L: netdev@vger.kernel.org
4068S: Maintained
4069
John W. Linville29f8f632006-01-18 14:52:48 -08004070NETWORKING [WIRELESS]
4071P: John W. Linville
4072M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004073L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004074T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004076F: net/wireless/
4077F: include/net/ieee80211*
4078F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004079
Joe Perches788873a2009-04-16 09:38:45 +00004080NETWORKING DRIVERS
4081L: netdev@vger.kernel.org
4082W: http://www.linuxfoundation.org/en/Net
4083T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4084S: Odd Fixes
4085F: drivers/net/
4086
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004087NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004088P: Dhananjay Phadke
4089M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004090L: netdev@vger.kernel.org
4091W: http://www.netxen.com
4092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004093F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004094
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004095NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004097M: Trond.Myklebust@netapp.com
4098L: linux-nfs@vger.kernel.org
4099W: http://client.linux-nfs.org
4100T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004102F: fs/lockd/
4103F: fs/nfs/
4104F: fs/nfs_common/
4105F: net/sunrpc/
4106F: include/linux/lockd/
4107F: include/linux/nfs*
4108F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004111P: Jan-Pascal van Best
4112M: janpascal@vanbest.org
4113P: Andreas Mohr
4114M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004115L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004119NILFS2 FILESYSTEM
4120P: KONISHI Ryusuke
4121M: konishi.ryusuke@lab.ntt.co.jp
4122L: users@nilfs.org
4123W: http://www.nilfs.org/en/
4124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004125F: Documentation/filesystems/nilfs2.txt
4126F: fs/nilfs2/
4127F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004128
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4130P: YOKOTA Hiroshi
4131M: yokota@netlab.is.tsukuba.ac.jp
4132W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004134F: Documentation/scsi/NinjaSCSI.txt
4135F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
4137NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4138P: GOTO Masanori
4139M: gotom@debian.or.jp
4140P: YOKOTA Hiroshi
4141M: yokota@netlab.is.tsukuba.ac.jp
4142W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: Documentation/scsi/NinjaSCSI.txt
4145F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147NTFS FILESYSTEM
4148P: Anton Altaparmakov
4149M: aia21@cantab.net
4150L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004151W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004152T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004154F: Documentation/filesystems/ntfs.txt
4155F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004157NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004158P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004159M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004160L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004162F: drivers/video/riva/
4163F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Tony Lindgrenf5525782009-05-28 13:23:53 -07004165OMAP SUPPORT
4166P: Tony Lindgren <tony@atomide.com>
4167M: tony@atomide.com
4168L: linux-omap@vger.kernel.org
4169W: http://www.muru.com/linux/omap/
4170W: http://linux.omap.com/
4171T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4172S: Maintained
4173F: arch/arm/*omap*
4174
4175OMAP CLOCK FRAMEWORK SUPPORT
4176P: Paul Walmsley
4177M: paul@pwsan.com
4178L: linux-omap@vger.kernel.org
4179S: Maintained
4180F: arch/arm/*omap*/*clock*
4181
4182OMAP POWER MANAGEMENT SUPPORT
4183P: Kevin Hilman
4184M: khilman@deeprootsystems.com
4185L: linux-omap@vger.kernel.org
4186S: Maintained
4187F: arch/arm/*omap*/*pm*
4188
4189OMAP AUDIO SUPPORT
4190P: Jarkko Nikula
4191M: jhnikula@gmail.com
4192L: alsa-devel@alsa-project.org (subscribers-only)
4193L: linux-omap@vger.kernel.org
4194S: Maintained
4195F: sound/soc/omap/
4196
4197OMAP FRAMEBUFFER SUPPORT
4198P: Imre Deak
4199M: imre.deak@nokia.com
4200L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4201L: linux-omap@vger.kernel.org
4202S: Maintained
4203F: drivers/video/omap/
4204
4205OMAP MMC SUPPORT
4206P: Jarkko Lavinen
4207M: jarkko.lavinen@nokia.com
4208L: linux-kernel@vger.kernel.org
4209L: linux-omap@vger.kernel.org
4210S: Maintained
4211F: drivers/mmc/host/*omap*
4212
4213OMAP RANDOM NUMBER GENERATOR SUPPORT
4214P: Deepak Saxena
4215M: dsaxena@plexity.net
4216S: Maintained
4217F: drivers/char/hw_random/omap-rng.c
4218
4219OMAP USB SUPPORT
4220P: Felipe Balbi
4221M: felipe.balbi@nokia.com
4222P: David Brownell
4223M: dbrownell@users.sourceforge.net
4224L: linux-usb@vger.kernel.org
4225L: linux-omap@vger.kernel.org
4226S: Maintained
4227
Bob Copeland0ad122d2008-07-25 19:45:18 -07004228OMFS FILESYSTEM
4229P: Bob Copeland
4230M: me@bobcopeland.com
4231L: linux-karma-devel@lists.sourceforge.net
4232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004233F: Documentation/filesystems/omfs.txt
4234F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004235
Harald Weltec1986ee2005-11-13 16:06:29 -08004236OMNIKEY CARDMAN 4000 DRIVER
4237P: Harald Welte
4238M: laforge@gnumonks.org
4239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: drivers/char/pcmcia/cm4000_cs.c
4241F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004242
Harald Welte77c44ab2005-11-13 16:06:26 -08004243OMNIKEY CARDMAN 4040 DRIVER
4244P: Harald Welte
4245M: laforge@gnumonks.org
4246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004248
Jonathan Corbet77d51402007-03-22 19:44:17 -03004249OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004250P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004251M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004252L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004255F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004256
Thomas Gleixner431bca72007-05-02 09:31:35 +02004257ONENAND FLASH DRIVER
4258P: Kyungmin Park
4259M: kyungmin.park@samsung.com
4260L: linux-mtd@lists.infradead.org
4261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004262F: drivers/mtd/onenand/
4263F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265ONSTREAM SCSI TAPE DRIVER
4266P: Willem Riede
4267M: osst@riede.org
4268L: osst-users@lists.sourceforge.net
4269L: linux-scsi@vger.kernel.org
4270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004271F: drivers/scsi/osst*
4272F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004274OPENCORES I2C BUS DRIVER
4275P: Peter Korsgaard
4276M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004277L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: Documentation/i2c/busses/i2c-ocores
4280F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004281
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004283P: Robert Richter
4284M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285L: oprofile-list@lists.sf.net
4286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: arch/*/oprofile/
4288F: drivers/oprofile/
4289F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004291ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4292P: Mark Fasheh
4293M: mfasheh@suse.com
4294P: Joel Becker
4295M: joel.becker@oracle.com
4296L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4297W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004298T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004300F: Documentation/filesystems/ocfs2.txt
4301F: Documentation/filesystems/dlmfs.txt
4302F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004303
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304ORINOCO DRIVER
4305P: Pavel Roskin
4306M: proski@gnu.org
4307P: David Gibson
4308M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004309L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004310L: orinoco-users@lists.sourceforge.net
4311L: orinoco-devel@lists.sourceforge.net
4312W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004314F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
Boaz Harrosh68274792009-01-25 17:24:14 +02004316OSD LIBRARY
4317P: Boaz Harrosh
4318M: bharrosh@panasas.com
4319P: Benny Halevy
4320M: bhalevy@panasas.com
4321L: osd-dev@open-osd.org
4322W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004323T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004324S: Maintained
4325
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326P54 WIRELESS DRIVER
4327P: Michael Wu
4328M: flamingice@sourmilk.net
4329L: linux-wireless@vger.kernel.org
4330W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004333F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004334
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004335PA SEMI ETHERNET DRIVER
4336P: Olof Johansson
4337M: olof@lixom.net
4338L: netdev@vger.kernel.org
4339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004340F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004341
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004342PA SEMI SMBUS DRIVER
4343P: Olof Johansson
4344M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004345L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004347F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004348
Harald Welte709ee532008-09-23 17:46:57 +02004349PANASONIC LAPTOP ACPI EXTRAS DRIVER
4350P: Harald Welte
4351M: laforge@gnumonks.org
4352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004353F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004354
David Howells4fa97182008-10-13 10:42:44 +01004355PANASONIC MN10300/AM33 PORT
4356P: David Howells
4357M: dhowells@redhat.com
4358P: Koichi Yasutake
4359M: yasutake.koichi@jp.panasonic.com
4360L: linux-am33-list@redhat.com (moderated for non-subscribers)
4361W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: Documentation/mn10300/
4364F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004367L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004368S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004369F: drivers/parport/
4370F: include/linux/parport*.h
4371F: drivers/char/ppdev.c
4372F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004374PARAVIRT_OPS INTERFACE
4375P: Jeremy Fitzhardinge
4376M: jeremy@xensource.com
4377P: Chris Wright
4378M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004379P: Alok Kataria
4380M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004381P: Rusty Russell
4382M: rusty@rustcorp.com.au
4383L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004384S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004385F: Documentation/ia64/paravirt_ops.txt
4386F: arch/*/kernel/paravirt*
4387F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004388
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4390P: Tim Waugh
4391M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004392L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393W: http://www.torque.net/linux-pp.html
4394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004395F: Documentation/blockdev/paride.txt
4396F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004399P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004400M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004401P: Helge Deller
4402M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004403L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004405T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: arch/parisc/
4408F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
Jim Cromie1662d322006-10-06 00:43:59 -07004410PC87360 HARDWARE MONITORING DRIVER
4411P: Jim Cromie
4412M: jim.cromie@gmail.com
4413L: lm-sensors@lm-sensors.org
4414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004415F: Documentation/hwmon/pc87360
4416F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004417
4418PC8736x GPIO DRIVER
4419P: Jim Cromie
4420M: jim.cromie@gmail.com
4421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004422F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004423
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004424PCA9532 LED DRIVER
4425P: Riku Voipio
4426M: riku.voipio@iki.fi
4427S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004428F: drivers/leds/leds-pca9532.c
4429F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004430
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004431PCI ERROR RECOVERY
4432P: Linas Vepstas
4433M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004434L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004435S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004436F: Documentation/PCI/pci-error-recovery.txt
4437F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004438
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004440P: Jesse Barnes
4441M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004442L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004443T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004445F: Documentation/PCI/
4446F: drivers/pci/
4447F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004449PCIE HOTPLUG DRIVER
4450P: Kristen Carlson Accardi
4451M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004452L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004453S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004454F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004457P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004458L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004459W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004460T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004462F: Documentation/pcmcia/
4463F: drivers/pcmcia/
4464F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
4466PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004467P: Don Fry
4468M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004469L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004471F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004473PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004474P: Balbir Singh
4475M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004477F: include/linux/delayacct.h
4478F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004479
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004480PERFORMANCE COUNTER SUBSYSTEM
4481P: Peter Zijlstra
4482M: a.p.zijlstra@chello.nl
4483P: Paul Mackerras
4484M: paulus@samba.org
4485P: Ingo Molnar
4486M: mingo@elte.hu
4487L: linux-kernel@vger.kernel.org
4488S: Supported
4489
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004490PERSONALITY HANDLING
4491P: Christoph Hellwig
4492M: hch@infradead.org
4493L: linux-abi-devel@lists.sourceforge.net
4494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004495F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004496
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004498P: Joern Engel
4499M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500L: linux-mtd@lists.infradead.org
4501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004502F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
Peter Osterlund249a6772005-09-27 21:45:30 -07004504PKTCDVD DRIVER
4505P: Peter Osterlund
4506M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004508F: drivers/block/pktcdvd.c
4509F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004510
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004512P: Thomas Gleixner
4513M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004515F: fs/timerfd.c
4516F: include/linux/timer*
4517F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Anton Vorontsov3be86142007-07-15 04:43:36 +04004519POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4520P: Anton Vorontsov
4521M: cbou@mail.ru
4522P: David Woodhouse
4523M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004524T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004526F: include/linux/power_supply.h
4527F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004528
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529PNP SUPPORT
4530P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004531M: abelay@mit.edu
4532P: Bjorn Helgaas
4533M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004535F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Vitaly Wool999445d2007-01-04 13:07:03 +01004537PNXxxxx I2C DRIVER
4538P: Vitaly Wool
4539M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004540L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004542F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004543
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544PPP PROTOCOL DRIVERS AND COMPRESSORS
4545P: Paul Mackerras
4546M: paulus@samba.org
4547L: linux-ppp@vger.kernel.org
4548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004549F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551PPP OVER ATM (RFC 2364)
4552P: Mitchell Blank Jr
4553M: mitch@sfgoth.com
4554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004555F: net/atm/pppoatm.c
4556F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
4558PPP OVER ETHERNET
4559P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004560M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: drivers/net/pppoe.c
4563F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
James Chapmana6d23702007-06-27 15:53:17 -07004565PPP OVER L2TP
4566P: James Chapman
4567M: jchapman@katalix.com
4568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004569F: drivers/net/pppol2tp.c
4570F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004571
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572PREEMPTIBLE KERNEL
4573P: Robert Love
4574M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575L: kpreempt-tech@lists.sourceforge.net
4576W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4577S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004578F: Documentation/preempt-locking.txt
4579F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
4581PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004582P: Luis R. Rodriguez
4583M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004584L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585W: http://prism54.org
4586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
4589PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4590P: Peter Denison
4591M: promise@pnd-pc.demon.co.uk
4592W: http://www.pnd-pc.demon.co.uk/promise/
4593S: Maintained
4594
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004595PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4596P: Mikael Pettersson
4597M: mikpe@it.uu.se
4598L: linux-ide@vger.kernel.org
4599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004600F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004601
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004602PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004603P: Geoff Levand
4604M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004605L: netdev@vger.kernel.org
4606L: cbe-oss-dev@ozlabs.org
4607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004608F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004609
Geoff Levandf58a9d12006-11-23 00:46:51 +01004610PS3 PLATFORM SUPPORT
4611P: Geoff Levand
4612M: geoffrey.levand@am.sony.com
4613L: linuxppc-dev@ozlabs.org
4614L: cbe-oss-dev@ozlabs.org
4615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004616F: arch/powerpc/boot/ps3*
4617F: arch/powerpc/include/asm/lv1call.h
4618F: arch/powerpc/include/asm/ps3*.h
4619F: arch/powerpc/platforms/ps3/
4620F: drivers/*/ps3*
4621F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004622F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004623F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004624F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004625
Jim Pariscffb4add2009-01-06 11:32:10 +00004626PS3VRAM DRIVER
4627P: Jim Paris
4628M: jim@jtan.com
4629L: cbe-oss-dev@ozlabs.org
4630S: Maintained
4631
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004632PTRACE SUPPORT
4633P: Roland McGrath
4634M: roland@redhat.com
4635P: Oleg Nesterov
4636M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004637S: Maintained
4638F: include/asm-generic/syscall.h
4639F: include/linux/ptrace.h
4640F: include/linux/regset.h
4641F: include/linux/tracehook.h
4642F: kernel/ptrace.c
4643
Michael Krufky83202042006-07-03 00:24:18 -07004644PVRUSB2 VIDEO4LINUX DRIVER
4645P: Mike Isely
4646M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004647L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004648L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004649W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004650T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004652F: Documentation/video4linux/README.pvrusb2
4653F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004654
Eric Miao30ec2612008-06-12 15:21:41 -07004655PXA2xx/PXA3xx SUPPORT
4656P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004657M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004658P: Russell King
4659M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004660L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004662F: arch/arm/mach-pxa/
4663F: drivers/pcmcia/pxa2xx*
4664F: drivers/spi/pxa2xx*
4665F: drivers/usb/gadget/pxa2*
4666F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004667F: sound/arm/pxa*
4668F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004670PXA168 SUPPORT
4671P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004672M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004673P: Jason Chagas
4674M: jason.chagas@marvell.com
4675L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004676T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004677S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004678
Eric Miao5fa82eb2009-03-20 12:52:24 +08004679PXA910 SUPPORT
4680P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004681M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004683T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004684S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004685
Pierre Ossman272f1332007-05-14 21:25:26 +02004686PXA MMCI DRIVER
4687S: Orphan
4688
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004689PXA RTC DRIVER
4690P: Robert Jarzmik
4691M: robert.jarzmik@free.fr
4692L: rtc-linux@googlegroups.com
4693S: Maintained
4694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695QLOGIC QLA2XXX FC-SCSI DRIVER
4696P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004697M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698L: linux-scsi@vger.kernel.org
4699S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004700F: Documentation/scsi/LICENSE.qla2xxx
4701F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Ron Mercer5a4faa82006-07-25 00:40:21 -07004703QLOGIC QLA3XXX NETWORK DRIVER
4704P: Ron Mercer
4705M: linux-driver@qlogic.com
4706L: netdev@vger.kernel.org
4707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004708F: Documentation/networking/LICENSE.qla3xxx
4709F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004710
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004711QLOGIC QLGE 10Gb ETHERNET DRIVER
4712P: Ron Mercer
4713M: linux-driver@qlogic.com
4714M: ron.mercer@qlogic.com
4715L: netdev@vger.kernel.org
4716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004717F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719QNX4 FILESYSTEM
4720P: Anders Larsen
4721M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722W: http://www.alarsen.net/linux/qnx4fs/
4723S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004724F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004725F: include/linux/qnx4_fs.h
4726F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
4728RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004729P: Benjamin Herrenschmidt
4730M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004731L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004733F: drivers/video/aty/radeon*
4734F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
4736RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004737P: Paul Mackerras
4738M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004739L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004741F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Randy Dunlape7839f22008-10-12 16:11:45 -07004743RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004744P: rt2x00 project
4745L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004746L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004747W: http://rt2x00.serialmonkey.com/
4748S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004749T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004750F: drivers/net/wireless/rt2x00/
4751
Nick Piggin9db55792008-02-08 04:19:49 -08004752RAMDISK RAM BLOCK DEVICE DRIVER
4753P: Nick Piggin
4754M: npiggin@suse.de
4755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004756F: Documentation/blockdev/ramdisk.txt
4757F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004758
Matt Mackall9e95ce22005-04-16 15:25:56 -07004759RANDOM NUMBER DRIVER
4760P: Matt Mackall
4761M: mpm@selenic.com
4762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004763F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004764
Matt Porter394b7012005-11-07 01:00:15 -08004765RAPIDIO SUBSYSTEM
4766P: Matt Porter
4767M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004769F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004770
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004771RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4772P: Corey Thomas
4773M: coreythomas@charter.net
4774L: linux-wireless@vger.kernel.org
4775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004776F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004777
4778RCUTORTURE MODULE
4779P: Josh Triplett
4780M: josh@freedesktop.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004782F: Documentation/RCU/torture.txt
4783F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004784
Florian Fainellic1f766b2008-02-06 22:39:44 +01004785RDC R-321X SoC
4786P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004787M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004788S: Maintained
4789
Florian Fainellidb17f392007-12-19 11:30:30 +01004790RDC R6040 FAST ETHERNET DRIVER
4791P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004792M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004793L: netdev@vger.kernel.org
4794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004795F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004796
Andy Grovera09ed662009-02-24 15:30:41 +00004797RDS - RELIABLE DATAGRAM SOCKETS
4798P: Andy Grover
4799M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004800L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004802F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004803
Josh Triplett595182b2006-10-04 02:17:21 -07004804READ-COPY UPDATE (RCU)
4805P: Dipankar Sarma
4806M: dipankar@in.ibm.com
4807W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004808S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004809F: Documentation/RCU/rcu.txt
4810F: Documentation/RCU/rcuref.txt
4811F: include/linux/rcupdate.h
4812F: include/linux/srcu.h
4813F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004814
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815REAL TIME CLOCK DRIVER
4816P: Paul Gortmaker
4817M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: Documentation/rtc.txt
4820F: drivers/rtc/
4821F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004823REAL TIME CLOCK (RTC) SUBSYSTEM
4824P: Alessandro Zummo
4825M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004826L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004827S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004828F: Documentation/rtc.txt
4829F: drivers/rtc/
4830F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004833L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004835F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836
Ivo van Doorne08976452008-04-12 19:23:55 +02004837RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004838P: Johannes Berg
4839M: johannes@sipsolutions.net
4840L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004841S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004842F Documentation/rfkill.txt
4843F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004844
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004845RISCOM8 DRIVER
4846S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004847F: Documentation/serial/riscom8.txt
4848F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004849
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850ROCKETPORT DRIVER
4851P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852W: http://www.comtrol.com
4853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004854F: Documentation/serial/rocket.txt
4855F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
4857ROSE NETWORK LAYER
4858P: Ralf Baechle
4859M: ralf@linux-mips.org
4860L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004861W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: include/linux/rose.h
4864F: include/net/rose.h
4865F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
Larry Finger59840482008-11-12 17:13:09 -06004867RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004868P: John W. Linville
4869M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004870L: linux-wireless@vger.kernel.org
4871W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004872T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004875
Larry Finger59840482008-11-12 17:13:09 -06004876RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004877P: Herton Ronaldo Krzesinski
4878M: herton@mandriva.com.br
4879P: Hin-Tak Leung
4880M: htl10@users.sourceforge.net
4881P: Larry Finger
4882M: Larry.Finger@lwfinger.net
4883L: linux-wireless@vger.kernel.org
4884W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004885T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004888
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004889S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004890P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004891M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004892L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004895
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896S390
4897P: Martin Schwidefsky
4898M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004899P: Heiko Carstens
4900M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004902L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004903W: http://www.ibm.com/developerworks/linux/linux390/
4904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004905F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004906
4907S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004908P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004909M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004910P: Frank Blaschka
4911M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004912M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004913L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004914W: http://www.ibm.com/developerworks/linux/linux390/
4915S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004916F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004917
Felix Beckfeed9b62009-03-26 15:24:23 +01004918S390 ZCRYPT DRIVER
4919P: Felix Beck
4920M: felix.beck@de.ibm.com
4921P: Ralph Wuerthner
4922M: ralph.wuerthner@de.ibm.com
4923M: linux390@de.ibm.com
4924L: linux-s390@vger.kernel.org
4925S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004926F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004927
Heiko Carstens5238da42006-02-11 17:56:01 -08004928S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004929P: Christof Schmitt
4930M: christof.schmitt@de.ibm.com
4931P: Martin Peschke
4932M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004933M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004934L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004935W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004937F: Documentation/s390/zfcpdump.txt
4938F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Ursula Braundd96df22007-09-19 13:09:02 +02004940S390 IUCV NETWORK LAYER
4941P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004942M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004943M: linux390@de.ibm.com
4944L: linux-s390@vger.kernel.org
4945W: http://www.ibm.com/developerworks/linux/linux390/
4946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004947F: drivers/s390/net/*iucv*
4948F: include/net/iucv/
4949F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004950
Ben Dooks4dde7f72008-06-30 22:40:38 +01004951S3C24XX SD/MMC Driver
4952P: Ben Dooks
4953M: ben-linux@fluff.org
4954L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958SAA7146 VIDEO4LINUX-2 DRIVER
4959P: Michael Hunold
4960M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004961L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004962T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963W: http://www.mihu.de/linux/saa7146
4964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004965F: drivers/media/common/saa7146*
4966F: drivers/media/video/*7146*
4967F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969SC1200 WDT DRIVER
4970P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004971M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004973F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974
4975SCHEDULER
4976P: Ingo Molnar
4977M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02004978P: Peter Zijlstra
4979M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004981F: kernel/sched*
4982F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983
4984SCSI CDROM DRIVER
4985P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02004986M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987L: linux-scsi@vger.kernel.org
4988W: http://www.kernel.dk
4989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004990F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
4992SCSI SG DRIVER
4993P: Doug Gilbert
4994M: dgilbert@interlog.com
4995L: linux-scsi@vger.kernel.org
4996W: http://www.torque.net/sg
4997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004998F: drivers/scsi/sg.c
4999F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
5001SCSI SUBSYSTEM
5002P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005003M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005005T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5006T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5007T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005009F: drivers/scsi/
5010F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005013P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014M: Kai.Makisara@kolumbus.fi
5015L: linux-scsi@vger.kernel.org
5016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005017F: Documentation/scsi/st.txt
5018F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019
5020SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005021P: Vlad Yasevich
5022M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005023P: Sridhar Samudrala
5024M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005025L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005026W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005028F: Documentation/networking/sctp.txt
5029F: include/linux/sctp.h
5030F: include/net/sctp/
5031F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032
5033SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005034P: Jim Cromie
5035M: jim.cromie@gmail.com
5036S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005037F: Documentation/i2c/busses/scx200_acb
5038F: arch/x86/kernel/scx200_32.c
5039F: drivers/watchdog/scx200_wdt.c
5040F: drivers/i2c/busses/scx200*
5041F: drivers/mtd/maps/scx200_docflash.c
5042F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005043
5044SCx200 GPIO DRIVER
5045P: Jim Cromie
5046M: jim.cromie@gmail.com
5047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005048F: drivers/char/scx200_gpio.c
5049F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005050
5051SCx200 HRT CLOCKSOURCE DRIVER
5052P: Jim Cromie
5053M: jim.cromie@gmail.com
5054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005055F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Sascha Sommer6a369132008-07-15 14:21:29 +02005057SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5058P: Sascha Sommer
5059M: saschasommer@freenet.de
5060L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005063
Randy Dunlape7839f22008-10-12 16:11:45 -07005064SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005065P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005066M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005067L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005068S: Maintained
5069
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005070SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5071P: Anton Vorontsov
5072M: avorontsov@ru.mvista.com
5073L: linuxppc-dev@ozlabs.org
5074L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
James Morris8711cca2008-12-04 03:19:45 +11005078SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005079P: James Morris
5080M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005081L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005082T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005083W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005084S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005085F: security/
James Morris8711cca2008-12-04 03:19:45 +11005086
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087SECURITY CONTACT
5088P: Security Officers
5089M: security@kernel.org
5090S: Supported
5091
5092SELINUX SECURITY MODULE
5093P: Stephen Smalley
5094M: sds@tycho.nsa.gov
5095P: James Morris
5096M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005097P: Eric Paris
5098M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005099L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005100W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005101T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005103F: include/linux/selinux*
5104F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
Jiri Slabycef2cf02007-05-08 00:31:45 -07005106SENSABLE PHANTOM
5107P: Jiri Slaby
5108M: jirislaby@gmail.com
5109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/misc/phantom.c
5111F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005112
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005113SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114P: Jeff Garzik
5115M: jgarzik@pobox.com
5116L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005117T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005119F: drivers/ata/
5120F: include/linux/ata.h
5121F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005123SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5124P: Sathya Perla
5125M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005126P: Subbu Seetharaman
5127M: subbus@serverengines.com
5128L: netdev@vger.kernel.org
5129W: http://www.serverengines.com
5130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005131F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005132
Ben Hutchings8ceee662008-04-27 12:55:59 +01005133SFC NETWORK DRIVER
5134P: Steve Hodgson
5135P: Ben Hutchings
5136P: Robert Stonehouse
5137M: linux-net-drivers@solarflare.com
5138S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005140
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005141SGI GRU DRIVER
5142P: Jack Steiner
5143M: steiner@sgi.com
5144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005145F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005146
5147SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5148P: Pat Gefre
5149M: pfg@sgi.com
5150L: linux-ia64@vger.kernel.org
5151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005152F: Documentation/ia64/serial.txt
5153F: drivers/serial/ioc?_serial.c
5154F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156SGI VISUAL WORKSTATION 320 AND 540
5157P: Andrey Panin
5158M: pazke@donpac.ru
5159L: linux-visws-devel@lists.sf.net
5160W: http://linux-visws.sf.net
5161S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005162F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163
Jack Steiner75312612008-08-15 00:40:42 -07005164SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005165P: Robin Holt
5166M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005168F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005169
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005170SHARP LH SUPPORT (LH7952X & LH7A40X)
5171P: Marc Singer
5172M: elf@buici.com
5173W: http://projects.buici.com/arm
5174L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005176F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5177F: arch/arm/mach-lh7a40x/
5178F: drivers/serial/serial_lh7a40x.c
5179F: drivers/usb/gadget/lh7a40*
5180F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005181
5182SHPC HOTPLUG DRIVER
5183P: Kristen Carlson Accardi
5184M: kristen.c.accardi@intel.com
5185L: linux-pci@vger.kernel.org
5186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005187F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005188
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189SIMTEC EB110ATX (Chalice CATS)
5190P: Ben Dooks
5191P: Vincent Sanders
5192M: support@simtec.co.uk
5193W: http://www.simtec.co.uk/products/EB110ATX/
5194S: Supported
5195
5196SIMTEC EB2410ITX (BAST)
5197P: Ben Dooks
5198P: Vincent Sanders
5199M: support@simtec.co.uk
5200W: http://www.simtec.co.uk/products/EB2410ITX/
5201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005202F: arch/arm/mach-s3c2410/
5203F: drivers/*/*s3c2410*
5204F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205
Francois Romieu92aab3c2005-07-30 13:11:18 +02005206SIS 190 ETHERNET DRIVER
5207P: Francois Romieu
5208M: romieu@fr.zoreil.com
5209L: netdev@vger.kernel.org
5210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005211F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005212
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213SIS 900/7016 FAST ETHERNET DRIVER
5214P: Daniele Venzano
5215M: venza@brownhat.org
5216W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005217L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005219F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005221SIS 96X I2C/SMBUS DRIVER
5222P: Mark M. Hoffman
5223M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005224L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005226F: Documentation/i2c/busses/i2c-sis96x
5227F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005228
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229SIS FRAMEBUFFER DRIVER
5230P: Thomas Winischhofer
5231M: thomas@winischhofer.net
5232W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005234F: Documentation/fb/sisfb.txt
5235F: drivers/video/sis/
5236F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237
5238SIS USB2VGA DRIVER
5239P: Thomas Winischhofer
5240M: thomas@winischhofer.net
5241W: http://www.winischhofer.at/linuxsisusbvga.shtml
5242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005243F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005245SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5246P: Stephen Hemminger
5247M: shemminger@linux-foundation.org
5248L: netdev@vger.kernel.org
5249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005250F: drivers/net/skge.*
5251F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005252
Christoph Lameter415ad262007-07-26 10:40:56 -07005253SLAB ALLOCATOR
5254P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005255M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005256P: Pekka Enberg
5257M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005258P: Matt Mackall
5259M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005260L: linux-mm@kvack.org
5261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005262F: include/linux/sl?b*.h
5263F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005264
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265SMC91x ETHERNET DRIVER
5266P: Nicolas Pitre
5267M: nico@cam.org
5268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005269F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005271SMSC47B397 HARDWARE MONITOR DRIVER
5272P: Mark M. Hoffman
5273M: mhoffman@lightlink.com
5274L: lm-sensors@lm-sensors.org
5275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: Documentation/hwmon/smsc47b397
5277F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005278
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005279SMSC911x ETHERNET DRIVER
5280P: Steve Glendinning
5281M: steve.glendinning@smsc.com
5282L: netdev@vger.kernel.org
5283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005284F: include/linux/smsc911x.h
5285F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005286
Steve Glendinning2cb37722008-12-11 20:54:30 -08005287SMSC9420 PCI ETHERNET DRIVER
5288P: Steve Glendinning
5289M: steve.glendinning@smsc.com
5290L: netdev@vger.kernel.org
5291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005292F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005293
Ben Nizetteb54f2862008-03-13 22:27:30 +11005294SMX UIO Interface
5295P: Ben Nizette
5296M: bn@niasdigital.com
5297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005298F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005299
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005300SN-IA64 (Itanium) SUB-PLATFORM
5301P: Jes Sorensen
5302M: jes@sgi.com
5303L: linux-altix@sgi.com
5304L: linux-ia64@vger.kernel.org
5305W: http://www.sgi.com/altix
5306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005307F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005308
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005309SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005310P: Guennadi Liakhovetski
5311M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005312L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005313T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005315F: include/media/v4l2*
5316F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005317
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005318SOEKRIS NET48XX LED SUPPORT
5319P: Chris Boot
5320M: bootc@bootc.net
5321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005322F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005323
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005326M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005329F: drivers/md/
5330F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332SONIC NETWORK DRIVER
5333P: Thomas Bogendoerfer
5334M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005335L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005337F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338
Michael Buesch61e115a2007-09-18 15:12:50 -04005339SONICS SILICON BACKPLANE DRIVER (SSB)
5340P: Michael Buesch
5341M: mb@bu3sch.de
5342L: netdev@vger.kernel.org
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: drivers/ssb/
5345F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005346
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005348P: Mattia Dongili
5349M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005350L: linux-acpi@vger.kernel.org
5351W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005353F: Documentation/laptops/sony-laptop.txt
5354F: drivers/char/sonypi.c
5355F: drivers/platform/x86/sony-laptop.c
5356F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
Alex Dubovbaf85322008-02-09 10:20:54 -08005358SONY MEMORYSTICK CARD SUPPORT
5359P: Alex Dubov
5360M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005361W: http://tifmxx.berlios.de/
5362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005363F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365SOUND
5366P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005367M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005368P: Takashi Iwai
5369M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005370L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005371W: http://www.alsa-project.org/
5372T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5373T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005375F: Documentation/sound/
5376F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005377F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Mark Brownbd903bd2008-11-19 19:16:05 +00005379SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005380P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005381M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005382P: Mark Brown
5383M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005384T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005385L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005386W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005388F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005389F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005390
Sam Ravnborg473321f2009-01-04 15:47:49 -08005391SPARC + UltraSPARC (sparc/sparc64)
5392P: David S. Miller
5393M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005395T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5396T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005398F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
5400SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5401P: Roger Wolff
5402M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005404F: Documentation/serial/specialix.txt
5405F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005407SPI SUBSYSTEM
5408P: David Brownell
5409M: dbrownell@users.sourceforge.net
5410L: spi-devel-general@lists.sourceforge.net
5411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: Documentation/spi/
5413F: drivers/spi/
5414F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005415
Jim Lewis2752e402006-09-29 02:01:19 -07005416SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005417P: Ishizaki Kou
5418M: kou.ishizaki@toshiba.co.jp
5419P: Jens Osterkamp
5420M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005421L: netdev@vger.kernel.org
5422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005423F: Documentation/networking/spider_net.txt
5424F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005426SPU FILE SYSTEM
5427P: Jeremy Kerr
5428M: jk@ozlabs.org
5429L: linuxppc-dev@ozlabs.org
5430L: cbe-oss-dev@ozlabs.org
5431W: http://www.ibm.com/developerworks/power/cell/
5432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005433F: Documentation/filesystems/spufs.txt
5434F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005435
Phillip Lougherfc555842009-01-05 08:46:29 +00005436SQUASHFS FILE SYSTEM
5437P: Phillip Lougher
5438M: phillip@lougher.demon.co.uk
5439L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5440W: http://squashfs.org.uk
5441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005442F: Documentation/filesystems/squashfs.txt
5443F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005444
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445SRM (Alpha) environment access
5446P: Jan-Benedict Glaw
5447M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005449F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
Linus Torvalds26e9a392008-10-17 09:50:12 -07005451STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005452P: Greg Kroah-Hartman
5453M: greg@kroah.com
5454P: Chris Wright
5455M: chrisw@sous-sol.org
5456L: stable@kernel.org
5457S: Maintained
5458
Linus Torvalds26e9a392008-10-17 09:50:12 -07005459STAGING SUBSYSTEM
5460P: Greg Kroah-Hartman
5461M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005462T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005464F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005465
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466STARFIRE/DURALAN NETWORK DRIVER
5467P: Ion Badulescu
5468M: ionut@cs.columbia.edu
5469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005470F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
5472STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5473W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005474S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005475F: drivers/net/wireless/strip.c
5476F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477
5478STRADIS MPEG-2 DECODER DRIVER
5479P: Nathan Laredo
5480M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481W: http://www.stradis.com/
5482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005483F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005485SUN3/3X
5486P: Sam Creasey
5487M: sammy@sammy.net
5488W: http://sammy.net/sun3/
5489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005490F: arch/m68k/kernel/*sun3*
5491F: arch/m68k/sun3*/
5492F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005493
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005494SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495P: Paul Mundt
5496M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005497L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005499T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005500S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005501F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005502F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005503F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005505SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005506P: Len Brown
5507M: len.brown@intel.com
5508P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005509M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005510P: Rafael J. Wysocki
5511M: rjw@sisk.pl
5512L: linux-pm@lists.linux-foundation.org
5513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005514F: Documentation/power/
5515F: arch/x86/kernel/acpi/
5516F: drivers/base/power/
5517F: kernel/power/
5518F: include/linux/suspend.h
5519F: include/linux/freezer.h
5520F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521
5522SVGA HANDLING
5523P: Martin Mares
5524M: mj@ucw.cz
5525L: linux-video@atrey.karlin.mff.cuni.cz
5526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005527F: Documentation/svga.txt
5528F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
5530SYSV FILESYSTEM
5531P: Christoph Hellwig
5532M: hch@infradead.org
5533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/filesystems/sysv-fs.txt
5535F: fs/sysv/
5536F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Alan Cox4e688522008-04-30 00:52:11 -07005538TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005539P: Balbir Singh
5540M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005542F: Documentation/accounting/taskstats*
5543F: include/linux/taskstats*
5544F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005545
Stephen Hemminger781b4562006-07-10 20:25:29 -07005546TC CLASSIFIER
5547P: Jamal Hadi Salim
5548M: hadi@cyberus.ca
5549L: netdev@vger.kernel.org
5550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005551F: include/linux/pkt_cls.h
5552F: include/net/pkt_cls.h
5553F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005554
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005555TCP LOW PRIORITY MODULE
5556P: Wong Hoi Sing, Edison
5557M: hswong3i@gmail.com
5558P: Hung Hing Lun, Mike
5559M: hlhung3i@gmail.com
5560W: http://tcp-lp-mod.sourceforge.net/
5561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005562F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005563
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005564TEHUTI ETHERNET DRIVER
5565P: Alexander Indenbaum
5566M: baum@tehutinetworks.net
5567P: Andy Gospodarek
5568M: andy@greyhouse.net
5569L: netdev@vger.kernel.org
5570S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005571F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005572
Alan Cox4e688522008-04-30 00:52:11 -07005573Telecom Clock Driver for MCPL0010
5574P: Mark Gross
5575M: mark.gross@intel.com
5576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005577F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005578
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005579TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005580P: Chris Zankel
5581M: chris@zankel.net
5582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005583F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005584
5585THINKPAD ACPI EXTRAS DRIVER
5586P: Henrique de Moraes Holschuh
5587M: ibm-acpi@hmh.eng.br
5588L: ibm-acpi-devel@lists.sourceforge.net
5589W: http://ibm-acpi.sourceforge.net
5590W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005591T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005593F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005594
Alex Dubov4020f2d2006-10-04 02:15:37 -07005595TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005596P: Alex Dubov
5597M: oakad@yahoo.com
5598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005599F: drivers/misc/tifm*
5600F: drivers/mmc/host/tifm_sd.c
5601F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005602
Per Lidene86eaa32006-01-12 16:45:18 +01005603TIPC NETWORK LAYER
5604P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005605M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005606P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005607M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005608P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005609M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005610L: tipc-discussion@lists.sourceforge.net
5611W: http://tipc.sourceforge.net/
5612W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005613T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005615F: include/linux/tipc*.h
5616F: include/net/tipc/
5617F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005618
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619TLAN NETWORK DRIVER
5620P: Samuel Chessman
5621M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005622L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623W: http://sourceforge.net/projects/tlan/
5624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: Documentation/networking/tlan.txt
5626F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005628TOMOYO SECURITY MODULE
5629P: Kentaro Takeda
5630M: takedakn@nttdata.co.jp
5631P: Tetsuo Handa
5632M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005633L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5634L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5635L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5636W: http://tomoyo.sourceforge.jp/
5637T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005639F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005640
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005642S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005643F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644
5645TOSHIBA SMM DRIVER
5646P: Jonathan Buzzard
5647M: jonathan@buzzard.org.uk
5648L: tlinux-users@tce.toshiba-dme.co.jp
5649W: http://www.buzzard.org.uk/toshiba/
5650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005651F: drivers/char/toshiba.c
5652F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Pierre Ossmand719f902009-03-24 21:06:09 +01005654TMIO MMC DRIVER
5655P: Ian Molton
5656M: ian@mnementh.co.uk
5657S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005658F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005659
Hugh Dickins98f32602009-05-21 20:33:58 +01005660TMPFS (SHMEM FILESYSTEM)
5661P: Hugh Dickins
5662M: hugh.dickins@tiscali.co.uk
5663L: linux-mm@kvack.org
5664S: Maintained
5665F: include/linux/shmem_fs.h
5666F: mm/shmem.c
5667
Alan Cox4e688522008-04-30 00:52:11 -07005668TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005669P: Debora Velarde
5670M: debora@linux.vnet.ibm.com
5671P: Rajiv Andrade
5672M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005673W: http://tpmdd.sourceforge.net
5674P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005675M: m.selhorst@sirrix.com
5676W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005677L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005679F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005680
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005682P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005683M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005684T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685S: Maintained
5686
Alan Cox4e688522008-04-30 00:52:11 -07005687TTY LAYER
5688P: Alan Cox
5689M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005690S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005691T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005692
Grant Grundler740db6d2008-02-17 11:53:49 -07005693TULIP NETWORK DRIVERS
5694P: Grant Grundler
5695M: grundler@parisc-linux.org
5696P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005697M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005698L: netdev@vger.kernel.org
5699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005700F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701
5702TUN/TAP driver
5703P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005704M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705L: vtun@office.satix.net
5706W: http://vtun.sourceforge.net/tun
5707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005708F: Documentation/networking/tuntap.txt
5709F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005711TURBOCHANNEL SUBSYSTEM
5712P: Maciej W. Rozycki
5713M: macro@linux-mips.org
5714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005715F: drivers/tc/
5716F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005717
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718U14-34F SCSI DRIVER
5719P: Dario Ballabio
5720M: ballabio_dario@emc.com
5721L: linux-scsi@vger.kernel.org
5722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005725UBI FILE SYSTEM (UBIFS)
5726P: Artem Bityutskiy
5727M: dedekind@infradead.org
5728P: Adrian Hunter
5729M: ext-adrian.hunter@nokia.com
5730L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005731T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005732W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005734F: Documentation/filesystems/ubifs.txt
5735F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005736
Alan Coxcc2020e2008-05-19 14:21:51 +01005737UCLINUX (AND M68KNOMMU)
5738P: Greg Ungerer
5739M: gerg@uclinux.org
5740W: http://www.uclinux.org/
5741L: uclinux-dev@uclinux.org (subscribers-only)
5742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005743F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005744
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005745UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005746P: Yoshinori Sato
5747M: ysato@users.sourceforge.jp
5748W: http://uclinux-h8.sourceforge.jp/
5749S: Supported
5750
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005752P: Jan Kara
5753M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754W: http://linux-udf.sourceforge.net
5755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005756F: Documentation/filesystems/udf.txt
5757F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
Alan Coxcc2020e2008-05-19 14:21:51 +01005759UFS FILESYSTEM
5760P: Evgeniy Dushistov
5761M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: Documentation/filesystems/ufs.txt
5764F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005765
David Vrabel18332a82008-09-17 16:34:44 +01005766ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5767P: David Vrabel
5768M: david.vrabel@csr.com
5769L: linux-usb@vger.kernel.org
5770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005771F: drivers/uwb/*
5772F: include/linux/uwb.h
5773F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005774
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775UNIFORM CDROM DRIVER
5776P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005777M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778W: http://www.kernel.dk
5779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: Documentation/cdrom/
5781F: drivers/cdrom/cdrom.c
5782F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005784UNSORTED BLOCK IMAGES (UBI)
5785P: Artem Bityutskiy
5786M: dedekind@infradead.org
5787W: http://www.linux-mtd.infradead.org/
5788L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005789T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005790S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005791F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005792F: include/linux/mtd/ubi.h
5793F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005794
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795USB ACM DRIVER
5796P: Oliver Neukum
5797M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005798L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005800F: Documentation/usb/acm.txt
5801F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802
5803USB BLOCK DRIVER (UB ub)
5804P: Pete Zaitcev
5805M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005806L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005808F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810USB CDC ETHERNET DRIVER
5811P: Greg Kroah-Hartman
5812M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005813L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814S: Maintained
5815W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005816F: drivers/net/usb/cdc_*.c
5817F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005819USB CYPRESS C67X00 DRIVER
5820P: Peter Korsgaard
5821M: jacmet@sunsite.dk
5822L: linux-usb@vger.kernel.org
5823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005824F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005825
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005826USB DAVICOM DM9601 DRIVER
5827P: Peter Korsgaard
5828M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005829L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005830W: http://www.linux-usb.org/usbnet
5831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005832F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005833
Alan Coxcc2020e2008-05-19 14:21:51 +01005834USB DIAMOND RIO500 DRIVER
5835P: Cesar Miquel
5836M: miquel@df.uba.ar
5837L: rio500-users@lists.sourceforge.net
5838W: http://rio500.sourceforge.net
5839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005841
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842USB EHCI DRIVER
5843P: David Brownell
5844M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005845L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005846S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005847F: Documentation/usb/ehci.txt
5848F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Luca Risolia7ce08c92006-01-11 02:06:59 +00005850USB ET61X[12]51 DRIVER
5851P: Luca Risolia
5852M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005853L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005854L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005855T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005856W: http://www.linux-projects.org
5857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005859
David Brownell69ae9e32006-11-14 02:03:31 -08005860USB GADGET/PERIPHERAL SUBSYSTEM
5861P: David Brownell
5862M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005863L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005864W: http://www.linux-usb.org/gadget
5865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005866F: drivers/usb/gadget/
5867F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005868
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005869USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005870P: Jiri Kosina
5871M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005872L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005873T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: Documentation/usb/hiddev.txt
5876F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Olav Kongas959eea22005-11-03 17:38:14 +02005878USB ISP116X DRIVER
5879P: Olav Kongas
5880M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005881L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005883F: drivers/usb/host/isp116x*
5884F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005885
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886USB KAWASAKI LSI DRIVER
5887P: Oliver Neukum
5888M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005889L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005891F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892
5893USB MASS STORAGE DRIVER
5894P: Matthew Dharm
5895M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005896L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005897L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898S: Maintained
5899W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005900F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
5902USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005903P: David Brownell
5904M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005905L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005906S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005907F: Documentation/usb/ohci.txt
5908F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Matthias Urlichsba460e42005-07-14 00:33:47 -07005910USB OPTION-CARD DRIVER
5911P: Matthias Urlichs
5912M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005913L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005915F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005916
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917USB OV511 DRIVER
5918P: Mark McClelland
5919M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005920L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921W: http://alpha.dyndns.org/ov511/
5922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005923F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924
5925USB PEGASUS DRIVER
5926P: Petko Manolov
5927M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005928L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005929L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930W: http://pegasus2.sourceforge.net/
5931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005932F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005934USB PRINTER DRIVER (usblp)
5935P: Pete Zaitcev
5936M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005937L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005938S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005939F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
5941USB RTL8150 DRIVER
5942P: Petko Manolov
5943M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005944L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005945L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946W: http://pegasus2.sourceforge.net/
5947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005948F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949
5950USB SE401 DRIVER
5951P: Jeroen Vreeken
5952M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005953L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954W: http://www.chello.nl/~j.vreeken/se401/
5955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005956F: Documentation/video4linux/se401.txt
5957F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Alan Cox4e688522008-04-30 00:52:11 -07005959USB SERIAL BELKIN F5U103 DRIVER
5960P: William Greathouse
5961M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005962L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005965
5966USB SERIAL CYPRESS M8 DRIVER
5967P: Lonnie Mendez
5968M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005969L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005970S: Maintained
5971W: http://geocities.com/i0xox0i
5972W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005973F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005974
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975USB SERIAL CYBERJACK DRIVER
5976P: Matthias Bruestle and Harald Welte
5977M: support@reiner-sct.com
5978W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982USB SERIAL DIGI ACCELEPORT DRIVER
5983P: Peter Berger and Al Borchers
5984M: pberger@brimson.com
5985M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005986L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005988F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
5990USB SERIAL DRIVER
5991P: Greg Kroah-Hartman
5992M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005993L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005995F: Documentation/usb/usb-serial.txt
5996F: drivers/usb/serial/generic.c
5997F: drivers/usb/serial/usb-serial.c
5998F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6001P: Gary Brubaker
6002M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006003L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
6007USB SERIAL KEYSPAN DRIVER
6008P: Greg Kroah-Hartman
6009M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006010L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011W: http://www.kroah.com/linux/
6012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006016P: Support Department
6017M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006018L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019W: http://www.connecttech.com
6020S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006021F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006023USB SMSC95XX ETHERNET DRIVER
6024P: Steve Glendinning
6025M: steve.glendinning@smsc.com
6026L: netdev@vger.kernel.org
6027S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006028F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006029
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006030USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031P: Luca Risolia
6032M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006033L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006034L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006035T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036W: http://www.linux-projects.org
6037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006038F: Documentation/video4linux/sn9c102.txt
6039F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
6041USB SUBSYSTEM
6042P: Greg Kroah-Hartman
6043M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006044L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006046T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006048F: Documentation/usb/
6049F: drivers/net/usb/
6050F: drivers/usb/
6051F: include/linux/usb.h
6052F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
6054USB UHCI DRIVER
6055P: Alan Stern
6056M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006057L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006059F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060
David Brownell69ae9e32006-11-14 02:03:31 -08006061USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062P: David Brownell
6063M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006064L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006065W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006067F: drivers/net/usb/usbnet.c
6068F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006070USB VIDEO CLASS
6071P: Laurent Pinchart
6072M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006073L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006074L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006075T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006076W: http://linux-uvc.berlios.de
6077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006079
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080USB W996[87]CF DRIVER
6081P: Luca Risolia
6082M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006083L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006084L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006085T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086W: http://www.linux-projects.org
6087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006088F: Documentation/video4linux/w9968cf.txt
6089F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006091USB WIRELESS RNDIS DRIVER (rndis_wlan)
6092P: Jussi Kivilinna
6093M: jussi.kivilinna@mbnet.fi
6094L: linux-wireless@vger.kernel.org
6095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006096F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006097
Luca Risolia60f78052006-02-06 16:29:35 +00006098USB ZC0301 DRIVER
6099P: Luca Risolia
6100M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006101L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006102L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006103T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006104W: http://www.linux-projects.org
6105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006106F: Documentation/video4linux/zc0301.txt
6107F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006108
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109USB ZD1201 DRIVER
6110P: Jeroen Vreeken
6111M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006112L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113W: http://linux-lc100020.sourceforge.net
6114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006115F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006117USB ZR364XX DRIVER
6118P: Antoine Jacquet
6119M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006120L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006121L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006122T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006123W: http://royale.zerezo.com/zr364xx/
6124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006125F: Documentation/video4linux/zr364xx.txt
6126F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006127
Randy Dunlape7839f22008-10-12 16:11:45 -07006128USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006130M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131L: user-mode-linux-devel@lists.sourceforge.net
6132L: user-mode-linux-user@lists.sourceforge.net
6133W: http://user-mode-linux.sourceforge.net
6134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: Documentation/uml/
6136F: arch/um/
6137F: fs/hostfs/
6138F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006139
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006140USERSPACE I/O (UIO)
6141P: Hans J. Koch
6142M: hjk@linutronix.de
6143P: Greg Kroah-Hartman
6144M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006146F: Documentation/DocBook/uio-howto.tmpl
6147F: drivers/uio/
6148F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006149
Karel Zakf899b0a2008-05-23 13:04:21 -07006150UTIL-LINUX-NG PACKAGE
6151P: Karel Zak
6152M: kzak@redhat.com
6153L: util-linux-ng@vger.kernel.org
6154W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006155T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006156S: Maintained
6157
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006158UVESAFB DRIVER
6159P: Michal Januszewski
6160M: spock@gentoo.org
6161L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6162W: http://dev.gentoo.org/~spock/projects/uvesafb/
6163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006164F: Documentation/fb/uvesafb.txt
6165F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006166
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006167VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168P: OGAWA Hirofumi
6169M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006171F: Documentation/filesystems/vfat.txt
6172F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174VIA RHINE NETWORK DRIVER
6175P: Roger Luethi
6176M: rl@hellgate.ch
6177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006178F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179
Jean Delvare32c0a522005-09-22 21:47:58 +02006180VIAPRO SMBUS DRIVER
6181P: Jean Delvare
6182M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006183L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006185F: Documentation/i2c/busses/i2c-viapro
6186F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006187
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006188VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6189P: Joseph Chan
6190M: JosephChan@via.com.tw
6191P: Scott Fang
6192M: ScottFang@viatech.com.cn
6193L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006195F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006196
Francois Romieu01f20732007-01-26 00:57:17 -08006197VIA VELOCITY NETWORK DRIVER
6198P: Francois Romieu
6199M: romieu@fr.zoreil.com
6200L: netdev@vger.kernel.org
6201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203
Patrick McHardybe7f8272007-10-23 20:26:36 -07006204VLAN (802.1Q)
6205P: Patrick McHardy
6206M: kaber@trash.net
6207L: netdev@vger.kernel.org
6208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: drivers/net/macvlan.c
6210F: include/linux/if_*vlan.h
6211F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006212
Florian Fainelli55e331c2009-06-16 15:33:53 -07006213VLYNQ BUS
6214P: Florian Fainelli
6215M: florian@openwrt.org
6216L: openwrt-devel@lists.openwrt.org
6217S: Maintained
6218F: drivers/vlynq/vlynq.c
6219F: include/linux/vlynq.h
6220
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006221VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6222P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006223M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006224P: Mark Brown
6225M: broonie@opensource.wolfsonmicro.com
6226W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006227W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006228T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006230F: drivers/regulator/
6231F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006232
Juerg Haefligerab413192006-09-24 20:54:04 +02006233VT1211 HARDWARE MONITOR DRIVER
6234P: Juerg Haefliger
6235M: juergh@gmail.com
6236L: lm-sensors@lm-sensors.org
6237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006238F: Documentation/hwmon/vt1211
6239F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006240
Roger Lucas1de9e372005-11-26 20:20:05 +01006241VT8231 HARDWARE MONITOR DRIVER
6242P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006243M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006244L: lm-sensors@lm-sensors.org
6245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006246F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248W1 DALLAS'S 1-WIRE BUS
6249P: Evgeniy Polyakov
6250M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006252F: Documentation/w1/
6253F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
Charles Spirakis13927072006-07-05 18:05:15 +02006255W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006256P: Marc Hulsman
6257M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006258L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: Documentation/hwmon/w83791d
6261F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006262
Rudolf Marek61db0112006-12-12 18:18:30 +01006263W83793 HARDWARE MONITORING DRIVER
6264P: Rudolf Marek
6265M: r.marek@assembler.cz
6266L: lm-sensors@lm-sensors.org
6267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006268F: Documentation/hwmon/w83793
6269F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006270
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271W83L51xD SD/MMC CARD INTERFACE DRIVER
6272P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006273M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006275F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006277WATCHDOG DEVICE DRIVERS
6278P: Wim Van Sebroeck
6279M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006280T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006282F: Documentation/watchdog/
6283F: drivers/watchdog/
6284F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6287P: Jean Tourrilhes
6288M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006289L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006292F: Documentation/networking/wavelan.txt
6293F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
6295WD7000 SCSI DRIVER
6296P: Miroslav Zagorac
6297M: zaga@fly.cc.fer.hr
6298L: linux-scsi@vger.kernel.org
6299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006300F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006302WIMAX STACK
6303P: Inaky Perez-Gonzalez
6304M: inaky.perez-gonzalez@intel.com
6305M: linux-wimax@intel.com
6306L: wimax@linuxwimax.org
6307S: Supported
6308W: http://linuxwimax.org
6309
David Vrabel18332a82008-09-17 16:34:44 +01006310WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6311P: David Vrabel
6312M: david.vrabel@csr.com
6313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006314F: include/linux/wlp.h
6315F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006316
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006317WISTRON LAPTOP BUTTON DRIVER
6318P: Miloslav Trmac
6319M: mitr@volny.cz
6320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006321F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006322
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323WL3501 WIRELESS PCMCIA CARD DRIVER
6324P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006325M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006326L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006327W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006329F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330
Mark Brownfebf1df2008-04-02 00:51:09 -04006331WM97XX TOUCHSCREEN DRIVERS
6332P: Mark Brown
6333M: broonie@opensource.wolfsonmicro.com
6334P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006335M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006336L: linux-input@vger.kernel.org
6337T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6338W: http://opensource.wolfsonmicro.com/node/7
6339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006340F: drivers/input/touchscreen/*wm97*
6341F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006342
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343X.25 NETWORK LAYER
6344P: Henner Eisen
6345M: eis@baty.hanse.de
6346L: linux-x25@vger.kernel.org
6347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: Documentation/networking/x25*
6349F: include/net/x25*
6350F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006352X86 ARCHITECTURE (32-BIT AND 64-BIT)
6353P: Thomas Gleixner
6354M: tglx@linutronix.de
6355P: Ingo Molnar
6356M: mingo@redhat.com
6357P: H. Peter Anvin
6358M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006359M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006360T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: Documentation/x86/
6363F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006364
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006365XEN HYPERVISOR INTERFACE
6366P: Jeremy Fitzhardinge
6367M: jeremy@xensource.com
6368P: Chris Wright
6369M: chrisw@sous-sol.org
6370L: virtualization@lists.osdl.org
6371L: xen-devel@lists.xensource.com
6372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006373F: arch/x86/xen/
6374F: drivers/*/xen-*front.c
6375F: drivers/xen/
6376F: arch/x86/include/asm/xen/
6377F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006378
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379XFS FILESYSTEM
6380P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006381P: Felix Blyakher
6382M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006384L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006386T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006388F: Documentation/filesystems/xfs.txt
6389F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006391XILINX SYSTEMACE DRIVER
6392P: Grant Likely
6393M: grant.likely@secretlab.ca
6394W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006397
Peter Korsgaard238b8722006-12-06 20:35:17 -08006398XILINX UARTLITE SERIAL DRIVER
6399P: Peter Korsgaard
6400M: jacmet@sunsite.dk
6401L: linux-serial@vger.kernel.org
6402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006404
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405YAM DRIVER FOR AX.25
6406P: Jean-Paul Roubelat
6407M: jpr@f6fbb.org
6408L: linux-hams@vger.kernel.org
6409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006410F: drivers/net/hamradio/yam*
6411F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Henkaf64a5e2005-10-12 15:02:56 +02006413YEALINK PHONE DRIVER
6414P: Henk Vergonet
6415M: Henk.Vergonet@gmail.com
6416L: usbb2k-api-dev@nongnu.org
6417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006418F: Documentation/input/yealink.txt
6419F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006420
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421Z8530 DRIVER FOR AX.25
6422P: Joerg Reuter
6423M: jreuter@yaina.de
6424W: http://yaina.de/jreuter/
6425W: http://www.qsl.net/dl1bke/
6426L: linux-hams@vger.kernel.org
6427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006428F: Documentation/networking/z8530drv.txt
6429F: drivers/net/hamradio/*scc.c
6430F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006432ZD1211RW WIRELESS DRIVER
6433P: Daniel Drake
6434M: dsd@gentoo.org
6435P: Ulrich Kunitz
6436M: kune@deine-taler.de
6437W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006438L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006439L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006441F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006445L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006447T: Mercurial http://linuxtv.org/hg/v4l-dvb
6448S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006449F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006451ZS DECSTATION Z85C30 SERIAL DRIVER
6452P: Maciej W. Rozycki
6453M: macro@linux-mips.org
6454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006455F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006456
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457THE REST
6458P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006459M: torvalds@linux-foundation.org
6460L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006461T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006463F: *
6464F: */