blob: 053bf8f5c71d227eb70ac647230db33530fc57be [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
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461CODA FILE SYSTEM
1462P: Jan Harkes
1463M: jaharkes@cs.cmu.edu
1464M: coda@cs.cmu.edu
1465L: codalist@coda.cs.cmu.edu
1466W: http://www.coda.cs.cmu.edu/
1467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001468F: Documentation/filesystems/coda.txt
1469F: fs/coda/
1470F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001472COMMON INTERNET FILE SYSTEM (CIFS)
1473P: Steve French
1474M: sfrench@samba.org
1475L: linux-cifs-client@lists.samba.org
1476L: samba-technical@lists.samba.org
1477W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001478T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001480F: Documentation/filesystems/cifs.txt
1481F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483COMPACTPCI HOTPLUG CORE
1484P: Scott Murray
1485M: scottm@somanetworks.com
1486M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001487L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001489F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1492P: Scott Murray
1493M: scottm@somanetworks.com
1494M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001495L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001497F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499COMPACTPCI HOTPLUG GENERIC DRIVER
1500P: Scott Murray
1501M: scottm@somanetworks.com
1502M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001503L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001505F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001507COMPAL LAPTOP SUPPORT
1508P: Cezary Jackiewicz
1509M: cezary.jackiewicz@gmail.com
1510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001511F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513COMPUTONE INTELLIPORT MULTIPORT CARD
1514P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001515M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001518F: Documentation/serial/computone.txt
1519F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Simon Arlott949be0f2007-03-06 02:47:46 -08001521CONEXANT ACCESSRUNNER USB DRIVER
1522P: Simon Arlott
1523M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001524L: accessrunner-general@lists.sourceforge.net
1525W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001527F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001528
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001529CONFIGFS
1530P: Joel Becker
1531M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001533F: fs/configfs/
1534F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001536CONTROL GROUPS (CGROUPS)
1537P: Paul Menage
1538M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001539P: Li Zefan
1540M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001541L: containers@lists.linux-foundation.org
1542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001543F: include/linux/cgroup*
1544F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001545
Rudolf Marekbebe4672007-05-08 17:22:02 +02001546CORETEMP HARDWARE MONITORING DRIVER
1547P: Rudolf Marek
1548M: r.marek@assembler.cz
1549L: lm-sensors@lm-sensors.org
1550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: Documentation/hwmon/coretemp
1552F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554COSA/SRP SYNC SERIAL DRIVER
1555P: Jan "Yenya" Kasprzak
1556M: kas@fi.muni.cz
1557W: http://www.fi.muni.cz/~kas/cosa/
1558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001559F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Florian Fainelli4371ee32009-06-01 02:43:17 -07001561CPMAC ETHERNET DRIVER
1562P: Florian Fainelli
1563M: florian@openwrt.org
1564L: netdev@vger.kernel.org
1565S: Maintained
1566F: drivers/net/cpmac.c
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568CPU FREQUENCY DRIVERS
1569P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001570M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001571L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001573T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001575F: arch/x86/kernel/cpu/cpufreq/
1576F: drivers/cpufreq/
1577F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579CPUID/MSR DRIVER
1580P: H. Peter Anvin
1581M: hpa@zytor.com
1582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001583F: arch/x86/kernel/cpuid.c
1584F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Paul Jacksoned90fb42005-09-27 21:45:37 -07001586CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001587P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001588M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001589W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001590W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001591S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001592F: Documentation/cgroups/cpusets.txt
1593F: include/linux/cpuset.h
1594F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001597W: http://sourceforge.net/projects/cramfs/
1598S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001599F: Documentation/filesystems/cramfs.txt
1600F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602CRIS PORT
1603P: Mikael Starvik
1604M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001605P: Jesper Nilsson
1606M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607L: dev-etrax@axis.com
1608W: http://developer.axis.com
1609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612CRYPTO API
1613P: Herbert Xu
1614M: herbert@gondor.apana.org.au
1615P: David S. Miller
1616M: davem@davemloft.net
1617L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001618T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: Documentation/crypto/
1621F: arch/*/crypto/
1622F: crypto/
1623F: drivers/crypto/
1624F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Neil Horman5b07bd52009-02-05 16:03:04 +11001626CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1627P: Neil Horman
1628M: nhorman@tuxdriver.com
1629L: linux-crypto@vger.kernel.org
1630S: Maintained
1631
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001632CS5535 Audio ALSA driver
1633P: Jaya Kumar
1634M: jayakumar.alsa@gmail.com
1635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001636F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001637
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001638CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001639P: Hans Verkuil
1640M: hverkuil@xs4all.nl
1641P: Andy Walls
1642M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001643L: ivtv-devel@ivtvdriver.org
1644L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001645L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001646T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001647W: http://linuxtv.org
1648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001649F: Documentation/video4linux/cx18.txt
1650F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001651
Steve Wisee5ec3782008-05-20 14:06:33 -07001652CXGB3 ETHERNET DRIVER (CXGB3)
1653P: Divy Le Ray
1654M: divy@chelsio.com
1655L: netdev@vger.kernel.org
1656W: http://www.chelsio.com
1657S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001658F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001659
1660CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1661P: Steve Wise
1662M: swise@chelsio.com
1663L: general@lists.openfabrics.org
1664W: http://www.openfabrics.org
1665S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001666F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668CYBERPRO FB DRIVER
1669P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001670M: linux@arm.linux.org.uk
1671L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672W: http://www.arm.linux.org.uk/
1673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001674F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676CYCLADES 2X SYNC CARD DRIVER
1677P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001678M: acme@ghostprotocols.net
1679W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001685S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/char/cyclades.c
1687F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001691S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001692F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694DAMA SLAVE for AX.25
1695P: Joerg Reuter
1696M: jreuter@yaina.de
1697W: http://yaina.de/jreuter/
1698W: http://www.qsl.net/dl1bke/
1699L: linux-hams@vger.kernel.org
1700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001701F: net/ax25/af_ax25.c
1702F: net/ax25/ax25_dev.c
1703F: net/ax25/ax25_ds_*
1704F: net/ax25/ax25_in.c
1705F: net/ax25/ax25_out.c
1706F: net/ax25/ax25_timer.c
1707F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001709DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1710P: Tobias Ringstrom
1711M: tori@unhappy.mine.nu
1712L: netdev@vger.kernel.org
1713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001714F: Documentation/networking/dmfe.txt
1715F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001716
1717DC390/AM53C974 SCSI driver
1718P: Kurt Garloff
1719M: garloff@suse.de
1720W: http://www.garloff.de/kurt/linux/dc390/
1721P: Guennadi Liakhovetski
1722M: g.liakhovetski@gmx.de
1723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001724F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726DC395x SCSI driver
1727P: Oliver Neukum
1728M: oliver@neukum.name
1729P: Ali Akcaagac
1730M: aliakc@web.de
1731P: Jamie Lenehan
1732M: lenehan@twibble.org
1733W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001734L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735L: http://lists.twibble.org/mailman/listinfo/dc395x/
1736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001737F: Documentation/scsi/dc395x.txt
1738F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001740DCCP PROTOCOL
1741P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001742M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001743L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001744W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001746F: include/linux/dccp.h
1747F: include/linux/tfrc.h
1748F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001751P: Christine Caulfield
1752M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753W: http://linux-decnet.sourceforge.net
1754L: linux-decnet-user@lists.sourceforge.net
1755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001756F: Documentation/networking/decnet.txt
1757F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759DEFXX FDDI NETWORK DRIVER
1760P: Maciej W. Rozycki
1761M: macro@linux-mips.org
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001765DELL LAPTOP DRIVER
1766P: Matthew Garrett
1767M: mjg59@srcf.ucam.org
1768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771DELL LAPTOP SMM DRIVER
1772P: Massimo Dal Zotto
1773M: dz@debian.org
1774W: http://www.debian.org/~dz/i8k/
1775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: drivers/char/i8k.c
1777F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Doug Warzecha90563ec2005-09-06 15:17:15 -07001779DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1780P: Doug Warzecha
1781M: Douglas_Warzecha@dell.com
1782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001783F: Documentation/dcdbas.txt
1784F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001785
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001786DELL WMI EXTRAS DRIVER
1787P: Matthew Garrett
1788M: mjg59@srcf.ucam.org
1789S: Maintained
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791DEVICE NUMBER REGISTRY
1792P: Torben Mathiasen
1793M: device@lanana.org
1794W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795S: Maintained
1796
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001797DEVICE-MAPPER (LVM)
1798P: Alasdair Kergon
1799L: dm-devel@redhat.com
1800W: http://sources.redhat.com/dm
1801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001802F: Documentation/device-mapper/
1803F: drivers/md/dm*
1804F: include/linux/device-mapper.h
1805F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807DIGI INTL. EPCA DRIVER
1808P: Digi International, Inc
1809M: Eng.Linux@digi.com
1810L: Eng.Linux@digi.com
1811W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001812S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001813F: Documentation/serial/digiepca.txt
1814F: drivers/char/epca*
1815F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Randy Dunlape7839f22008-10-12 16:11:45 -07001817DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001818P: Eric Paris
1819M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001821F: Documentation/filesystems/dnotify.txt
1822F: fs/notify/dnotify/
1823F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825DISK GEOMETRY AND PARTITION HANDLING
1826P: Andries Brouwer
1827M: aeb@cwi.nl
1828W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1829W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1830W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1831S: Maintained
1832
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001833DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834P: Jan Kara
1835M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001837F: Documentation/filesystems/quota.txt
1838F: fs/quota/
1839F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Randy Dunlape7839f22008-10-12 16:11:45 -07001841DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001842P: Christine Caulfield
1843M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001844P: David Teigland
1845M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001846L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001847W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001848T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001850F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001851
Dan Williamsb3e5f262007-08-07 10:26:35 -07001852DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001853P: Maciej Sosnowski
1854M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001855P: Dan Williams
1856M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/dma/
1859F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001860
Juerg Haefligerb8250372007-06-09 10:11:16 -04001861DME1737 HARDWARE MONITOR DRIVER
1862P: Juerg Haefliger
1863M: juergh@gmail.com
1864L: lm-sensors@lm-sensors.org
1865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001866F: Documentation/hwmon/dme1737
1867F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001868
Martin Waitzba483d52005-06-17 13:20:59 -07001869DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001870P: Randy Dunlap
1871M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001872S: Maintained
1873
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001874DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001875P: Shaohua Li
1876M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001877L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001879F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001880
Joe Perches7d2c86b2009-04-07 20:59:01 -07001881DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001882P: Randy Dunlap
1883M: rdunlap@xenotime.net
1884L: linux-doc@vger.kernel.org
1885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001886F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888DOUBLETALK DRIVER
1889P: James R. Van Zandt
1890M: jrv@vanzandt.mv.com
1891L: blinux-list@redhat.com
1892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001893F: drivers/char/dtlk.c
1894F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001896DPT_I2O SCSI RAID DRIVER
1897P: Adaptec OEM Raid Solutions
1898M: aacraid@adaptec.com
1899L: linux-scsi@vger.kernel.org
1900W: http://www.adaptec.com/
1901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001902F: drivers/scsi/dpt*
1903F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905DRIVER CORE, KOBJECTS, AND SYSFS
1906P: Greg Kroah-Hartman
1907M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001908T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001910F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001911F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001912F: fs/sysfs/
1913F: include/linux/kobj*
1914F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916DRM DRIVERS
1917P: David Airlie
1918M: airlied@linux.ie
1919L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001920T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001922F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001925P: Francois Romieu
1926M: romieu@fr.zoreil.com
1927L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001929F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001931DZ DECSTATION DZ11 SERIAL DRIVER
1932P: Maciej W. Rozycki
1933M: macro@linux-mips.org
1934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001935F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937EATA-DMA SCSI DRIVER
1938P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001939M: mike@i-Connect.Net
1940L: linux-eata@i-connect.net
1941L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001943F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945EATA ISA/EISA/PCI SCSI DRIVER
1946P: Dario Ballabio
1947M: ballabio_dario@emc.com
1948L: linux-scsi@vger.kernel.org
1949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001950F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952EATA-PIO SCSI DRIVER
1953P: Michael Neuffer
1954M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001955L: linux-eata@i-connect.net
1956L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001958F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960EBTABLES
1961P: Bart De Schuymer
1962M: bart.de.schuymer@pandora.be
1963L: ebtables-user@lists.sourceforge.net
1964L: ebtables-devel@lists.sourceforge.net
1965W: http://ebtables.sourceforge.net/
1966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001967F: include/linux/netfilter_bridge/ebt_*.h
1968F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Michael Halcrow237fead2006-10-04 02:16:22 -07001970ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001971P: Tyler Hicks
1972M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07001973P: Dustin Kirkland
1974M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001975L: ecryptfs-devel@lists.launchpad.net
1976W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001977S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001978F: Documentation/filesystems/ecryptfs.txt
1979F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001980
Alan Coxda9bb1d2006-01-18 17:44:13 -08001981EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001982P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001983M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001984L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001985W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001987F: Documentation/edac.txt
1988F: drivers/edac/edac_*
1989F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001990
Borislav Petkovc476c232009-05-20 20:31:58 +02001991EDAC-AMD64
1992P: Doug Thompson
1993M: dougthompson@xmission.com
1994P: Borislav Petkov
1995M: borislav.petkov@amd.com
1996L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1997W: bluesmoke.sourceforge.net
1998S: Supported
1999F: drivers/edac/amd64_edac*
2000
Dave Peterson0e438e32006-03-26 01:38:55 -08002001EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002002P: Mark Gross
2003M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002004P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002005M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002006L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002007W: bluesmoke.sourceforge.net
2008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002009F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002010
2011EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002012P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002013M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002014L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002015W: bluesmoke.sourceforge.net
2016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002018
Douglas Thompson6bc78402007-07-19 01:50:12 -07002019EDAC-I82443BXGX
2020P: Tim Small
2021M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002022L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002023W: bluesmoke.sourceforge.net
2024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002026
2027EDAC-I3000
2028P: Jason Uhlenkott
2029M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002030L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002031W: bluesmoke.sourceforge.net
2032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002033F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002034
2035EDAC-I5000
2036P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002037M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002038L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002039W: bluesmoke.sourceforge.net
2040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002041F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002042
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002043EDAC-I5400
2044P: Mauro Carvalho Chehab
2045M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002046L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002047W: bluesmoke.sourceforge.net
2048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002049F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002050
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002051EDAC-I82975X
2052P: Ranganathan Desikan
2053P: Arvind R.
2054M: rdesikan@jetzbroadband.com
2055M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002056L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002057W: bluesmoke.sourceforge.net
2058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002060
2061EDAC-PASEMI
2062P: Egor Martovetsky
2063M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002064L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002065W: bluesmoke.sourceforge.net
2066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002068
Dave Peterson0e438e32006-03-26 01:38:55 -08002069EDAC-R82600
2070P: Tim Small
2071M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002072L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002073W: bluesmoke.sourceforge.net
2074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002075F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002076
Eric Coopere59f8792008-03-13 12:55:46 +01002077EEEPC LAPTOP EXTRAS DRIVER
2078P: Corentin Chary
2079M: corentincj@iksaif.net
2080L: acpi4asus-user@lists.sourceforge.net
2081W: http://sourceforge.net/projects/acpi4asus
2082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002083F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002084
Josh Triplett0bee8d22006-07-30 03:03:58 -07002085EFS FILESYSTEM
2086W: http://aeschi.ch.eu.org/efs/
2087S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002088F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002089
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002090EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002091P: Hoang-Nam Nguyen
2092M: hnguyen@de.ibm.com
2093P: Christoph Raisch
2094M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002095L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002097F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002098
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002099EMBEDDED LINUX
2100P: Paul Gortmaker
2101M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002102P: Matt Mackall
2103M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002104P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002105M: dwmw2@infradead.org
2106L: linux-embedded@vger.kernel.org
2107S: Maintained
2108
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002109EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002110P: James Smart
2111M: james.smart@emulex.com
2112L: linux-scsi@vger.kernel.org
2113W: http://sourceforge.net/projects/lpfcxxxx
2114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002116
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002117ENE CB710 FLASH CARD READER DRIVER
2118P: Michał Mirosław
2119M: mirq-linux@rere.qmqm.pl
2120L: linux-kernel@vger.kernel.org
2121S: Maintained
2122F: drivers/misc/cb710/
2123F: drivers/mmc/host/cb710-mmc.*
2124F: include/linux/cb710.h
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126EPSON 1355 FRAMEBUFFER DRIVER
2127P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002128M: ch@murgatroid.com
2129P: Christopher Hoover
2130M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002132F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002134EPSON S1D13XXX FRAMEBUFFER DRIVER
2135P: Kristoffer Ericson
2136M: kristoffer.ericson@gmail.com
2137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002138F: drivers/video/s1d13xxxfb.c
2139F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141ETHEREXPRESS-16 NETWORK DRIVER
2142P: Philip Blundell
2143M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002144L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002146F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148ETHERNET BRIDGE
2149P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002150M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002151L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002152W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: include/linux/netfilter_bridge/
2155F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157ETHERTEAM 16I DRIVER
2158P: Mika Kuoppala
2159M: miku@iki.fi
2160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002161F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002164L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002166F: Documentation/filesystems/ext2.txt
2167F: fs/ext2/
2168F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002171P: Stephen Tweedie
2172M: sct@redhat.com
2173P: Andrew Morton
2174M: akpm@linux-foundation.org
2175P: Andreas Dilger
2176M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002177L: linux-ext4@vger.kernel.org
2178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002179F: Documentation/filesystems/ext3.txt
2180F: fs/ext3/
2181F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002182
2183EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002184P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002185M: tytso@mit.edu
2186P: Andreas Dilger
2187M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002188L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002189W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002191F: Documentation/filesystems/ext4.txt
2192F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Jean Delvaree53004e2006-01-09 23:26:14 +01002194F71805F HARDWARE MONITORING DRIVER
2195P: Jean Delvare
2196M: khali@linux-fr.org
2197L: lm-sensors@lm-sensors.org
2198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002199F: Documentation/hwmon/f71805f
2200F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202FARSYNC SYNCHRONOUS DRIVER
2203P: Kevin Curtis
2204M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205W: http://www.farsite.co.uk/
2206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002207F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Akinobu Mitac5408b82007-04-23 14:41:20 -07002209FAULT INJECTION SUPPORT
2210P: Akinobu Mita
2211M: akinobu.mita@gmail.com
2212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002213F: Documentation/fault-injection/
2214F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002216FILE LOCKING (flock() and fcntl()/lockf())
2217P: Matthew Wilcox
2218M: matthew@wil.cx
2219L: linux-fsdevel@vger.kernel.org
2220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002221F: include/linux/fcntl.h
2222F: include/linux/fs.h
2223F: fs/fcntl.c
2224F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002225
2226FILESYSTEMS (VFS and infrastructure)
2227P: Alexander Viro
2228M: viro@zeniv.linux.org.uk
2229L: linux-fsdevel@vger.kernel.org
2230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002232
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002233FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2234P: Riku Voipio
2235M: riku.vipio@iki.fi
2236L: lm-sensors@lm-sensors.org
2237S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002238F: drivers/hwmon/f75375s.c
2239F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002240
Joe Perches7d2c86b2009-04-07 20:59:01 -07002241FIREWIRE SUBSYSTEM
2242P: Kristian Hoegsberg
2243M: krh@redhat.com
2244P: Stefan Richter
2245M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002246L: linux1394-devel@lists.sourceforge.net
2247W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002248T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002250F: drivers/firewire/
2251F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252
2253FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002254S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002255F: Documentation/firmware_class/
2256F: drivers/base/firmware*.c
2257F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002258
2259FPU EMULATOR
2260P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002261M: billm@melbpc.org.au
2262W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002264F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002265
2266FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2267P: Mike McLagan
2268M: mike.mclagan@linux.org
2269L: netdev@vger.kernel.org
2270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002271F: drivers/net/wan/dlci.c
2272F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274FRAMEBUFFER LAYER
2275P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002276M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002277L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278W: http://linux-fbdev.sourceforge.net/
2279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: Documentation/fb/
2281F: drivers/video/fb*
2282F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Zhang Wei173acc72008-03-01 07:42:48 -07002284FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002285P: Li Yang
2286M: leoli@freescale.com
2287P: Zhang Wei
2288M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002289L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002291F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002292
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002293FREESCALE I2C CPM DRIVER
2294P: Jochen Friedrich
2295M: jochen@scram.de
2296L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002297L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002299F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002300
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002301FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2302P: Sascha Hauer
2303M: kernel@pengutronix.de
2304L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2305L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: arch/arm/plat-mxc/include/mach/imxfb.h
2308F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002309
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002310FREESCALE SOC FS_ENET DRIVER
2311P: Pantelis Antoniou
2312M: pantelis.antoniou@gmail.com
2313P: Vitaly Bordug
2314M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002315L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002316L: netdev@vger.kernel.org
2317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: drivers/net/fs_enet/
2319F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002320
Timur Tabid9e9d822008-04-24 08:45:26 +10002321FREESCALE QUICC ENGINE LIBRARY
2322P: Timur Tabi
2323M: timur@freescale.com
2324L: linuxppc-dev@ozlabs.org
2325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002326F: arch/powerpc/sysdev/qe_lib/
2327F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002328
Li Yanga7205b32007-04-23 10:38:18 -07002329FREESCALE HIGHSPEED USB DEVICE DRIVER
2330P: Li Yang
2331M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002332L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002333L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002335F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002336
Li Yangbeaf53b2007-05-25 13:54:02 +08002337FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2338P: Li Yang
2339M: leoli@freescale.com
2340L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002341L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002343F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002344
Timur Tabid9e9d822008-04-24 08:45:26 +10002345FREESCALE QUICC ENGINE UCC UART DRIVER
2346P: Timur Tabi
2347M: timur@freescale.com
2348L: linuxppc-dev@ozlabs.org
2349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002350F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002351
2352FREESCALE SOC SOUND DRIVERS
2353P: Timur Tabi
2354M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002355L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002356L: linuxppc-dev@ozlabs.org
2357S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002358F: sound/soc/fsl/fsl*
2359F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361FREEVXFS FILESYSTEM
2362P: Christoph Hellwig
2363M: hch@infradead.org
2364W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Pavel Machek71038f52009-01-15 13:51:02 -08002368FREEZER
2369P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002370M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002371P: Rafael J. Wysocki
2372M: rjw@sisk.pl
2373L: linux-pm@lists.linux-foundation.org
2374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002375F: Documentation/power/freezing-of-tasks.txt
2376F: include/linux/freezer.h
2377F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002378
David Howellsa5432f52009-04-20 15:46:45 +01002379FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2380P: David Howells
2381M: dhowells@redhat.com
2382L: linux-cachefs@redhat.com
2383S: Supported
2384F: Documentation/filesystems/caching/
2385F: fs/fscache/
2386F: include/linux/fscache*.h
2387
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002388FTRACE
2389P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002390M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: Documentation/ftrace.txt
2393F: arch/*/*/*/ftrace.h
2394F: arch/*/kernel/ftrace.c
2395F: include/*/ftrace.h
2396F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002397
David Howells5ab7ffe2007-04-10 15:10:45 +01002398FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399P: David Howells
2400M: dhowells@redhat.com
2401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002402F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Jonathan Woithe20b93732008-06-11 10:14:56 +09302404FUJITSU LAPTOP EXTRAS
2405P: Jonathan Woithe
2406M: jwoithe@physics.adelaide.edu.au
2407L: linux-acpi@vger.kernel.org
2408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002409F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302410
Miklos Szeredi04578f12005-09-09 13:10:22 -07002411FUSE: FILESYSTEM IN USERSPACE
2412P: Miklos Szeredi
2413M: miklos@szeredi.hu
2414L: fuse-devel@lists.sourceforge.net
2415W: http://fuse.sourceforge.net/
2416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: fs/fuse/
2418F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2421P: Rik Faith
2422M: faith@cs.unc.edu
2423L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002424S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002425F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427GDT SCSI DISK ARRAY CONTROLLER DRIVER
2428P: Achim Leubner
2429M: achim_leubner@adaptec.com
2430L: linux-scsi@vger.kernel.org
2431W: http://www.icp-vortex.com/
2432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002433F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002435GENERIC GPIO I2C DRIVER
2436P: Haavard Skinnemoen
2437M: hskinnemoen@atmel.com
2438S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002439F: drivers/i2c/busses/i2c-gpio.c
2440F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002441
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002442GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443P: Krzysztof Halasa
2444M: khc@pm.waw.pl
2445W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: drivers/net/wan/c101.c
2448F: drivers/net/wan/hd6457*
2449F: drivers/net/wan/hdlc*
2450F: drivers/net/wan/n2.c
2451F: drivers/net/wan/pc300too.c
2452F: drivers/net/wan/pci200syn.c
2453F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002455GFS2 FILE SYSTEM
2456P: Steven Whitehouse
2457M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002458L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002459W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002460T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2461T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002463F: Documentation/filesystems/gfs2*.txt
2464F: fs/gfs2/
2465F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002466
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002467GIGASET ISDN DRIVERS
2468P: Hansjoerg Lipp
2469M: hjlipp@web.de
2470P: Tilman Schmidt
2471M: tilman@imap.cc
2472L: gigaset307x-common@lists.sourceforge.net
2473W: http://gigaset307x.sourceforge.net/
2474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/isdn/README.gigaset
2476F: drivers/isdn/gigaset/
2477F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002478
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002479HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002480P: Frank Seidel
2481M: frank@f-seidel.de
2482L: lm-sensors@lm-sensors.org
2483W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002485F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002486
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002487HYPERVISOR VIRTUAL CONSOLE DRIVER
2488L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002489S: Odd Fixes
2490F: drivers/char/hvc_*
2491
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002492GSPCA FINEPIX SUBDRIVER
2493P: Frank Zago
2494M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002495L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002496T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002498F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002499
2500GSPCA M5602 SUBDRIVER
2501P: Erik Andren
2502M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002503L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002504T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002507
2508GSPCA PAC207 SONIXB SUBDRIVER
2509P: Hans de Goede
2510M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002511L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002512T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002514F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002515
2516GSPCA T613 SUBDRIVER
2517P: Leandro Costantino
2518M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002519L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002520T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002522F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002523
2524GSPCA USB WEBCAM DRIVER
2525P: Jean-Francois Moine
2526M: moinejf@free.fr
2527W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002528L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002529T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002532
Jean Delvare5b543962005-08-15 19:51:02 +02002533HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002534L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002535W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002536S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002537F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002538
Michael Buesch844dd052006-06-26 00:24:59 -07002539HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002540S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002541F: Documentation/hw_random.txt
2542F: drivers/char/hw_random/
2543F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545HARMONY SOUND DRIVER
2546P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002547M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002548L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002550F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552HAYES ESP SERIAL DRIVER
2553P: Andrew J. Robinson
2554M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555W: http://www.nyx.net/~arobinso
2556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002557F: Documentation/serial/hayes-esp.txt
2558F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002559
2560HEWLETT-PACKARD SMART2 RAID DRIVER
2561P: Chirag Kantharia
2562M: chirag.kantharia@hp.com
2563L: iss_storagedev@hp.com
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/blockdev/cpqarray.txt
2566F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002567
2568HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2569P: Mike Miller
2570M: mike.miller@hp.com
2571L: iss_storagedev@hp.com
2572S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002573F: Documentation/blockdev/cciss.txt
2574F: drivers/block/cciss*
2575F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577HFS FILESYSTEM
2578P: Roman Zippel
2579M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: Documentation/filesystems/hfs.txt
2582F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584HGA FRAMEBUFFER DRIVER
2585P: Ferenc Bakonyi
2586M: fero@drama.obuda.kando.hu
2587L: linux-nvidia@lists.surfsouth.com
2588W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002590F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002592HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002593P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002594M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002595P: Rafael J. Wysocki
2596M: rjw@sisk.pl
2597L: linux-pm@lists.linux-foundation.org
2598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002599F: arch/x86/power/
2600F: drivers/base/power/
2601F: kernel/power/
2602F: include/linux/suspend.h
2603F: include/linux/freezer.h
2604F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002605F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002606
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002607HID CORE LAYER
2608P: Jiri Kosina
2609M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002610L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002611T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002613F: drivers/hid/
2614F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002615
Ingo Molnar38bed542007-02-22 09:09:34 +01002616HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2617P: Thomas Gleixner
2618M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002620F: Documentation/timers/
2621F: kernel/hrtimer.c
2622F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624HIGH-SPEED SCC DRIVER FOR AX.25
2625P: Klaus Kudielka
2626M: klaus.kudielka@ieee.org
2627L: linux-hams@vger.kernel.org
2628W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002630F: drivers/net/hamradio/dmascc.c
2631F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002633HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2634P: HighPoint Linux Team
2635M: linux@highpoint-tech.com
2636W: http://www.highpoint-tech.com
2637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002638F: Documentation/scsi/hptiop.txt
2639F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641HIPPI
2642P: Jes Sorensen
2643M: jes@trained-monkey.org
2644L: linux-hippi@sunsite.dk
2645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002646F: include/linux/hippidevice.h
2647F: include/linux/if_hippi.h
2648F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Jouni Malinenff1d2762005-05-12 22:54:16 -04002650HOST AP DRIVER
2651P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002652M: j@w1.fi
2653L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002654L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002655W: http://hostap.epitest.fi/
2656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002657F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002658
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002659HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2660P: Carlos Corbacho
2661M: carlos@strangeworlds.co.uk
2662S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002663F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002664
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002665HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2666P: Jaroslav Kysela
2667M: perex@perex.cz
2668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002670
Joe Perches7d2c86b2009-04-07 20:59:01 -07002671HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002672P: Clemens Ladisch
2673M: clemens@ladisch.de
2674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002675F: Documentation/timers/hpet.txt
2676F: drivers/char/hpet.c
2677F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002678
2679HPET: i386
2680P: Venkatesh Pallipadi (Venki)
2681M: venkatesh.pallipadi@intel.com
2682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002683F: arch/x86/kernel/hpet.c
2684F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002685
2686HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002687P: Vojtech Pavlik
2688M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002689S: Maintained
2690
Joe Perches7d2c86b2009-04-07 20:59:01 -07002691HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002692P: Bob Picco
2693M: bob.picco@hp.com
2694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002696
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697HPFS FILESYSTEM
2698P: Mikulas Patocka
2699M: mikulas@artax.karlin.mff.cuni.cz
2700W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002702F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Joe Perches7d2c86b2009-04-07 20:59:01 -07002704HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002705P: Jan Dumon
2706M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002707W: http://www.pharscape.org
2708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002710
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002711HTCPEN TOUCHSCREEN DRIVER
2712P: Pau Oliva Fora
2713M: pof@eslack.org
2714L: linux-input@vger.kernel.org
2715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002716F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718HUGETLB FILESYSTEM
2719P: William Irwin
2720M: wli@holomorphy.com
2721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002722F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002724I2C/SMBUS STUB DRIVER
2725P: Mark M. Hoffman
2726M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002727L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002730
Jean Delvare5b543962005-08-15 19:51:02 +02002731I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002732P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002734P: Ben Dooks (embedded platforms)
2735M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002736L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002737W: http://i2c.wiki.kernel.org/
2738T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002740F: Documentation/i2c/
2741F: drivers/i2c/
2742F: include/linux/i2c.h
2743F: include/linux/i2c-dev.h
2744F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Till Harbaume8c76ee2007-05-01 23:26:35 +02002746I2C-TINY-USB DRIVER
2747P: Till Harbaum
2748M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002749L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002750W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002752F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002755P: H. Peter Anvin
2756M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761P: H. Peter Anvin
2762M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002763T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764S: Maintained
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766IA64 (Itanium) PLATFORM
2767P: Tony Luck
2768M: tony.luck@intel.com
2769L: linux-ia64@vger.kernel.org
2770W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002771T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002773F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775IBM MCA SCSI SUBSYSTEM DRIVER
2776P: Michael Lang
2777M: langa2@kph.uni-mainz.de
2778W: http://www.uni-mainz.de/~langm000/linux.html
2779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002780F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782IBM Power Linux RAID adapter
2783P: Brian King
2784M: brking@us.ibm.com
2785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002786F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788IBM ServeRAID RAID DRIVER
2789P: Jack Hammer
2790P: Dave Jeffery
2791M: ipslinux@adaptec.com
2792W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002793S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002796IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002798M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002800T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: Documentation/ide/
2803F: drivers/ide/
2804F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002806IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002807P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002808M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002809L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: Documentation/cdrom/ide-cd
2812F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Andy Henroid27471fd2008-10-09 11:45:22 -07002814IDLE-I7300
2815P: Andy Henroid
2816M: andrew.d.henroid@intel.com
2817L: linux-pm@lists.linux-foundation.org
2818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002820
Joe Perches7d2c86b2009-04-07 20:59:01 -07002821IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002823M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002824P: Stefan Richter
2825M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826L: linux1394-devel@lists.sourceforge.net
2827W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002828T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Joe Perches7d2c86b2009-04-07 20:59:01 -07002832IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833P: Dan Dennedy
2834M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002835P: Stefan Richter
2836M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002840
Sergey Lapin02cf2282009-06-08 12:18:50 +00002841IEEE 802.15.4 SUBSYSTEM
2842P: Dmitry Eremin-Solenikov
2843M: dbaryshkov@gmail.com
2844P: Sergey Lapin
2845M: slapin@ossfans.org
2846L: linux-zigbee-devel@lists.sourceforge.net
2847W: http://apps.sourceforge.net/trac/linux-zigbee
2848T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git
2849S: Maintained
2850F: net/ieee802154/
2851F: drivers/ieee801254/
2852
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002853INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2854P: Mimi Zohar
2855M: zohar@us.ibm.com
2856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002857F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002860L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002861S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002862F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864INFINIBAND SUBSYSTEM
2865P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002866M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002868M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002870M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002871L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002873T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002875F: Documentation/infiniband/
2876F: drivers/infiniband/
2877F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Robert Lovec9f04f52005-07-15 12:21:07 -04002879INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002880P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002881M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002882P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002883M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002884P: Eric Paris
2885M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002887F: Documentation/filesystems/inotify.txt
2888F: fs/notify/inotify/
2889F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002891INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2892P: Dmitry Torokhov
2893M: dmitry.torokhov@gmail.com
2894M: dtor@mail.ru
2895L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002896T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002898F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002899
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002900INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002901P: Sylvain Meyer
2902M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002903L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: Documentation/fb/intelfb.txt
2906F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002909P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002910M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002911L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002913F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302915INTEL MENLOW THERMAL DRIVER
2916P: Sujith Thomas
2917M: sujith.thomas@intel.com
2918L: linux-acpi@vger.kernel.org
2919W: http://www.lesswatts.org/projects/acpi/
2920S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302922
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923INTEL IA32 MICROCODE UPDATE SUPPORT
2924P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002925M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002927F: arch/x86/kernel/microcode_core.c
2928F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002930INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002931P: Maciej Sosnowski
2932M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002933S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002934F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002935
David Woodhouse6c8909b2008-10-18 16:12:17 +01002936INTEL IOMMU (VT-d)
2937P: David Woodhouse
2938M: dwmw2@infradead.org
2939L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002940T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/pci/intel-iommu.c
2943F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002944
Dan Williamsb3e5f262007-08-07 10:26:35 -07002945INTEL IOP-ADMA DMA DRIVER
2946P: Dan Williams
2947M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002948S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002949F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002950
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002951INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2952P: Krzysztof Halasa
2953M: khc@pm.waw.pl
2954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002955F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2956F: arch/arm/mach-ixp4xx/include/mach/npe.h
2957F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2958F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2959F: drivers/net/arm/ixp4xx_eth.c
2960F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002961
Michael Buesch844dd052006-06-26 00:24:59 -07002962INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2963P: Deepak Saxena
2964M: dsaxena@plexity.net
2965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002967
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002968INTEL IXP2000 ETHERNET DRIVER
2969P: Lennert Buytenhek
2970M: kernel@wantstofly.org
2971L: netdev@vger.kernel.org
2972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002974
Auke Kokd94e6fe2008-03-03 14:37:47 -08002975INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002976P: Jeff Kirsher
2977M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002978P: Jesse Brandeburg
2979M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002980P: Bruce Allan
2981M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002982P: PJ Waskiewicz
2983M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002984P: John Ronciak
2985M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002986L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002987W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002989F: drivers/net/e100.c
2990F: drivers/net/e1000/
2991F: drivers/net/e1000e/
2992F: drivers/net/igb/
2993F: drivers/net/ixgb/
2994F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
James Ketrenos826d2ab2005-11-07 18:56:59 -06002996INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002997P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002998M: yi.zhu@intel.com
2999P: James Ketrenos
3000M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003001P: Reinette Chatre
3002M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003003L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003004L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003005W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003006W: http://ipw2100.sourceforge.net
3007S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003008F: Documentation/networking/README.ipw2100
3009F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003010
3011INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003012P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003013M: yi.zhu@intel.com
3014P: James Ketrenos
3015M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003016P: Reinette Chatre
3017M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003018L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003019L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003020W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003021W: http://ipw2200.sourceforge.net
3022S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003023F: Documentation/networking/README.ipw2200
3024F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003025
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003026INTEL WIRELESS WIMAX CONNECTION 2400
3027P: Inaky Perez-Gonzalez
3028M: inaky.perez-gonzalez@intel.com
3029M: linux-wimax@intel.com
3030L: wimax@linuxwimax.org
3031S: Supported
3032W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003033F: Documentation/wimax/README.i2400m
3034F: drivers/net/wimax/i2400m/
3035F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003036
Zhu Yib481de92007-09-25 17:54:57 -07003037INTEL WIRELESS WIFI LINK (iwlwifi)
3038P: Zhu Yi
3039M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003040P: Reinette Chatre
3041M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003042L: linux-wireless@vger.kernel.org
3043L: ipw3945-devel@lists.sourceforge.net
3044W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003045T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003047F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003048
Ralf Baechlecb109a02007-08-30 23:56:30 -07003049IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050P: Ralf Baechle
3051M: ralf@linux-mips.org
3052L: linux-mips@linux-mips.org
3053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003054F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
Ralf Baechlecb109a02007-08-30 23:56:30 -07003056IOC3 SERIAL DRIVER
3057P: Pat Gefre
3058M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003059L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003061F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003062
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003063IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064P: Juanjo Ciarlante
3065M: jjciarla@raiz.uncu.edu.ar
3066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003067F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
Francois Romieu1202d6f2007-09-17 17:13:55 -07003069IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3070P: Francois Romieu
3071M: romieu@fr.zoreil.com
3072P: Sorbica Shieh
3073M: sorbica@icplus.com.tw
3074P: Jesse Huang
3075M: jesse@icplus.com.tw
3076L: netdev@vger.kernel.org
3077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003078F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003079
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003080IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003081P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003082M: infinipath@qlogic.com
3083L: general@lists.openfabrics.org
3084T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003085S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003086F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003087
Corey Minyard4409ebe2006-04-20 02:43:12 -07003088IPMI SUBSYSTEM
3089P: Corey Minyard
3090M: minyard@acm.org
3091L: openipmi-developer@lists.sourceforge.net
3092W: http://openipmi.sourceforge.net/
3093S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003094F: Documentation/IPMI.txt
3095F: drivers/char/ipmi/
3096F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003097
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003098IPS SCSI RAID DRIVER
3099P: Adaptec OEM Raid Solutions
3100M: aacraid@adaptec.com
3101L: linux-scsi@vger.kernel.org
3102W: http://www.adaptec.com/
3103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003105
3106IPVS
3107P: Wensong Zhang
3108M: wensong@linux-vs.org
3109P: Simon Horman
3110M: horms@verge.net.au
3111P: Julian Anastasov
3112M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003113L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003114L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003116F: Documentation/networking/ipvs-sysctl.txt
3117F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Randy Dunlape7839f22008-10-12 16:11:45 -07003119IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003120P: Jiri Kosina
3121M: jkosina@suse.cz
3122P: David Sterba
3123M: dsterba@suse.cz
3124S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003125T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003126F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003128IPX NETWORK LAYER
3129P: Arnaldo Carvalho de Melo
3130M: acme@ghostprotocols.net
3131L: netdev@vger.kernel.org
3132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003133F: include/linux/ipx.h
3134F: include/net/ipx.h
3135F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003136
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003138P: Samuel Ortiz
3139M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003140L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003142S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003143T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003144F: Documentation/networking/irda.txt
3145F: drivers/net/irda/
3146F: include/net/irda/
3147F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149ISAPNP
3150P: Jaroslav Kysela
3151M: perex@perex.cz
3152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003153F: Documentation/isapnp.txt
3154F: drivers/pnp/isapnp/
3155F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156
Mike Christie14816b12007-11-28 16:22:06 -08003157ISCSI
3158P: Mike Christie
3159M: michaelc@cs.wisc.edu
3160L: open-iscsi@googlegroups.com
3161W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003162T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/scsi/*iscsi*
3165F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167ISDN SUBSYSTEM
3168P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003169M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003170L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003172T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003174F: Documentation/isdn/
3175F: drivers/isdn/
3176F: include/linux/isdn.h
3177F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
3179ISDN SUBSYSTEM (Eicon active card driver)
3180P: Armin Schindler
3181M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003182L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183W: http://www.melware.de
3184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Hans Verkuil91821ff2007-12-02 09:35:33 -03003187IVTV VIDEO4LINUX DRIVER
3188P: Hans Verkuil
3189M: hverkuil@xs4all.nl
3190L: ivtv-devel@ivtvdriver.org
3191L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003192L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003193T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003194W: http://www.ivtvdriver.org
3195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003196F: Documentation/video4linux/*.ivtv
3197F: drivers/media/video/ivtv/
3198F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003199
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003200JFS FILESYSTEM
3201P: Dave Kleikamp
3202M: shaggy@austin.ibm.com
3203L: jfs-discussion@lists.sourceforge.net
3204W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003205T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003206S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003207F: Documentation/filesystems/jfs.txt
3208F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003209
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003210JME NETWORK DRIVER
3211P: Guo-Fu Tseng
3212M: cooldavid@cooldavid.org
3213L: netdev@vger.kernel.org
3214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3218P: David Woodhouse
3219M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003220L: linux-mtd@lists.infradead.org
3221W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: fs/jffs2/
3224F: include/linux/jffs2.h
3225F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Josh Triplettde456d32006-07-30 03:04:00 -07003227JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003228P: Stephen Tweedie
3229M: sct@redhat.com
3230P: Andrew Morton
3231M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003232L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003234F: fs/jbd*/
3235F: include/linux/ext*jbd*.h
3236F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003237
Rudolf Marek4660cb32006-10-08 22:01:26 +02003238K8TEMP HARDWARE MONITORING DRIVER
3239P: Rudolf Marek
3240M: r.marek@assembler.cz
3241L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003243F: Documentation/hwmon/k8temp
3244F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245
3246KCONFIG
3247P: Roman Zippel
3248M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003249L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: Documentation/kbuild/kconfig-language.txt
3252F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Vivek Goyalea6c2082006-05-20 14:59:55 -07003254KDUMP
3255P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003256M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003257P: Haren Myneni
3258M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003259L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003260W: http://lse.sourceforge.net/kdump/
3261S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003262F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264KERNEL AUTOMOUNTER (AUTOFS)
3265P: H. Peter Anvin
3266M: hpa@zytor.com
3267L: autofs@linux.kernel.org
3268S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003269F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271KERNEL AUTOMOUNTER v4 (AUTOFS4)
3272P: Ian Kent
3273M: raven@themaw.net
3274L: autofs@linux.kernel.org
3275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003276F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Joe Perches7d2c86b2009-04-07 20:59:01 -07003278KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279P: Sam Ravnborg
3280M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003281T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3282T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003283L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: Documentation/kbuild/
3286F: Makefile
3287F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289KERNEL JANITORS
3290P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003291L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293S: Maintained
3294
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003295KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003296P: J. Bruce Fields
3297M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003299M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003300L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003302S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003303F: fs/nfsd/
3304F: include/linux/nfsd/
3305F: fs/lockd/
3306F: fs/nfs_common/
3307F: net/sunrpc/
3308F: include/linux/lockd/
3309F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Avi Kivity426d62e2006-12-13 00:34:03 -08003311KERNEL VIRTUAL MACHINE (KVM)
3312P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003313M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003314L: kvm@vger.kernel.org
3315W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003317F: Documentation/*/kvm.txt
3318F: arch/*/kvm/
3319F: arch/*/include/asm/kvm*
3320F: include/linux/kvm*
3321F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003322
Joerg Roedelad8003d2008-09-10 20:01:07 +02003323KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3324P: Joerg Roedel
3325M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003326L: kvm@vger.kernel.org
3327W: http://kvm.qumranet.com
3328S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003329F: arch/x86/include/asm/svm.h
3330F: arch/x86/kvm/kvm_svm.h
3331F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003332
Hollis Blanchard513014b2008-04-16 23:28:08 -05003333KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3334P: Hollis Blanchard
3335M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003336L: kvm-ppc@vger.kernel.org
3337W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003339F: arch/powerpc/include/asm/kvm*
3340F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003341
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003342KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003343P: Xiantao Zhang
3344M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003345L: kvm-ia64@vger.kernel.org
3346W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003348F: Documentation/ia64/kvm.txt
3349F: arch/ia64/include/asm/kvm*
3350F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003351
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003352KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3353P: Carsten Otte
3354M: cotte@de.ibm.com
3355P: Christian Borntraeger
3356M: borntraeger@de.ibm.com
3357M: linux390@de.ibm.com
3358L: linux-s390@vger.kernel.org
3359W: http://www.ibm.com/developerworks/linux/linux390/
3360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003361F: Documentation/s390/kvm.txt
3362F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003363F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003364
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003365KEXEC
3366P: Eric Biederman
3367M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003368W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003369L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003371F: include/linux/kexec.h
3372F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003373
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003374KGDB
3375P: Jason Wessel
3376M: jason.wessel@windriver.com
3377L: kgdb-bugreport@lists.sourceforge.net
3378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003379F: Documentation/DocBook/kgdb.tmpl
3380F: drivers/misc/kgdbts.c
3381F: drivers/serial/kgdboc.c
3382F: include/linux/kgdb.h
3383F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003384
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003385KMEMLEAK
3386P: Catalin Marinas
3387M: catalin.marinas@arm.com
3388L: linux-kernel@vger.kernel.org
3389S: Maintained
3390F: Documentation/kmemleak.txt
3391F: include/linux/kmemleak.h
3392F: mm/kmemleak.c
3393F: mm/kmemleak-test.c
3394
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003395KMEMTRACE
3396P: Eduard - Gabriel Munteanu
3397M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003398S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003399F: Documentation/trace/kmemtrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07003400F: include/trace/kmemtrace.h
3401F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003402
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003403KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003404P: Ananth N Mavinakayanahalli
3405M: ananth@in.ibm.com
3406P: Anil S Keshavamurthy
3407M: anil.s.keshavamurthy@intel.com
3408P: David S. Miller
3409M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003410P: Masami Hiramatsu
3411M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003413F: Documentation/kprobes.txt
3414F: include/linux/kprobes.h
3415F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003416
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003417KS0108 LCD CONTROLLER DRIVER
3418P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003419M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003420W: http://miguelojeda.es/auxdisplay.htm
3421W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003423F: Documentation/auxdisplay/ks0108
3424F: drivers/auxdisplay/ks0108.c
3425F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003429S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003430F: Documentation/networking/lapb-module.txt
3431F: include/*/lapb.h
3432F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
3434LASI 53c700 driver for PARISC
3435P: James E.J. Bottomley
3436M: James.Bottomley@HansenPartnership.com
3437L: linux-scsi@vger.kernel.org
3438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003439F: Documentation/scsi/53c700.txt
3440F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Richard Purdie263de9b2006-05-15 09:44:16 -07003442LED SUBSYSTEM
3443P: Richard Purdie
3444M: rpurdie@rpsys.net
3445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: drivers/leds/
3447F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003448
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449LEGO USB Tower driver
3450P: Juergen Stuber
3451M: starblue@users.sourceforge.net
3452L: legousb-devel@lists.sourceforge.net
3453W: http://legousb.sourceforge.net/
3454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003455F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Rusty Russell568a17f2007-10-25 14:12:24 +10003457LGUEST
3458P: Rusty Russell
3459M: rusty@rustcorp.com.au
3460L: lguest@ozlabs.org
3461W: http://lguest.ozlabs.org/
3462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/lguest/
3464F: arch/x86/lguest/
3465F: drivers/lguest/
3466F: include/linux/lguest*.h
3467F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469LINUX FOR IBM pSERIES (RS/6000)
3470P: Paul Mackerras
3471M: paulus@au.ibm.com
3472W: http://www.ibm.com/linux/ltc/projects/ppc
3473S: Supported
3474
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003475LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003476P: Benjamin Herrenschmidt
3477M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003478P: Paul Mackerras
3479M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480W: http://www.penguinppc.org/
3481L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003482T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483S: Supported
3484
3485LINUX FOR POWER MACINTOSH
3486P: Benjamin Herrenschmidt
3487M: benh@kernel.crashing.org
3488W: http://www.penguinppc.org/
3489L: linuxppc-dev@ozlabs.org
3490S: Maintained
3491
Grant Likely77a76362008-07-12 12:11:43 -06003492LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003493P: Grant Likely
3494M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003496T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497S: Maintained
3498
3499LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003500P: Josh Boyer
3501M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502P: Matt Porter
3503M: mporter@kernel.crashing.org
3504W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003505L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003506T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507S: Maintained
3508
Grant Likely260c02a2007-10-02 12:15:34 +10003509LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3510P: Grant Likely
3511M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003512W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003513L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003514T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515S: Maintained
3516
Tom Rinie93adf12005-07-26 12:49:53 -07003517LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003518P: Vitaly Bordug
3519M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003520P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003521M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003522W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003523L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003524S: Maintained
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003527P: Kumar Gala
3528M: galak@kernel.crashing.org
3529W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003530L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003531S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532
Olof Johanssonab06ff32006-09-06 14:44:54 -05003533LINUX FOR POWERPC PA SEMI PWRFICIENT
3534P: Olof Johansson
3535M: olof@lixom.net
3536W: http://www.pasemi.com/
3537L: linuxppc-dev@ozlabs.org
3538S: Supported
3539
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540LINUX SECURITY MODULE (LSM) FRAMEWORK
3541P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003542M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003543L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003544T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545S: Supported
3546
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003547LLC (802.2)
3548P: Arnaldo Carvalho de Melo
3549M: acme@ghostprotocols.net
3550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003551F: include/linux/llc.h
3552F: include/net/llc*
3553F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003554
Pavel Machek455fbdd2008-11-12 13:27:02 -08003555LIS3LV02D ACCELEROMETER DRIVER
3556P: Eric Piel
3557M: eric.piel@tremplin-utc.net
3558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003559F: Documentation/hwmon/lis3lv02d
3560F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003561
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562LM83 HARDWARE MONITOR DRIVER
3563P: Jean Delvare
3564M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003565L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: Documentation/hwmon/lm83
3568F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
3570LM90 HARDWARE MONITOR DRIVER
3571P: Jean Delvare
3572M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003573L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003575F: Documentation/hwmon/lm90
3576F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003578LOCKDEP AND LOCKSTAT
3579P: Peter Zijlstra
3580M: peterz@infradead.org
3581P: Ingo Molnar
3582M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003583T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003585F: Documentation/lockdep*.txt
3586F: Documentation/lockstat.txt
3587F: include/linux/lockdep.h
3588F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003589
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003590LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591P: Richard Russon (FlatCap)
3592M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003593L: linux-ntfs-dev@lists.sourceforge.net
3594W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: Documentation/ldm.txt
3597F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003599LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3600P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003601M: Eric.Moore@lsi.com
3602M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003603L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003604L: linux-scsi@vger.kernel.org
3605W: http://www.lsilogic.com/support
3606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003607F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3610P: Matthew Wilcox
3611M: matthew@wil.cx
3612L: linux-scsi@vger.kernel.org
3613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003614F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Mike Frysinger81365c32008-10-29 14:01:12 -07003616LTP (Linux Test Project)
3617P: Subrata Modak
3618M: subrata@linux.vnet.ibm.com
3619P: Mike Frysinger
3620M: vapier@gentoo.org
3621L: ltp-list@lists.sourceforge.net (subscribers-only)
3622W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003623T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003624S: Maintained
3625
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003626M32R ARCHITECTURE
3627P: Hirokazu Takata
3628M: takata@linux-m32r.org
3629L: linux-m32r@ml.linux-m32r.org
3630L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3631W: http://www.linux-m32r.org/
3632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003634
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635M68K ARCHITECTURE
3636P: Geert Uytterhoeven
3637M: geert@linux-m68k.org
3638P: Roman Zippel
3639M: zippel@linux-m68k.org
3640L: linux-m68k@lists.linux-m68k.org
3641W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003642T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003644F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003645F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647M68K ON APPLE MACINTOSH
3648P: Joshua Thompson
3649M: funaho@jurai.org
3650W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003651L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003653F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655M68K ON HP9000/300
3656P: Philip Blundell
3657M: philb@gnu.org
3658W: http://www.tazenda.demon.co.uk/phil/linux-hp
3659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Jiri Benc64a327a2007-05-05 11:47:08 -07003662MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003663P: Johannes Berg
3664M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003665L: linux-wireless@vger.kernel.org
3666W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003667T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: Documentation/networking/mac80211-injection.txt
3670F: include/net/mac80211.h
3671F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003672
Stefano Brivio1036d862007-12-23 04:46:27 +01003673MAC80211 PID RATE CONTROL
3674P: Stefano Brivio
3675M: stefano.brivio@polimi.it
3676P: Mattias Nissler
3677M: mattias.nissler@gmx.de
3678L: linux-wireless@vger.kernel.org
3679W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003680T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003682F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003683
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003684MACVLAN DRIVER
3685P: Patrick McHardy
3686M: kaber@trash.net
3687L: netdev@vger.kernel.org
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: drivers/net/macvlan.c
3690F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003691
Michael Kerriskfaf16682005-07-31 22:34:47 -07003692MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003693P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003694M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003695W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003696L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003697S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003698
Stefano Brivio74cda162007-11-19 20:27:46 +01003699MARVELL LIBERTAS WIRELESS DRIVER
3700P: Dan Williams
3701M: dcbw@redhat.com
3702L: libertas-dev@lists.infradead.org
3703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003705
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003706MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003707P: Lennert Buytenhek
3708M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003709L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003710S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003711F: drivers/net/mv643xx_eth.*
3712F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Pierre Ossman2a695672009-03-16 19:52:26 +01003714MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3715P: Nicolas Pitre
3716M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003717S: Maintained
3718
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003719MARVELL YUKON / SYSKONNECT DRIVER
3720P: Mirko Lindner
3721M: mlindner@syskonnect.de
3722P: Ralph Roesler
3723M: rroesler@syskonnect.de
3724W: http://www.syskonnect.com
3725S: Supported
3726
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727MATROX FRAMEBUFFER DRIVER
3728P: Petr Vandrovec
3729M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003730L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003732F: drivers/video/matrox/matroxfb_*
3733F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003735MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3736P: Hans J. Koch
3737M: hjk@linutronix.de
3738L: lm-sensors@lm-sensors.org
3739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: Documentation/hwmon/max6650
3741F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003742
Joe Perches127c49a2009-04-08 08:34:04 -07003743MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3744P: Mauro Carvalho Chehab
3745M: mchehab@infradead.org
3746P: LinuxTV.org Project
3747L: linux-media@vger.kernel.org
3748W: http://linuxtv.org
3749T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3750S: Maintained
3751F: Documentation/dvb/
3752F: Documentation/video4linux/
3753F: drivers/media/
3754F: include/media/
3755F: include/linux/dvb/
3756F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003757
3758MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003759P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003760M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003761L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003762W: http://megaraid.lsilogic.com
3763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003764F: Documentation/scsi/megaraid.txt
3765F: drivers/scsi/megaraid.*
3766F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003767
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768MEMORY MANAGEMENT
3769L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770W: http://www.linux-mm.org
3771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003772F: include/linux/mm.h
3773F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003774
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003775MEMORY RESOURCE CONTROLLER
3776P: Balbir Singh
3777M: balbir@linux.vnet.ibm.com
3778P: Pavel Emelyanov
3779M: xemul@openvz.org
3780P: KAMEZAWA Hiroyuki
3781M: kamezawa.hiroyu@jp.fujitsu.com
3782L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003784F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786MEMORY TECHNOLOGY DEVICES (MTD)
3787P: David Woodhouse
3788M: dwmw2@infradead.org
3789W: http://www.linux-mtd.infradead.org/
3790L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003791T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003793F: drivers/mtd/
3794F: include/linux/mtd/
3795F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Michal Simekc6375b02009-03-27 14:25:52 +01003797MICROBLAZE ARCHITECTURE
3798P: Michal Simek
3799M: monstr@monstr.eu
3800L: microblaze-uclinux@itee.uq.edu.au
3801W: http://www.monstr.eu/fdt/
3802T: git git://git.monstr.eu/linux-2.6-microblaze.git
3803S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003804F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
3806MICROTEK X6 SCANNER
3807P: Oliver Neukum
3808M: oliver@neukum.name
3809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
3812MIPS
3813P: Ralf Baechle
3814M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003815W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003817T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003819F: Documentation/mips/
3820F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822MISCELLANEOUS MCA-SUPPORT
3823P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003824M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: Documentation/ia64/mca.txt
3827F: Documentation/mca.txt
3828F: drivers/mca/
3829F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
3831MODULE SUPPORT
3832P: Rusty Russell
3833M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003835F: include/linux/module.h
3836F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3839P: Stelian Pop
3840M: stelian@popies.net
3841W: http://popies.net/meye/
3842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: Documentation/video4linux/meye.txt
3844F: drivers/media/video/meye.*
3845F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Pavel Pisac58ff042007-05-16 01:10:41 +02003847MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3848P: Pavel Pisa
3849M: ppisa@pikron.com
3850L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003852F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003853
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854MOUSE AND MISC DEVICES [GENERAL]
3855P: Alessandro Rubini
3856M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003858F: drivers/input/mouse/
3859F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Jiri Slabyb9705b62008-04-30 00:53:48 -07003861MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003862P: Jiri Slaby
3863M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003865F: Documentation/serial/moxa-smartio
3866F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003867
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003868MSI LAPTOP SUPPORT
3869P: Lennart Poettering
3870M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003871W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003872W: http://0pointer.de/lennart/tchibo.html
3873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003874F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003875
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003876MULTIFUNCTION DEVICES (MFD)
3877P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003878M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003879T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003880S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003881F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003882
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003883MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003884P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003885M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003887F: drivers/mmc/
3888F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003889
David Brownell15a05802007-08-08 09:12:54 -07003890MULTIMEDIA CARD (MMC) ETC. OVER SPI
3891P: David Brownell
3892M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003893S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003894F: drivers/mmc/host/mmc_spi.c
3895F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003896
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897MULTISOUND SOUND DRIVER
3898P: Andrew Veliath
3899M: andrewtv@usa.net
3900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003901F: Documentation/sound/oss/MultiSound
3902F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
Jiri Slabyd7354102006-12-08 02:38:35 -08003904MULTITECH MULTIPORT CARD (ISICOM)
3905P: Jiri Slaby
3906M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003908F: drivers/char/isicom.c
3909F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003910
Felipe Balbi550a7372008-07-24 12:27:36 +03003911MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003912P: Felipe Balbi
3913M: felipe.balbi@nokia.com
3914L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003915T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003917F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003918
Brice Goglin2d3cf582008-05-17 12:45:36 +02003919MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3920P: Andrew Gallatin
3921M: gallatin@myri.com
3922P: Brice Goglin
3923M: brice@myri.com
3924L: netdev@vger.kernel.org
3925W: http://www.myri.com/scs/download-Myri10GE.html
3926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003927F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003930P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931M: thockin@hockin.org
3932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003933F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
3935NCP FILESYSTEM
3936P: Petr Vandrovec
3937M: vandrove@vc.cvut.cz
3938L: linware@sh.cvut.cz
3939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003940F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
3942NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3943P: James E.J. Bottomley
3944M: James.Bottomley@HansenPartnership.com
3945L: linux-scsi@vger.kernel.org
3946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003947F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003949NETEFFECT IWARP RNIC DRIVER (IW_NES)
3950P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003951M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003952P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003953M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003954L: general@lists.openfabrics.org
3955W: http://www.neteffect.com
3956S: Supported
3957F: drivers/infiniband/hw/nes/
3958
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003959NETEM NETWORK EMULATOR
3960P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003961M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003962L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003965
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003966NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003967P: Ramkrishna Vepa
3968M: ram.vepa@neterion.com
3969P: Rastapur Santosh
3970M: santosh.rastapur@neterion.com
3971P: Sivakumar Subramani
3972M: sivakumar.subramani@neterion.com
3973P: Sreenivasa Honnur
3974M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003975P: Anil Murthy
3976M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003977L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003978W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3979W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003981F: Documentation/networking/s2io.txt
3982F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003983
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984NETFILTER/IPTABLES/IPCHAINS
3985P: Rusty Russell
3986P: Marc Boucher
3987P: James Morris
3988P: Harald Welte
3989P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07003990P: Patrick McHardy
3991M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07003992L: netfilter-devel@vger.kernel.org
3993L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003994L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995W: http://www.netfilter.org/
3996W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003998F: include/linux/netfilter*
3999F: include/linux/netfilter/
4000F: include/net/netfilter/
4001F: net/*/netfilter.c
4002F: net/*/netfilter/
4003F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Paul Moore4cc67732006-09-25 15:57:13 -07004005NETLABEL
4006P: Paul Moore
4007M: paul.moore@hp.com
4008W: http://netlabel.sf.net
4009L: netdev@vger.kernel.org
4010S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004011F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004012F: include/net/netlabel.h
4013F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015NETROM NETWORK LAYER
4016P: Ralf Baechle
4017M: ralf@linux-mips.org
4018L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004019W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: include/linux/netrom.h
4022F: include/net/netrom.h
4023F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004025NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026P: Paul Clements
4027M: Paul.Clements@steeleye.com
4028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004029F: Documentation/blockdev/nbd.txt
4030F: drivers/block/nbd.c
4031F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
4033NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004034P: David S. Miller
4035M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004036L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004037W: http://www.linuxfoundation.org/en/Net
4038T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004040F: net/
4041F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042
4043NETWORKING [IPv4/IPv6]
4044P: David S. Miller
4045M: davem@davemloft.net
4046P: Alexey Kuznetsov
4047M: kuznet@ms2.inr.ac.ru
4048P: Pekka Savola (ipv6)
4049M: pekkas@netcore.fi
4050P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004051M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052P: Hideaki YOSHIFUJI
4053M: yoshfuji@linux-ipv6.org
4054P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004055M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004056L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004057T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: net/ipv4/
4060F: net/ipv6/
4061F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
James Morris10e2ff12007-08-25 14:41:28 -07004063NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4064P: Paul Moore
4065M: paul.moore@hp.com
4066L: netdev@vger.kernel.org
4067S: Maintained
4068
John W. Linville29f8f632006-01-18 14:52:48 -08004069NETWORKING [WIRELESS]
4070P: John W. Linville
4071M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004072L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004073T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004075F: net/wireless/
4076F: include/net/ieee80211*
4077F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004078
Joe Perches788873a2009-04-16 09:38:45 +00004079NETWORKING DRIVERS
4080L: netdev@vger.kernel.org
4081W: http://www.linuxfoundation.org/en/Net
4082T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4083S: Odd Fixes
4084F: drivers/net/
4085
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004086NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004087P: Dhananjay Phadke
4088M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004089L: netdev@vger.kernel.org
4090W: http://www.netxen.com
4091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004092F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004093
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004094NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004096M: Trond.Myklebust@netapp.com
4097L: linux-nfs@vger.kernel.org
4098W: http://client.linux-nfs.org
4099T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004101F: fs/lockd/
4102F: fs/nfs/
4103F: fs/nfs_common/
4104F: net/sunrpc/
4105F: include/linux/lockd/
4106F: include/linux/nfs*
4107F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
4109NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004110P: Jan-Pascal van Best
4111M: janpascal@vanbest.org
4112P: Andreas Mohr
4113M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004114L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004116F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004118NILFS2 FILESYSTEM
4119P: KONISHI Ryusuke
4120M: konishi.ryusuke@lab.ntt.co.jp
4121L: users@nilfs.org
4122W: http://www.nilfs.org/en/
4123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004124F: Documentation/filesystems/nilfs2.txt
4125F: fs/nilfs2/
4126F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4129P: YOKOTA Hiroshi
4130M: yokota@netlab.is.tsukuba.ac.jp
4131W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: Documentation/scsi/NinjaSCSI.txt
4134F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
4136NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4137P: GOTO Masanori
4138M: gotom@debian.or.jp
4139P: YOKOTA Hiroshi
4140M: yokota@netlab.is.tsukuba.ac.jp
4141W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004143F: Documentation/scsi/NinjaSCSI.txt
4144F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146NTFS FILESYSTEM
4147P: Anton Altaparmakov
4148M: aia21@cantab.net
4149L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004150W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004151T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004153F: Documentation/filesystems/ntfs.txt
4154F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004156NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004157P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004158M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004159L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/video/riva/
4162F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
Tony Lindgrenf5525782009-05-28 13:23:53 -07004164OMAP SUPPORT
4165P: Tony Lindgren <tony@atomide.com>
4166M: tony@atomide.com
4167L: linux-omap@vger.kernel.org
4168W: http://www.muru.com/linux/omap/
4169W: http://linux.omap.com/
4170T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4171S: Maintained
4172F: arch/arm/*omap*
4173
4174OMAP CLOCK FRAMEWORK SUPPORT
4175P: Paul Walmsley
4176M: paul@pwsan.com
4177L: linux-omap@vger.kernel.org
4178S: Maintained
4179F: arch/arm/*omap*/*clock*
4180
4181OMAP POWER MANAGEMENT SUPPORT
4182P: Kevin Hilman
4183M: khilman@deeprootsystems.com
4184L: linux-omap@vger.kernel.org
4185S: Maintained
4186F: arch/arm/*omap*/*pm*
4187
4188OMAP AUDIO SUPPORT
4189P: Jarkko Nikula
4190M: jhnikula@gmail.com
4191L: alsa-devel@alsa-project.org (subscribers-only)
4192L: linux-omap@vger.kernel.org
4193S: Maintained
4194F: sound/soc/omap/
4195
4196OMAP FRAMEBUFFER SUPPORT
4197P: Imre Deak
4198M: imre.deak@nokia.com
4199L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4200L: linux-omap@vger.kernel.org
4201S: Maintained
4202F: drivers/video/omap/
4203
4204OMAP MMC SUPPORT
4205P: Jarkko Lavinen
4206M: jarkko.lavinen@nokia.com
4207L: linux-kernel@vger.kernel.org
4208L: linux-omap@vger.kernel.org
4209S: Maintained
4210F: drivers/mmc/host/*omap*
4211
4212OMAP RANDOM NUMBER GENERATOR SUPPORT
4213P: Deepak Saxena
4214M: dsaxena@plexity.net
4215S: Maintained
4216F: drivers/char/hw_random/omap-rng.c
4217
4218OMAP USB SUPPORT
4219P: Felipe Balbi
4220M: felipe.balbi@nokia.com
4221P: David Brownell
4222M: dbrownell@users.sourceforge.net
4223L: linux-usb@vger.kernel.org
4224L: linux-omap@vger.kernel.org
4225S: Maintained
4226
Bob Copeland0ad122d2008-07-25 19:45:18 -07004227OMFS FILESYSTEM
4228P: Bob Copeland
4229M: me@bobcopeland.com
4230L: linux-karma-devel@lists.sourceforge.net
4231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004232F: Documentation/filesystems/omfs.txt
4233F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004234
Harald Weltec1986ee2005-11-13 16:06:29 -08004235OMNIKEY CARDMAN 4000 DRIVER
4236P: Harald Welte
4237M: laforge@gnumonks.org
4238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004239F: drivers/char/pcmcia/cm4000_cs.c
4240F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004241
Harald Welte77c44ab2005-11-13 16:06:26 -08004242OMNIKEY CARDMAN 4040 DRIVER
4243P: Harald Welte
4244M: laforge@gnumonks.org
4245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004246F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004247
Jonathan Corbet77d51402007-03-22 19:44:17 -03004248OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004249P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004250M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004251L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004252T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004254F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004255
Thomas Gleixner431bca72007-05-02 09:31:35 +02004256ONENAND FLASH DRIVER
4257P: Kyungmin Park
4258M: kyungmin.park@samsung.com
4259L: linux-mtd@lists.infradead.org
4260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004261F: drivers/mtd/onenand/
4262F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004263
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264ONSTREAM SCSI TAPE DRIVER
4265P: Willem Riede
4266M: osst@riede.org
4267L: osst-users@lists.sourceforge.net
4268L: linux-scsi@vger.kernel.org
4269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004270F: drivers/scsi/osst*
4271F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004273OPENCORES I2C BUS DRIVER
4274P: Peter Korsgaard
4275M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004276L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: Documentation/i2c/busses/i2c-ocores
4279F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004280
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004282P: Robert Richter
4283M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284L: oprofile-list@lists.sf.net
4285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: arch/*/oprofile/
4287F: drivers/oprofile/
4288F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004290ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4291P: Mark Fasheh
4292M: mfasheh@suse.com
4293P: Joel Becker
4294M: joel.becker@oracle.com
4295L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4296W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004297T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004299F: Documentation/filesystems/ocfs2.txt
4300F: Documentation/filesystems/dlmfs.txt
4301F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303ORINOCO DRIVER
4304P: Pavel Roskin
4305M: proski@gnu.org
4306P: David Gibson
4307M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004308L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004309L: orinoco-users@lists.sourceforge.net
4310L: orinoco-devel@lists.sourceforge.net
4311W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Boaz Harrosh68274792009-01-25 17:24:14 +02004315OSD LIBRARY
4316P: Boaz Harrosh
4317M: bharrosh@panasas.com
4318P: Benny Halevy
4319M: bhalevy@panasas.com
4320L: osd-dev@open-osd.org
4321W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004322T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004323S: Maintained
4324
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004325P54 WIRELESS DRIVER
4326P: Michael Wu
4327M: flamingice@sourmilk.net
4328L: linux-wireless@vger.kernel.org
4329W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004330T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004333
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004334PA SEMI ETHERNET DRIVER
4335P: Olof Johansson
4336M: olof@lixom.net
4337L: netdev@vger.kernel.org
4338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004339F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004340
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004341PA SEMI SMBUS DRIVER
4342P: Olof Johansson
4343M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004344L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004346F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004347
Harald Welte709ee532008-09-23 17:46:57 +02004348PANASONIC LAPTOP ACPI EXTRAS DRIVER
4349P: Harald Welte
4350M: laforge@gnumonks.org
4351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004352F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004353
David Howells4fa97182008-10-13 10:42:44 +01004354PANASONIC MN10300/AM33 PORT
4355P: David Howells
4356M: dhowells@redhat.com
4357P: Koichi Yasutake
4358M: yasutake.koichi@jp.panasonic.com
4359L: linux-am33-list@redhat.com (moderated for non-subscribers)
4360W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004362F: Documentation/mn10300/
4363F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004366L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004368F: drivers/parport/
4369F: include/linux/parport*.h
4370F: drivers/char/ppdev.c
4371F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004373PARAVIRT_OPS INTERFACE
4374P: Jeremy Fitzhardinge
4375M: jeremy@xensource.com
4376P: Chris Wright
4377M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004378P: Alok Kataria
4379M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004380P: Rusty Russell
4381M: rusty@rustcorp.com.au
4382L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004383S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004384F: Documentation/ia64/paravirt_ops.txt
4385F: arch/*/kernel/paravirt*
4386F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004387
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4389P: Tim Waugh
4390M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004391L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392W: http://www.torque.net/linux-pp.html
4393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: Documentation/blockdev/paride.txt
4395F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
4397PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004398P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004399M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004400P: Helge Deller
4401M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004402L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004404T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004406F: arch/parisc/
4407F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
Jim Cromie1662d322006-10-06 00:43:59 -07004409PC87360 HARDWARE MONITORING DRIVER
4410P: Jim Cromie
4411M: jim.cromie@gmail.com
4412L: lm-sensors@lm-sensors.org
4413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004414F: Documentation/hwmon/pc87360
4415F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004416
4417PC8736x GPIO DRIVER
4418P: Jim Cromie
4419M: jim.cromie@gmail.com
4420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004421F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004422
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004423PCA9532 LED DRIVER
4424P: Riku Voipio
4425M: riku.voipio@iki.fi
4426S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004427F: drivers/leds/leds-pca9532.c
4428F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004429
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004430PCI ERROR RECOVERY
4431P: Linas Vepstas
4432M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004433L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004435F: Documentation/PCI/pci-error-recovery.txt
4436F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004437
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004439P: Jesse Barnes
4440M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004441L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004442T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004444F: Documentation/PCI/
4445F: drivers/pci/
4446F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004448PCIE HOTPLUG DRIVER
4449P: Kristen Carlson Accardi
4450M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004451L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004452S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004453F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004454
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004456P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004457L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004458W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004459T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004461F: Documentation/pcmcia/
4462F: drivers/pcmcia/
4463F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
4465PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004466P: Don Fry
4467M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004468L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004470F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004472PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004473P: Balbir Singh
4474M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004476F: include/linux/delayacct.h
4477F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004478
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004479PERFORMANCE COUNTER SUBSYSTEM
4480P: Peter Zijlstra
4481M: a.p.zijlstra@chello.nl
4482P: Paul Mackerras
4483M: paulus@samba.org
4484P: Ingo Molnar
4485M: mingo@elte.hu
4486L: linux-kernel@vger.kernel.org
4487S: Supported
4488
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004489PERSONALITY HANDLING
4490P: Christoph Hellwig
4491M: hch@infradead.org
4492L: linux-abi-devel@lists.sourceforge.net
4493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004494F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004495
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004497P: Joern Engel
4498M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499L: linux-mtd@lists.infradead.org
4500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004501F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Peter Osterlund249a6772005-09-27 21:45:30 -07004503PKTCDVD DRIVER
4504P: Peter Osterlund
4505M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: drivers/block/pktcdvd.c
4508F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004511P: Thomas Gleixner
4512M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004514F: fs/timerfd.c
4515F: include/linux/timer*
4516F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517
Anton Vorontsov3be86142007-07-15 04:43:36 +04004518POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4519P: Anton Vorontsov
4520M: cbou@mail.ru
4521P: David Woodhouse
4522M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004523T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004525F: include/linux/power_supply.h
4526F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528PNP SUPPORT
4529P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004530M: abelay@mit.edu
4531P: Bjorn Helgaas
4532M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004534F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
Vitaly Wool999445d2007-01-04 13:07:03 +01004536PNXxxxx I2C DRIVER
4537P: Vitaly Wool
4538M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004539L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004542
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543PPP PROTOCOL DRIVERS AND COMPRESSORS
4544P: Paul Mackerras
4545M: paulus@samba.org
4546L: linux-ppp@vger.kernel.org
4547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004548F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549
4550PPP OVER ATM (RFC 2364)
4551P: Mitchell Blank Jr
4552M: mitch@sfgoth.com
4553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004554F: net/atm/pppoatm.c
4555F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557PPP OVER ETHERNET
4558P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004559M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004561F: drivers/net/pppoe.c
4562F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563
James Chapmana6d23702007-06-27 15:53:17 -07004564PPP OVER L2TP
4565P: James Chapman
4566M: jchapman@katalix.com
4567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004568F: drivers/net/pppol2tp.c
4569F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004570
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571PREEMPTIBLE KERNEL
4572P: Robert Love
4573M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574L: kpreempt-tech@lists.sourceforge.net
4575W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004577F: Documentation/preempt-locking.txt
4578F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
4580PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004581P: Luis R. Rodriguez
4582M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004583L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584W: http://prism54.org
4585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
4588PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4589P: Peter Denison
4590M: promise@pnd-pc.demon.co.uk
4591W: http://www.pnd-pc.demon.co.uk/promise/
4592S: Maintained
4593
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004594PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4595P: Mikael Pettersson
4596M: mikpe@it.uu.se
4597L: linux-ide@vger.kernel.org
4598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004600
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004601PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004602P: Geoff Levand
4603M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004604L: netdev@vger.kernel.org
4605L: cbe-oss-dev@ozlabs.org
4606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004607F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004608
Geoff Levandf58a9d12006-11-23 00:46:51 +01004609PS3 PLATFORM SUPPORT
4610P: Geoff Levand
4611M: geoffrey.levand@am.sony.com
4612L: linuxppc-dev@ozlabs.org
4613L: cbe-oss-dev@ozlabs.org
4614S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004615F: arch/powerpc/boot/ps3*
4616F: arch/powerpc/include/asm/lv1call.h
4617F: arch/powerpc/include/asm/ps3*.h
4618F: arch/powerpc/platforms/ps3/
4619F: drivers/*/ps3*
4620F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004621F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004622F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004623F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004624
Jim Pariscffb4add2009-01-06 11:32:10 +00004625PS3VRAM DRIVER
4626P: Jim Paris
4627M: jim@jtan.com
4628L: cbe-oss-dev@ozlabs.org
4629S: Maintained
4630
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004631PTRACE SUPPORT
4632P: Roland McGrath
4633M: roland@redhat.com
4634P: Oleg Nesterov
4635M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004636S: Maintained
4637F: include/asm-generic/syscall.h
4638F: include/linux/ptrace.h
4639F: include/linux/regset.h
4640F: include/linux/tracehook.h
4641F: kernel/ptrace.c
4642
Michael Krufky83202042006-07-03 00:24:18 -07004643PVRUSB2 VIDEO4LINUX DRIVER
4644P: Mike Isely
4645M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004646L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004647L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004648W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004649T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/video4linux/README.pvrusb2
4652F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004653
Eric Miao30ec2612008-06-12 15:21:41 -07004654PXA2xx/PXA3xx SUPPORT
4655P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004656M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004657P: Russell King
4658M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004659L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004661F: arch/arm/mach-pxa/
4662F: drivers/pcmcia/pxa2xx*
4663F: drivers/spi/pxa2xx*
4664F: drivers/usb/gadget/pxa2*
4665F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004666F: sound/arm/pxa*
4667F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004669PXA168 SUPPORT
4670P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004671M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004672P: Jason Chagas
4673M: jason.chagas@marvell.com
4674L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004675T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004676S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004677
Eric Miao5fa82eb2009-03-20 12:52:24 +08004678PXA910 SUPPORT
4679P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004680M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004681L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004682T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004683S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004684
Pierre Ossman272f1332007-05-14 21:25:26 +02004685PXA MMCI DRIVER
4686S: Orphan
4687
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004688PXA RTC DRIVER
4689P: Robert Jarzmik
4690M: robert.jarzmik@free.fr
4691L: rtc-linux@googlegroups.com
4692S: Maintained
4693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694QLOGIC QLA2XXX FC-SCSI DRIVER
4695P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004696M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697L: linux-scsi@vger.kernel.org
4698S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004699F: Documentation/scsi/LICENSE.qla2xxx
4700F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701
Ron Mercer5a4faa82006-07-25 00:40:21 -07004702QLOGIC QLA3XXX NETWORK DRIVER
4703P: Ron Mercer
4704M: linux-driver@qlogic.com
4705L: netdev@vger.kernel.org
4706S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004707F: Documentation/networking/LICENSE.qla3xxx
4708F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004709
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004710QLOGIC QLGE 10Gb ETHERNET DRIVER
4711P: Ron Mercer
4712M: linux-driver@qlogic.com
4713M: ron.mercer@qlogic.com
4714L: netdev@vger.kernel.org
4715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004716F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004717
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718QNX4 FILESYSTEM
4719P: Anders Larsen
4720M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721W: http://www.alarsen.net/linux/qnx4fs/
4722S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004723F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004724F: include/linux/qnx4_fs.h
4725F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004728P: Benjamin Herrenschmidt
4729M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004730L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004732F: drivers/video/aty/radeon*
4733F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
4735RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004736P: Paul Mackerras
4737M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004738L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004740F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
Randy Dunlape7839f22008-10-12 16:11:45 -07004742RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004743P: rt2x00 project
4744L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004745L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004746W: http://rt2x00.serialmonkey.com/
4747S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004748T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004749F: drivers/net/wireless/rt2x00/
4750
Nick Piggin9db55792008-02-08 04:19:49 -08004751RAMDISK RAM BLOCK DEVICE DRIVER
4752P: Nick Piggin
4753M: npiggin@suse.de
4754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004755F: Documentation/blockdev/ramdisk.txt
4756F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004757
Matt Mackall9e95ce22005-04-16 15:25:56 -07004758RANDOM NUMBER DRIVER
4759P: Matt Mackall
4760M: mpm@selenic.com
4761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004762F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004763
Matt Porter394b7012005-11-07 01:00:15 -08004764RAPIDIO SUBSYSTEM
4765P: Matt Porter
4766M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004768F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004769
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004770RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4771P: Corey Thomas
4772M: coreythomas@charter.net
4773L: linux-wireless@vger.kernel.org
4774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004775F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004776
4777RCUTORTURE MODULE
4778P: Josh Triplett
4779M: josh@freedesktop.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: Documentation/RCU/torture.txt
4782F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004783
Florian Fainellic1f766b2008-02-06 22:39:44 +01004784RDC R-321X SoC
4785P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004786M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004787S: Maintained
4788
Florian Fainellidb17f392007-12-19 11:30:30 +01004789RDC R6040 FAST ETHERNET DRIVER
4790P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004791M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004792L: netdev@vger.kernel.org
4793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004794F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004795
Andy Grovera09ed662009-02-24 15:30:41 +00004796RDS - RELIABLE DATAGRAM SOCKETS
4797P: Andy Grover
4798M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004799L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004800S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004801F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004802
Josh Triplett595182b2006-10-04 02:17:21 -07004803READ-COPY UPDATE (RCU)
4804P: Dipankar Sarma
4805M: dipankar@in.ibm.com
4806W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004807S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004808F: Documentation/RCU/rcu.txt
4809F: Documentation/RCU/rcuref.txt
4810F: include/linux/rcupdate.h
4811F: include/linux/srcu.h
4812F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004813
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814REAL TIME CLOCK DRIVER
4815P: Paul Gortmaker
4816M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004818F: Documentation/rtc.txt
4819F: drivers/rtc/
4820F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004822REAL TIME CLOCK (RTC) SUBSYSTEM
4823P: Alessandro Zummo
4824M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004825L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: Documentation/rtc.txt
4828F: drivers/rtc/
4829F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004830
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004832L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004834F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835
Ivo van Doorne08976452008-04-12 19:23:55 +02004836RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004837P: Johannes Berg
4838M: johannes@sipsolutions.net
4839L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004840S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004841F Documentation/rfkill.txt
4842F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004844RISCOM8 DRIVER
4845S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004846F: Documentation/serial/riscom8.txt
4847F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004848
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849ROCKETPORT DRIVER
4850P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851W: http://www.comtrol.com
4852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: Documentation/serial/rocket.txt
4854F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856ROSE NETWORK LAYER
4857P: Ralf Baechle
4858M: ralf@linux-mips.org
4859L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004860W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004862F: include/linux/rose.h
4863F: include/net/rose.h
4864F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Larry Finger59840482008-11-12 17:13:09 -06004866RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004867P: John W. Linville
4868M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004869L: linux-wireless@vger.kernel.org
4870W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004871T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004873F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004874
Larry Finger59840482008-11-12 17:13:09 -06004875RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004876P: Herton Ronaldo Krzesinski
4877M: herton@mandriva.com.br
4878P: Hin-Tak Leung
4879M: htl10@users.sourceforge.net
4880P: Larry Finger
4881M: Larry.Finger@lwfinger.net
4882L: linux-wireless@vger.kernel.org
4883W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004884T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004886F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004887
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004888S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004889P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004890M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004891L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004893F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004894
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895S390
4896P: Martin Schwidefsky
4897M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004898P: Heiko Carstens
4899M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004901L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004902W: http://www.ibm.com/developerworks/linux/linux390/
4903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004904F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004905
4906S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004907P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004908M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004909P: Frank Blaschka
4910M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004911M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004912L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004913W: http://www.ibm.com/developerworks/linux/linux390/
4914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004915F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004916
Felix Beckfeed9b62009-03-26 15:24:23 +01004917S390 ZCRYPT DRIVER
4918P: Felix Beck
4919M: felix.beck@de.ibm.com
4920P: Ralph Wuerthner
4921M: ralph.wuerthner@de.ibm.com
4922M: linux390@de.ibm.com
4923L: linux-s390@vger.kernel.org
4924S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004925F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004926
Heiko Carstens5238da42006-02-11 17:56:01 -08004927S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004928P: Christof Schmitt
4929M: christof.schmitt@de.ibm.com
4930P: Martin Peschke
4931M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004932M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004933L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004934W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004936F: Documentation/s390/zfcpdump.txt
4937F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
Ursula Braundd96df22007-09-19 13:09:02 +02004939S390 IUCV NETWORK LAYER
4940P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004941M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004942M: linux390@de.ibm.com
4943L: linux-s390@vger.kernel.org
4944W: http://www.ibm.com/developerworks/linux/linux390/
4945S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004946F: drivers/s390/net/*iucv*
4947F: include/net/iucv/
4948F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004949
Ben Dooks4dde7f72008-06-30 22:40:38 +01004950S3C24XX SD/MMC Driver
4951P: Ben Dooks
4952M: ben-linux@fluff.org
4953L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004954S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004955F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004956
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957SAA7146 VIDEO4LINUX-2 DRIVER
4958P: Michael Hunold
4959M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004960L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004961T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962W: http://www.mihu.de/linux/saa7146
4963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004964F: drivers/media/common/saa7146*
4965F: drivers/media/video/*7146*
4966F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968SC1200 WDT DRIVER
4969P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004970M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004972F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973
4974SCHEDULER
4975P: Ingo Molnar
4976M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02004977P: Peter Zijlstra
4978M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004980F: kernel/sched*
4981F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982
4983SCSI CDROM DRIVER
4984P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02004985M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986L: linux-scsi@vger.kernel.org
4987W: http://www.kernel.dk
4988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004989F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
4991SCSI SG DRIVER
4992P: Doug Gilbert
4993M: dgilbert@interlog.com
4994L: linux-scsi@vger.kernel.org
4995W: http://www.torque.net/sg
4996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004997F: drivers/scsi/sg.c
4998F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
5000SCSI SUBSYSTEM
5001P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005002M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005004T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5005T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5006T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: drivers/scsi/
5009F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
5011SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005012P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013M: Kai.Makisara@kolumbus.fi
5014L: linux-scsi@vger.kernel.org
5015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: Documentation/scsi/st.txt
5017F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005020P: Vlad Yasevich
5021M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005022P: Sridhar Samudrala
5023M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005024L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005025W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005027F: Documentation/networking/sctp.txt
5028F: include/linux/sctp.h
5029F: include/net/sctp/
5030F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
5032SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005033P: Jim Cromie
5034M: jim.cromie@gmail.com
5035S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005036F: Documentation/i2c/busses/scx200_acb
5037F: arch/x86/kernel/scx200_32.c
5038F: drivers/watchdog/scx200_wdt.c
5039F: drivers/i2c/busses/scx200*
5040F: drivers/mtd/maps/scx200_docflash.c
5041F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005042
5043SCx200 GPIO DRIVER
5044P: Jim Cromie
5045M: jim.cromie@gmail.com
5046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005047F: drivers/char/scx200_gpio.c
5048F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005049
5050SCx200 HRT CLOCKSOURCE DRIVER
5051P: Jim Cromie
5052M: jim.cromie@gmail.com
5053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005054F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
Sascha Sommer6a369132008-07-15 14:21:29 +02005056SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5057P: Sascha Sommer
5058M: saschasommer@freenet.de
5059L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005062
Randy Dunlape7839f22008-10-12 16:11:45 -07005063SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005064P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005065M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005066L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005067S: Maintained
5068
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005069SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5070P: Anton Vorontsov
5071M: avorontsov@ru.mvista.com
5072L: linuxppc-dev@ozlabs.org
5073L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005075F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
James Morris8711cca2008-12-04 03:19:45 +11005077SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005078P: James Morris
5079M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005080L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005081T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005082W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005083S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005084F: security/
James Morris8711cca2008-12-04 03:19:45 +11005085
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086SECURITY CONTACT
5087P: Security Officers
5088M: security@kernel.org
5089S: Supported
5090
5091SELINUX SECURITY MODULE
5092P: Stephen Smalley
5093M: sds@tycho.nsa.gov
5094P: James Morris
5095M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005096P: Eric Paris
5097M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005098L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005099W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005100T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005102F: include/linux/selinux*
5103F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Jiri Slabycef2cf02007-05-08 00:31:45 -07005105SENSABLE PHANTOM
5106P: Jiri Slaby
5107M: jirislaby@gmail.com
5108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005109F: drivers/misc/phantom.c
5110F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005111
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005112SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113P: Jeff Garzik
5114M: jgarzik@pobox.com
5115L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005116T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005118F: drivers/ata/
5119F: include/linux/ata.h
5120F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005122SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5123P: Sathya Perla
5124M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005125P: Subbu Seetharaman
5126M: subbus@serverengines.com
5127L: netdev@vger.kernel.org
5128W: http://www.serverengines.com
5129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005130F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005131
Ben Hutchings8ceee662008-04-27 12:55:59 +01005132SFC NETWORK DRIVER
5133P: Steve Hodgson
5134P: Ben Hutchings
5135P: Robert Stonehouse
5136M: linux-net-drivers@solarflare.com
5137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005138F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005139
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005140SGI GRU DRIVER
5141P: Jack Steiner
5142M: steiner@sgi.com
5143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005145
5146SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5147P: Pat Gefre
5148M: pfg@sgi.com
5149L: linux-ia64@vger.kernel.org
5150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005151F: Documentation/ia64/serial.txt
5152F: drivers/serial/ioc?_serial.c
5153F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155SGI VISUAL WORKSTATION 320 AND 540
5156P: Andrey Panin
5157M: pazke@donpac.ru
5158L: linux-visws-devel@lists.sf.net
5159W: http://linux-visws.sf.net
5160S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005161F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Jack Steiner75312612008-08-15 00:40:42 -07005163SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005164P: Robin Holt
5165M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005166S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005167F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005168
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005169SHARP LH SUPPORT (LH7952X & LH7A40X)
5170P: Marc Singer
5171M: elf@buici.com
5172W: http://projects.buici.com/arm
5173L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005175F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5176F: arch/arm/mach-lh7a40x/
5177F: drivers/serial/serial_lh7a40x.c
5178F: drivers/usb/gadget/lh7a40*
5179F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005180
5181SHPC HOTPLUG DRIVER
5182P: Kristen Carlson Accardi
5183M: kristen.c.accardi@intel.com
5184L: linux-pci@vger.kernel.org
5185S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005186F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005187
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188SIMTEC EB110ATX (Chalice CATS)
5189P: Ben Dooks
5190P: Vincent Sanders
5191M: support@simtec.co.uk
5192W: http://www.simtec.co.uk/products/EB110ATX/
5193S: Supported
5194
5195SIMTEC EB2410ITX (BAST)
5196P: Ben Dooks
5197P: Vincent Sanders
5198M: support@simtec.co.uk
5199W: http://www.simtec.co.uk/products/EB2410ITX/
5200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005201F: arch/arm/mach-s3c2410/
5202F: drivers/*/*s3c2410*
5203F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
Francois Romieu92aab3c2005-07-30 13:11:18 +02005205SIS 190 ETHERNET DRIVER
5206P: Francois Romieu
5207M: romieu@fr.zoreil.com
5208L: netdev@vger.kernel.org
5209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005210F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005211
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212SIS 900/7016 FAST ETHERNET DRIVER
5213P: Daniele Venzano
5214M: venza@brownhat.org
5215W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005216L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005220SIS 96X I2C/SMBUS DRIVER
5221P: Mark M. Hoffman
5222M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005223L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005225F: Documentation/i2c/busses/i2c-sis96x
5226F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005227
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228SIS FRAMEBUFFER DRIVER
5229P: Thomas Winischhofer
5230M: thomas@winischhofer.net
5231W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005233F: Documentation/fb/sisfb.txt
5234F: drivers/video/sis/
5235F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
5237SIS USB2VGA DRIVER
5238P: Thomas Winischhofer
5239M: thomas@winischhofer.net
5240W: http://www.winischhofer.at/linuxsisusbvga.shtml
5241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005242F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005244SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5245P: Stephen Hemminger
5246M: shemminger@linux-foundation.org
5247L: netdev@vger.kernel.org
5248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005249F: drivers/net/skge.*
5250F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005251
Christoph Lameter415ad262007-07-26 10:40:56 -07005252SLAB ALLOCATOR
5253P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005254M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005255P: Pekka Enberg
5256M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005257P: Matt Mackall
5258M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005259L: linux-mm@kvack.org
5260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005261F: include/linux/sl?b*.h
5262F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005263
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264SMC91x ETHERNET DRIVER
5265P: Nicolas Pitre
5266M: nico@cam.org
5267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005268F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005270SMSC47B397 HARDWARE MONITOR DRIVER
5271P: Mark M. Hoffman
5272M: mhoffman@lightlink.com
5273L: lm-sensors@lm-sensors.org
5274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005275F: Documentation/hwmon/smsc47b397
5276F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005277
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005278SMSC911x ETHERNET DRIVER
5279P: Steve Glendinning
5280M: steve.glendinning@smsc.com
5281L: netdev@vger.kernel.org
5282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005283F: include/linux/smsc911x.h
5284F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005285
Steve Glendinning2cb37722008-12-11 20:54:30 -08005286SMSC9420 PCI ETHERNET DRIVER
5287P: Steve Glendinning
5288M: steve.glendinning@smsc.com
5289L: netdev@vger.kernel.org
5290S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005291F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005292
Ben Nizetteb54f2862008-03-13 22:27:30 +11005293SMX UIO Interface
5294P: Ben Nizette
5295M: bn@niasdigital.com
5296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005297F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005298
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005299SN-IA64 (Itanium) SUB-PLATFORM
5300P: Jes Sorensen
5301M: jes@sgi.com
5302L: linux-altix@sgi.com
5303L: linux-ia64@vger.kernel.org
5304W: http://www.sgi.com/altix
5305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005306F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005307
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005308SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005309P: Guennadi Liakhovetski
5310M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005311L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005312T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005314F: include/media/v4l2*
5315F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005316
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005317SOEKRIS NET48XX LED SUPPORT
5318P: Chris Boot
5319M: bootc@bootc.net
5320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005321F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005322
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005325M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005328F: drivers/md/
5329F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331SONIC NETWORK DRIVER
5332P: Thomas Bogendoerfer
5333M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005334L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005336F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337
Michael Buesch61e115a2007-09-18 15:12:50 -04005338SONICS SILICON BACKPLANE DRIVER (SSB)
5339P: Michael Buesch
5340M: mb@bu3sch.de
5341L: netdev@vger.kernel.org
5342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005343F: drivers/ssb/
5344F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005345
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005347P: Mattia Dongili
5348M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005349L: linux-acpi@vger.kernel.org
5350W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005352F: Documentation/laptops/sony-laptop.txt
5353F: drivers/char/sonypi.c
5354F: drivers/platform/x86/sony-laptop.c
5355F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Alex Dubovbaf85322008-02-09 10:20:54 -08005357SONY MEMORYSTICK CARD SUPPORT
5358P: Alex Dubov
5359M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005360W: http://tifmxx.berlios.de/
5361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005363
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364SOUND
5365P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005366M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005367P: Takashi Iwai
5368M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005369L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005370W: http://www.alsa-project.org/
5371T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5372T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005374F: Documentation/sound/
5375F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005376F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Mark Brownbd903bd2008-11-19 19:16:05 +00005378SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005379P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005380M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005381P: Mark Brown
5382M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005383T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005384L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005385W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005387F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005388F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005389
Sam Ravnborg473321f2009-01-04 15:47:49 -08005390SPARC + UltraSPARC (sparc/sparc64)
5391P: David S. Miller
5392M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005394T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5395T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005397F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
5399SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5400P: Roger Wolff
5401M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005403F: Documentation/serial/specialix.txt
5404F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005406SPI SUBSYSTEM
5407P: David Brownell
5408M: dbrownell@users.sourceforge.net
5409L: spi-devel-general@lists.sourceforge.net
5410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: Documentation/spi/
5412F: drivers/spi/
5413F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005414
Jim Lewis2752e402006-09-29 02:01:19 -07005415SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005416P: Ishizaki Kou
5417M: kou.ishizaki@toshiba.co.jp
5418P: Jens Osterkamp
5419M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005420L: netdev@vger.kernel.org
5421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005422F: Documentation/networking/spider_net.txt
5423F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005424
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005425SPU FILE SYSTEM
5426P: Jeremy Kerr
5427M: jk@ozlabs.org
5428L: linuxppc-dev@ozlabs.org
5429L: cbe-oss-dev@ozlabs.org
5430W: http://www.ibm.com/developerworks/power/cell/
5431S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005432F: Documentation/filesystems/spufs.txt
5433F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005434
Phillip Lougherfc555842009-01-05 08:46:29 +00005435SQUASHFS FILE SYSTEM
5436P: Phillip Lougher
5437M: phillip@lougher.demon.co.uk
5438L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5439W: http://squashfs.org.uk
5440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005441F: Documentation/filesystems/squashfs.txt
5442F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005443
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444SRM (Alpha) environment access
5445P: Jan-Benedict Glaw
5446M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005448F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Linus Torvalds26e9a392008-10-17 09:50:12 -07005450STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005451P: Greg Kroah-Hartman
5452M: greg@kroah.com
5453P: Chris Wright
5454M: chrisw@sous-sol.org
5455L: stable@kernel.org
5456S: Maintained
5457
Linus Torvalds26e9a392008-10-17 09:50:12 -07005458STAGING SUBSYSTEM
5459P: Greg Kroah-Hartman
5460M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005461T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005463F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005464
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465STARFIRE/DURALAN NETWORK DRIVER
5466P: Ion Badulescu
5467M: ionut@cs.columbia.edu
5468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005469F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005470
5471STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5472W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005473S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005474F: drivers/net/wireless/strip.c
5475F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476
5477STRADIS MPEG-2 DECODER DRIVER
5478P: Nathan Laredo
5479M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480W: http://www.stradis.com/
5481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005482F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005484SUN3/3X
5485P: Sam Creasey
5486M: sammy@sammy.net
5487W: http://sammy.net/sun3/
5488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: arch/m68k/kernel/*sun3*
5490F: arch/m68k/sun3*/
5491F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005492
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005493SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494P: Paul Mundt
5495M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005496L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005498T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005499S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005500F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005501F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005502F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005504SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005505P: Len Brown
5506M: len.brown@intel.com
5507P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005508M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005509P: Rafael J. Wysocki
5510M: rjw@sisk.pl
5511L: linux-pm@lists.linux-foundation.org
5512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/power/
5514F: arch/x86/kernel/acpi/
5515F: drivers/base/power/
5516F: kernel/power/
5517F: include/linux/suspend.h
5518F: include/linux/freezer.h
5519F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
5521SVGA HANDLING
5522P: Martin Mares
5523M: mj@ucw.cz
5524L: linux-video@atrey.karlin.mff.cuni.cz
5525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: Documentation/svga.txt
5527F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528
5529SYSV FILESYSTEM
5530P: Christoph Hellwig
5531M: hch@infradead.org
5532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: Documentation/filesystems/sysv-fs.txt
5534F: fs/sysv/
5535F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
Alan Cox4e688522008-04-30 00:52:11 -07005537TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005538P: Balbir Singh
5539M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: Documentation/accounting/taskstats*
5542F: include/linux/taskstats*
5543F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005544
Stephen Hemminger781b4562006-07-10 20:25:29 -07005545TC CLASSIFIER
5546P: Jamal Hadi Salim
5547M: hadi@cyberus.ca
5548L: netdev@vger.kernel.org
5549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005550F: include/linux/pkt_cls.h
5551F: include/net/pkt_cls.h
5552F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005553
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005554TCP LOW PRIORITY MODULE
5555P: Wong Hoi Sing, Edison
5556M: hswong3i@gmail.com
5557P: Hung Hing Lun, Mike
5558M: hlhung3i@gmail.com
5559W: http://tcp-lp-mod.sourceforge.net/
5560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005562
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005563TEHUTI ETHERNET DRIVER
5564P: Alexander Indenbaum
5565M: baum@tehutinetworks.net
5566P: Andy Gospodarek
5567M: andy@greyhouse.net
5568L: netdev@vger.kernel.org
5569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005570F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005571
Alan Cox4e688522008-04-30 00:52:11 -07005572Telecom Clock Driver for MCPL0010
5573P: Mark Gross
5574M: mark.gross@intel.com
5575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005576F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005577
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005578TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005579P: Chris Zankel
5580M: chris@zankel.net
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005583
5584THINKPAD ACPI EXTRAS DRIVER
5585P: Henrique de Moraes Holschuh
5586M: ibm-acpi@hmh.eng.br
5587L: ibm-acpi-devel@lists.sourceforge.net
5588W: http://ibm-acpi.sourceforge.net
5589W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005590T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005592F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005593
Alex Dubov4020f2d2006-10-04 02:15:37 -07005594TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005595P: Alex Dubov
5596M: oakad@yahoo.com
5597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005598F: drivers/misc/tifm*
5599F: drivers/mmc/host/tifm_sd.c
5600F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005601
Per Lidene86eaa32006-01-12 16:45:18 +01005602TIPC NETWORK LAYER
5603P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005604M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005605P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005606M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005607P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005608M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005609L: tipc-discussion@lists.sourceforge.net
5610W: http://tipc.sourceforge.net/
5611W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005612T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: include/linux/tipc*.h
5615F: include/net/tipc/
5616F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005617
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618TLAN NETWORK DRIVER
5619P: Samuel Chessman
5620M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005621L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622W: http://sourceforge.net/projects/tlan/
5623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005624F: Documentation/networking/tlan.txt
5625F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005627TOMOYO SECURITY MODULE
5628P: Kentaro Takeda
5629M: takedakn@nttdata.co.jp
5630P: Tetsuo Handa
5631M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005632L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5633L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5634L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5635W: http://tomoyo.sourceforge.jp/
5636T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005641S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005642F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
5644TOSHIBA SMM DRIVER
5645P: Jonathan Buzzard
5646M: jonathan@buzzard.org.uk
5647L: tlinux-users@tce.toshiba-dme.co.jp
5648W: http://www.buzzard.org.uk/toshiba/
5649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005650F: drivers/char/toshiba.c
5651F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Pierre Ossmand719f902009-03-24 21:06:09 +01005653TMIO MMC DRIVER
5654P: Ian Molton
5655M: ian@mnementh.co.uk
5656S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005657F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005658
Hugh Dickins98f32602009-05-21 20:33:58 +01005659TMPFS (SHMEM FILESYSTEM)
5660P: Hugh Dickins
5661M: hugh.dickins@tiscali.co.uk
5662L: linux-mm@kvack.org
5663S: Maintained
5664F: include/linux/shmem_fs.h
5665F: mm/shmem.c
5666
Alan Cox4e688522008-04-30 00:52:11 -07005667TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005668P: Debora Velarde
5669M: debora@linux.vnet.ibm.com
5670P: Rajiv Andrade
5671M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005672W: http://tpmdd.sourceforge.net
5673P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005674M: m.selhorst@sirrix.com
5675W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005676L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005681P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005682M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005683T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684S: Maintained
5685
Alan Cox4e688522008-04-30 00:52:11 -07005686TTY LAYER
5687P: Alan Cox
5688M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005689S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005690T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005691
Grant Grundler740db6d2008-02-17 11:53:49 -07005692TULIP NETWORK DRIVERS
5693P: Grant Grundler
5694M: grundler@parisc-linux.org
5695P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005696M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005697L: netdev@vger.kernel.org
5698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
5701TUN/TAP driver
5702P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005703M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704L: vtun@office.satix.net
5705W: http://vtun.sourceforge.net/tun
5706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005707F: Documentation/networking/tuntap.txt
5708F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005710TURBOCHANNEL SUBSYSTEM
5711P: Maciej W. Rozycki
5712M: macro@linux-mips.org
5713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: drivers/tc/
5715F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005716
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717U14-34F SCSI DRIVER
5718P: Dario Ballabio
5719M: ballabio_dario@emc.com
5720L: linux-scsi@vger.kernel.org
5721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005722F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005723
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005724UBI FILE SYSTEM (UBIFS)
5725P: Artem Bityutskiy
5726M: dedekind@infradead.org
5727P: Adrian Hunter
5728M: ext-adrian.hunter@nokia.com
5729L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005730T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005731W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005733F: Documentation/filesystems/ubifs.txt
5734F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005735
Alan Coxcc2020e2008-05-19 14:21:51 +01005736UCLINUX (AND M68KNOMMU)
5737P: Greg Ungerer
5738M: gerg@uclinux.org
5739W: http://www.uclinux.org/
5740L: uclinux-dev@uclinux.org (subscribers-only)
5741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005743
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005744UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005745P: Yoshinori Sato
5746M: ysato@users.sourceforge.jp
5747W: http://uclinux-h8.sourceforge.jp/
5748S: Supported
5749
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005751P: Jan Kara
5752M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753W: http://linux-udf.sourceforge.net
5754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005755F: Documentation/filesystems/udf.txt
5756F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Alan Coxcc2020e2008-05-19 14:21:51 +01005758UFS FILESYSTEM
5759P: Evgeniy Dushistov
5760M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: Documentation/filesystems/ufs.txt
5763F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005764
David Vrabel18332a82008-09-17 16:34:44 +01005765ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5766P: David Vrabel
5767M: david.vrabel@csr.com
5768L: linux-usb@vger.kernel.org
5769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005770F: drivers/uwb/*
5771F: include/linux/uwb.h
5772F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005773
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774UNIFORM CDROM DRIVER
5775P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005776M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777W: http://www.kernel.dk
5778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005779F: Documentation/cdrom/
5780F: drivers/cdrom/cdrom.c
5781F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005783UNSORTED BLOCK IMAGES (UBI)
5784P: Artem Bityutskiy
5785M: dedekind@infradead.org
5786W: http://www.linux-mtd.infradead.org/
5787L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005788T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005789S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005790F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005791F: include/linux/mtd/ubi.h
5792F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794USB ACM DRIVER
5795P: Oliver Neukum
5796M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005797L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005799F: Documentation/usb/acm.txt
5800F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
5802USB BLOCK DRIVER (UB ub)
5803P: Pete Zaitcev
5804M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005805L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005807F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809USB CDC ETHERNET DRIVER
5810P: Greg Kroah-Hartman
5811M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005812L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005813S: Maintained
5814W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005815F: drivers/net/usb/cdc_*.c
5816F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005818USB CYPRESS C67X00 DRIVER
5819P: Peter Korsgaard
5820M: jacmet@sunsite.dk
5821L: linux-usb@vger.kernel.org
5822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005824
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005825USB DAVICOM DM9601 DRIVER
5826P: Peter Korsgaard
5827M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005828L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005829W: http://www.linux-usb.org/usbnet
5830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005831F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005832
Alan Coxcc2020e2008-05-19 14:21:51 +01005833USB DIAMOND RIO500 DRIVER
5834P: Cesar Miquel
5835M: miquel@df.uba.ar
5836L: rio500-users@lists.sourceforge.net
5837W: http://rio500.sourceforge.net
5838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005839F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005840
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841USB EHCI DRIVER
5842P: David Brownell
5843M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005844L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005845S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005846F: Documentation/usb/ehci.txt
5847F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Luca Risolia7ce08c92006-01-11 02:06:59 +00005849USB ET61X[12]51 DRIVER
5850P: Luca Risolia
5851M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005852L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005853L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005854T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005855W: http://www.linux-projects.org
5856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005858
David Brownell69ae9e32006-11-14 02:03:31 -08005859USB GADGET/PERIPHERAL SUBSYSTEM
5860P: David Brownell
5861M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005862L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005863W: http://www.linux-usb.org/gadget
5864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005865F: drivers/usb/gadget/
5866F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005867
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005868USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005869P: Jiri Kosina
5870M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005871L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005872T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005874F: Documentation/usb/hiddev.txt
5875F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876
Olav Kongas959eea22005-11-03 17:38:14 +02005877USB ISP116X DRIVER
5878P: Olav Kongas
5879M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005880L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005882F: drivers/usb/host/isp116x*
5883F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005884
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885USB KAWASAKI LSI DRIVER
5886P: Oliver Neukum
5887M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005888L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891
5892USB MASS STORAGE DRIVER
5893P: Matthew Dharm
5894M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005895L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005896L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897S: Maintained
5898W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005899F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
5901USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005902P: David Brownell
5903M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005904L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005905S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005906F: Documentation/usb/ohci.txt
5907F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
Matthias Urlichsba460e42005-07-14 00:33:47 -07005909USB OPTION-CARD DRIVER
5910P: Matthias Urlichs
5911M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005912L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005915
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916USB OV511 DRIVER
5917P: Mark McClelland
5918M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005919L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920W: http://alpha.dyndns.org/ov511/
5921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
5924USB PEGASUS DRIVER
5925P: Petko Manolov
5926M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005927L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005928L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929W: http://pegasus2.sourceforge.net/
5930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005931F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005933USB PRINTER DRIVER (usblp)
5934P: Pete Zaitcev
5935M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005936L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005938F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
5940USB RTL8150 DRIVER
5941P: Petko Manolov
5942M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005943L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005944L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945W: http://pegasus2.sourceforge.net/
5946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005947F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
5949USB SE401 DRIVER
5950P: Jeroen Vreeken
5951M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005952L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953W: http://www.chello.nl/~j.vreeken/se401/
5954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005955F: Documentation/video4linux/se401.txt
5956F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Alan Cox4e688522008-04-30 00:52:11 -07005958USB SERIAL BELKIN F5U103 DRIVER
5959P: William Greathouse
5960M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005961L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005963F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005964
5965USB SERIAL CYPRESS M8 DRIVER
5966P: Lonnie Mendez
5967M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005968L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005969S: Maintained
5970W: http://geocities.com/i0xox0i
5971W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005972F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005973
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974USB SERIAL CYBERJACK DRIVER
5975P: Matthias Bruestle and Harald Welte
5976M: support@reiner-sct.com
5977W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005979F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
5981USB SERIAL DIGI ACCELEPORT DRIVER
5982P: Peter Berger and Al Borchers
5983M: pberger@brimson.com
5984M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005985L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005987F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
5989USB SERIAL DRIVER
5990P: Greg Kroah-Hartman
5991M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005992L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005994F: Documentation/usb/usb-serial.txt
5995F: drivers/usb/serial/generic.c
5996F: drivers/usb/serial/usb-serial.c
5997F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6000P: Gary Brubaker
6001M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006002L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006004F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005
6006USB SERIAL KEYSPAN DRIVER
6007P: Greg Kroah-Hartman
6008M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006009L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010W: http://www.kroah.com/linux/
6011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
6014USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006015P: Support Department
6016M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006017L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018W: http://www.connecttech.com
6019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006020F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006022USB SMSC95XX ETHERNET DRIVER
6023P: Steve Glendinning
6024M: steve.glendinning@smsc.com
6025L: netdev@vger.kernel.org
6026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006027F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006028
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006029USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030P: Luca Risolia
6031M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006032L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006033L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006034T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035W: http://www.linux-projects.org
6036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006037F: Documentation/video4linux/sn9c102.txt
6038F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039
6040USB SUBSYSTEM
6041P: Greg Kroah-Hartman
6042M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006043L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006045T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006047F: Documentation/usb/
6048F: drivers/net/usb/
6049F: drivers/usb/
6050F: include/linux/usb.h
6051F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
6053USB UHCI DRIVER
6054P: Alan Stern
6055M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006056L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006058F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059
David Brownell69ae9e32006-11-14 02:03:31 -08006060USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061P: David Brownell
6062M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006063L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006064W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: drivers/net/usb/usbnet.c
6067F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006069USB VIDEO CLASS
6070P: Laurent Pinchart
6071M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006072L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006073L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006074T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006075W: http://linux-uvc.berlios.de
6076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006078
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079USB W996[87]CF DRIVER
6080P: Luca Risolia
6081M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006082L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006083L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006084T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085W: http://www.linux-projects.org
6086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006087F: Documentation/video4linux/w9968cf.txt
6088F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006090USB WIRELESS RNDIS DRIVER (rndis_wlan)
6091P: Jussi Kivilinna
6092M: jussi.kivilinna@mbnet.fi
6093L: linux-wireless@vger.kernel.org
6094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006096
Luca Risolia60f78052006-02-06 16:29:35 +00006097USB ZC0301 DRIVER
6098P: Luca Risolia
6099M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006100L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006101L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006102T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006103W: http://www.linux-projects.org
6104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006105F: Documentation/video4linux/zc0301.txt
6106F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006107
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108USB ZD1201 DRIVER
6109P: Jeroen Vreeken
6110M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006111L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112W: http://linux-lc100020.sourceforge.net
6113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006114F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006116USB ZR364XX DRIVER
6117P: Antoine Jacquet
6118M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006119L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006120L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006121T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006122W: http://royale.zerezo.com/zr364xx/
6123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006124F: Documentation/video4linux/zr364xx.txt
6125F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006126
Randy Dunlape7839f22008-10-12 16:11:45 -07006127USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006129M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130L: user-mode-linux-devel@lists.sourceforge.net
6131L: user-mode-linux-user@lists.sourceforge.net
6132W: http://user-mode-linux.sourceforge.net
6133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006134F: Documentation/uml/
6135F: arch/um/
6136F: fs/hostfs/
6137F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006138
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006139USERSPACE I/O (UIO)
6140P: Hans J. Koch
6141M: hjk@linutronix.de
6142P: Greg Kroah-Hartman
6143M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006145F: Documentation/DocBook/uio-howto.tmpl
6146F: drivers/uio/
6147F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006148
Karel Zakf899b0a2008-05-23 13:04:21 -07006149UTIL-LINUX-NG PACKAGE
6150P: Karel Zak
6151M: kzak@redhat.com
6152L: util-linux-ng@vger.kernel.org
6153W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006154T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006155S: Maintained
6156
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006157UVESAFB DRIVER
6158P: Michal Januszewski
6159M: spock@gentoo.org
6160L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6161W: http://dev.gentoo.org/~spock/projects/uvesafb/
6162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006163F: Documentation/fb/uvesafb.txt
6164F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006165
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006166VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167P: OGAWA Hirofumi
6168M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006170F: Documentation/filesystems/vfat.txt
6171F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173VIA RHINE NETWORK DRIVER
6174P: Roger Luethi
6175M: rl@hellgate.ch
6176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178
Jean Delvare32c0a522005-09-22 21:47:58 +02006179VIAPRO SMBUS DRIVER
6180P: Jean Delvare
6181M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006182L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006184F: Documentation/i2c/busses/i2c-viapro
6185F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006186
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006187VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6188P: Joseph Chan
6189M: JosephChan@via.com.tw
6190P: Scott Fang
6191M: ScottFang@viatech.com.cn
6192L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006194F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006195
Francois Romieu01f20732007-01-26 00:57:17 -08006196VIA VELOCITY NETWORK DRIVER
6197P: Francois Romieu
6198M: romieu@fr.zoreil.com
6199L: netdev@vger.kernel.org
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Patrick McHardybe7f8272007-10-23 20:26:36 -07006203VLAN (802.1Q)
6204P: Patrick McHardy
6205M: kaber@trash.net
6206L: netdev@vger.kernel.org
6207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/net/macvlan.c
6209F: include/linux/if_*vlan.h
6210F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006211
Florian Fainelli55e331c2009-06-16 15:33:53 -07006212VLYNQ BUS
6213P: Florian Fainelli
6214M: florian@openwrt.org
6215L: openwrt-devel@lists.openwrt.org
6216S: Maintained
6217F: drivers/vlynq/vlynq.c
6218F: include/linux/vlynq.h
6219
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006220VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6221P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006222M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006223P: Mark Brown
6224M: broonie@opensource.wolfsonmicro.com
6225W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006226W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006227T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006229F: drivers/regulator/
6230F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006231
Juerg Haefligerab413192006-09-24 20:54:04 +02006232VT1211 HARDWARE MONITOR DRIVER
6233P: Juerg Haefliger
6234M: juergh@gmail.com
6235L: lm-sensors@lm-sensors.org
6236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: Documentation/hwmon/vt1211
6238F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006239
Roger Lucas1de9e372005-11-26 20:20:05 +01006240VT8231 HARDWARE MONITOR DRIVER
6241P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006242M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006243L: lm-sensors@lm-sensors.org
6244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006245F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006246
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247W1 DALLAS'S 1-WIRE BUS
6248P: Evgeniy Polyakov
6249M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006251F: Documentation/w1/
6252F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
Charles Spirakis13927072006-07-05 18:05:15 +02006254W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006255P: Marc Hulsman
6256M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006257L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006259F: Documentation/hwmon/w83791d
6260F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006261
Rudolf Marek61db0112006-12-12 18:18:30 +01006262W83793 HARDWARE MONITORING DRIVER
6263P: Rudolf Marek
6264M: r.marek@assembler.cz
6265L: lm-sensors@lm-sensors.org
6266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006267F: Documentation/hwmon/w83793
6268F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006269
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270W83L51xD SD/MMC CARD INTERFACE DRIVER
6271P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006272M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006276WATCHDOG DEVICE DRIVERS
6277P: Wim Van Sebroeck
6278M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006279T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006281F: Documentation/watchdog/
6282F: drivers/watchdog/
6283F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006284
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6286P: Jean Tourrilhes
6287M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006288L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006291F: Documentation/networking/wavelan.txt
6292F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
6294WD7000 SCSI DRIVER
6295P: Miroslav Zagorac
6296M: zaga@fly.cc.fer.hr
6297L: linux-scsi@vger.kernel.org
6298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006301WIMAX STACK
6302P: Inaky Perez-Gonzalez
6303M: inaky.perez-gonzalez@intel.com
6304M: linux-wimax@intel.com
6305L: wimax@linuxwimax.org
6306S: Supported
6307W: http://linuxwimax.org
6308
David Vrabel18332a82008-09-17 16:34:44 +01006309WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6310P: David Vrabel
6311M: david.vrabel@csr.com
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: include/linux/wlp.h
6314F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006315
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006316WISTRON LAPTOP BUTTON DRIVER
6317P: Miloslav Trmac
6318M: mitr@volny.cz
6319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006321
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322WL3501 WIRELESS PCMCIA CARD DRIVER
6323P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006324M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006325L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006326W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006328F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
Mark Brownfebf1df2008-04-02 00:51:09 -04006330WM97XX TOUCHSCREEN DRIVERS
6331P: Mark Brown
6332M: broonie@opensource.wolfsonmicro.com
6333P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006334M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006335L: linux-input@vger.kernel.org
6336T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6337W: http://opensource.wolfsonmicro.com/node/7
6338S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006339F: drivers/input/touchscreen/*wm97*
6340F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006341
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342X.25 NETWORK LAYER
6343P: Henner Eisen
6344M: eis@baty.hanse.de
6345L: linux-x25@vger.kernel.org
6346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006347F: Documentation/networking/x25*
6348F: include/net/x25*
6349F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006351X86 ARCHITECTURE (32-BIT AND 64-BIT)
6352P: Thomas Gleixner
6353M: tglx@linutronix.de
6354P: Ingo Molnar
6355M: mingo@redhat.com
6356P: H. Peter Anvin
6357M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006358M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006359T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006361F: Documentation/x86/
6362F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006363
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006364XEN HYPERVISOR INTERFACE
6365P: Jeremy Fitzhardinge
6366M: jeremy@xensource.com
6367P: Chris Wright
6368M: chrisw@sous-sol.org
6369L: virtualization@lists.osdl.org
6370L: xen-devel@lists.xensource.com
6371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006372F: arch/x86/xen/
6373F: drivers/*/xen-*front.c
6374F: drivers/xen/
6375F: arch/x86/include/asm/xen/
6376F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006377
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378XFS FILESYSTEM
6379P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006380P: Felix Blyakher
6381M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006382M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006383L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006385T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006387F: Documentation/filesystems/xfs.txt
6388F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006390XILINX SYSTEMACE DRIVER
6391P: Grant Likely
6392M: grant.likely@secretlab.ca
6393W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006395F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006396
Peter Korsgaard238b8722006-12-06 20:35:17 -08006397XILINX UARTLITE SERIAL DRIVER
6398P: Peter Korsgaard
6399M: jacmet@sunsite.dk
6400L: linux-serial@vger.kernel.org
6401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006402F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006403
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404YAM DRIVER FOR AX.25
6405P: Jean-Paul Roubelat
6406M: jpr@f6fbb.org
6407L: linux-hams@vger.kernel.org
6408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006409F: drivers/net/hamradio/yam*
6410F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411
Henkaf64a5e2005-10-12 15:02:56 +02006412YEALINK PHONE DRIVER
6413P: Henk Vergonet
6414M: Henk.Vergonet@gmail.com
6415L: usbb2k-api-dev@nongnu.org
6416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: Documentation/input/yealink.txt
6418F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006419
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420Z8530 DRIVER FOR AX.25
6421P: Joerg Reuter
6422M: jreuter@yaina.de
6423W: http://yaina.de/jreuter/
6424W: http://www.qsl.net/dl1bke/
6425L: linux-hams@vger.kernel.org
6426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006427F: Documentation/networking/z8530drv.txt
6428F: drivers/net/hamradio/*scc.c
6429F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006431ZD1211RW WIRELESS DRIVER
6432P: Daniel Drake
6433M: dsd@gentoo.org
6434P: Ulrich Kunitz
6435M: kune@deine-taler.de
6436W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006437L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006438L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006440F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006441
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006444L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006446T: Mercurial http://linuxtv.org/hg/v4l-dvb
6447S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006448F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006450ZS DECSTATION Z85C30 SERIAL DRIVER
6451P: Maciej W. Rozycki
6452M: macro@linux-mips.org
6453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006454F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006455
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456THE REST
6457P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006458M: torvalds@linux-foundation.org
6459L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006460T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006462F: *
6463F: */