blob: 082df56d5b9acdf262bd8263c746049cbddcc030 [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
Ralf Baechle67332592009-07-17 04:47:19 +0000153M: ajk@comnets.uni-bremen.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154L: 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
Joe Perchesdc987922009-06-16 17:01:52 +0100166P: Alan Cox
167M: alan@lxorguk.ukuu.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168L: linux-serial@vger.kernel.org
169W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100170S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/serial/8250*
172F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
1748390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
175P: Paul Gortmaker
176M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700177L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: drivers/net/*8390*
180F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001829P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100183P: Eric Van Hensbergen
184M: ericvh@gmail.com
185P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500186M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100187P: Latchesar Ionkov
188M: lucho@ionkov.net
189L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500190W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700191T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700193F: Documentation/filesystems/9p.txt
194F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196A2232 SERIAL BOARD DRIVER
197P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198M: A2232@gmx.net
199L: linux-m68k@lists.linux-m68k.org
200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700201F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700203AACRAID SCSI RAID DRIVER
204P: Adaptec OEM Raid Solutions
205M: aacraid@adaptec.com
206L: linux-scsi@vger.kernel.org
207W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700209F: Documentation/scsi/aacraid.txt
210F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200213P: Hans de Goede
214M: j.w.r.degoede@hhs.nl
215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200218
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700219ABIT UGURU 3 HARDWARE MONITOR DRIVER
220P: Alistair John Strachan
221M: alistair@devzero.co.uk
222L: lm-sensors@lm-sensors.org
223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226ACENIC DRIVER
227P: Jes Sorensen
228M: jes@trained-monkey.org
229L: linux-acenic@sunsite.dk
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Peter Feuerere86435e2009-06-21 18:53:03 +0200233ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
234P: Peter Feuerer
235M: peter@piie.net
236W: http://piie.net/?section=acerhdf
237S: Maintained
238F: drivers/platform/x86/acerhdf.c
239
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000240ACER WMI LAPTOP EXTRAS
241P: Carlos Corbacho
242M: carlos@strangeworlds.co.uk
243L: aceracpi@googlegroups.com (subscribers-only)
244W: http://code.google.com/p/aceracpi
245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700246F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200249P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500250M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500251L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400252W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700253T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700255F: drivers/acpi/
256F: drivers/pnp/pnpacpi/
257F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500258
259ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400260P: Alexey Starikovskiy
261M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/battery.c
266F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500267
268ACPI EC DRIVER
269P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400270M: astarikovskiy@suse.de
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/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500275
276ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400277P: Zhang Rui
278M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500279L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300280W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700284ACPI PCI HOTPLUG DRIVER
285P: Kristen Carlson Accardi
286M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700287L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700289F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500290
Shaohua Li8e0af512009-07-27 18:11:02 -0400291ACPI PROCESSOR AGGREGATOR DRIVER
292P: Shaohua Li
293M: shaohua.li@intel.com
294L: linux-acpi@vger.kernel.org
295W: http://www.lesswatts.org/projects/acpi/
296S: Supported
297F: drivers/acpi/acpi_pad.c
298
Len Brown8b59a452007-01-08 19:03:28 -0500299ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400300P: Zhang Rui
301M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500302L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300303W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700305F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700306
Len Brown359acec2007-02-10 01:59:24 -0500307ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400308P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400309M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500310L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300311W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500314
Carlos Corbachobff431e2008-02-05 02:17:04 +0000315ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200316P: Carlos Corbacho
317M: carlos@strangeworlds.co.uk
318L: linux-acpi@vger.kernel.org
319W: http://www.lesswatts.org/projects/acpi/
320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700321F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000322
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100323AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200324P: Kyle McMartin
325M: kyle@mcmartin.ca
326P: Thibaut Varene
327M: T-Bone@parisc-linux.org
328W: http://wiki.parisc-linux.org/AD1889
329L: linux-parisc@vger.kernel.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333ADM1025 HARDWARE MONITOR DRIVER
334P: Jean Delvare
335M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200336L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700338F: Documentation/hwmon/adm1025
339F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Corentin Labbecae2caa2007-02-14 21:15:04 +0100341ADM1029 HARDWARE MONITOR DRIVER
342P: Corentin Labbe
343M: corentin.labbe@geomatys.fr
344L: lm-sensors@lm-sensors.org
345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700346F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100347
Michael Wucc0b88c2007-08-31 01:15:25 -0400348ADM8211 WIRELESS DRIVER
349P: Michael Wu
350M: flamingice@sourmilk.net
351L: linux-wireless@vger.kernel.org
352W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700353T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700355F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357ADT746X FAN DRIVER
358P: Colin Leroy
359M: colin@colino.net
360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700361F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400363ADVANSYS SCSI DRIVER
364P: Matthew Wilcox
365M: matthew@wil.cx
366L: linux-scsi@vger.kernel.org
367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700368F: Documentation/scsi/advansys.txt
369F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371AEDSP16 DRIVER
372P: Riccardo Facchetti
373M: fizban@tin.it
374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700375F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377AFFS FILE SYSTEM
378P: Roman Zippel
379M: zippel@linux-m68k.org
380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700381F: Documentation/filesystems/affs.txt
382F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700384AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
385P: David Howells
386M: dhowells@redhat.com
387L: linux-afs@lists.infradead.org
388S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700389F: fs/afs/
390F: include/net/af_rxrpc.h
391F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400394P: David Airlie
395M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700396T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/char/agp/
399F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401AHA152X SCSI DRIVER
402P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700403M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404L: linux-scsi@vger.kernel.org
405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700406F: drivers/scsi/aha152x*
407F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Hannes Reinecke64624d42007-10-19 10:32:29 +0200409AIC7XXX / AIC79XX SCSI DRIVER
410P: Hannes Reinecke
411M: hare@suse.de
412L: linux-scsi@vger.kernel.org
413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700414F: drivers/scsi/aic7xxx/
415F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200416
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700417AIO
418P: Benjamin LaHaise
419M: bcrl@kvack.org
420L: linux-aio@kvack.org
421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700422F: fs/aio.c
423F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425ALCATEL SPEEDTOUCH USB DRIVER
426P: Duncan Sands
427M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700428L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429W: http://www.linux-usb.org/SpeedTouch/
430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700431F: drivers/usb/atm/speedtch.c
432F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Pierre Ossman272f1332007-05-14 21:25:26 +0200434ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200435P: Manuel Lauss
436M: manuel.lauss@gmail.com
437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700438F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200439
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000440ALI1563 I2C DRIVER
441P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100442M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100443L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700445F: Documentation/i2c/busses/i2c-ali1563
446F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448ALPHA PORT
449P: Richard Henderson
450M: rth@twiddle.net
451S: Odd Fixes for 2.4; Maintained for 2.6.
452P: Ivan Kokshaysky
453M: ink@jurassic.park.msu.ru
454S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700455L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700456F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700458AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
459P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700460M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700461L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700463F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700464
Jordan Crousef90b8112006-01-06 00:12:14 -0800465AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100466P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700467L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800468W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700470F: arch/x86/kernel/geode_32.c
471F: drivers/char/hw_random/geode-rng.c
472F: drivers/crypto/geode*
473F: drivers/video/geode/
474F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800475
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200476AMD IOMMU (AMD-VI)
477P: Joerg Roedel
478M: joerg.roedel@amd.com
479L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700480T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700482F: arch/x86/kernel/amd_iommu*.c
483F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200484
Peter Orubae7f5b302008-07-28 18:44:11 +0200485AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700486P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700487M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700488L: amd64-microcode@amd64.org
489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700490F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200491
Stelian Pop284f42b2006-12-12 18:18:31 +0100492AMS (Apple Motion Sensor) DRIVER
493P: Stelian Pop
494M: stelian@popies.net
495P: Michael Hanselmann
496M: linux-kernel@hansmi.ch
497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700498F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100499
Tom Tuckerf94b5332006-09-22 15:22:48 -0700500AMSO1100 RNIC DRIVER
501P: Tom Tucker
502M: tom@opengridcomputing.com
503P: Steve Wise
504M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700505L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700507F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700508
Johannes Berg42269062006-07-25 16:15:50 +0200509AOA (Apple Onboard Audio) ALSA DRIVER
510P: Johannes Berg
511M: johannes@sipsolutions.net
512L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700513L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700515F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517APM DRIVER
518P: Stephen Rothwell
519M: sfr@canb.auug.org.au
520L: linux-laptop@vger.kernel.org
521W: http://www.canb.auug.org.au/~sfr/
522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700523F: arch/x86/kernel/apm_32.c
524F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700526APPLE BCM5974 MULTITOUCH DRIVER
527P: Henrik Rydberg
528M: rydberg@euromail.se
529L: linux-input@vger.kernel.org
530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700531F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700532
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700533APPLE SMC DRIVER
534P: Nicolas Boichat
535M: nicolas@boichat.ch
536L: mactel-linux-devel@lists.sourceforge.net
537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700538F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540APPLETALK NETWORK LAYER
541P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300542M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: drivers/net/appletalk/
545F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400547APPLETOUCH TOUCHPAD DRIVER
548P: Johannes Berg
549M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400550L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700552F: Documentation/input/appletouch.txt
553F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400554
Jaya Kumar1154ea72005-06-21 17:17:04 -0700555ARC FRAMEBUFFER DRIVER
556P: Jaya Kumar
557M: jayalk@intworks.biz
558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700559F: drivers/video/arcfb.c
560F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562ARM MFM AND FLOPPY DRIVERS
563P: Ian Molton
564M: spyro@f2s.com
565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700566F: arch/arm/lib/floppydma.S
567F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Russell Kingd4275352009-04-16 14:05:27 +0100569ARM PORT
570P: Russell King
571M: linux@arm.linux.org.uk
572L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
573W: http://www.arm.linux.org.uk/
574S: Maintained
575F: arch/arm/
576
Russell King2761f5c2007-05-24 06:56:08 +0200577ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200578S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700579F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200580
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800581ARM/ADI ROADRUNNER MACHINE SUPPORT
582P: Lennert Buytenhek
583M: kernel@wantstofly.org
584L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700586F: arch/arm/mach-ixp23xx/
587F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800588
589ARM/ADS SPHERE MACHINE SUPPORT
590P: Lennert Buytenhek
591M: kernel@wantstofly.org
592L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
593S: Maintained
594
Sergey Lapin9c784f92008-08-03 02:29:48 +0100595ARM/AFEB9260 MACHINE SUPPORT
596P: Sergey Lapin
597M: slapin@ossfans.org
598L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
599S: Maintained
600
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800601ARM/AJECO 1ARM MACHINE SUPPORT
602P: Lennert Buytenhek
603M: kernel@wantstofly.org
604L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
605S: Maintained
606
Andrew Victord4a89c72006-12-04 13:56:21 +0100607ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200608P: Andrew Victor
609M: linux@maxim.org.za
610L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
611W: http://maxim.org.za/at91_26.html
612S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100613
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800614ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
615P: Lennert Buytenhek
616M: kernel@wantstofly.org
617L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
618S: Maintained
619
620ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
621P: Lennert Buytenhek
622M: kernel@wantstofly.org
623L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
624S: Maintained
625
Russell Kingd4275352009-04-16 14:05:27 +0100626ARM/CLKDEV SUPPORT
627P: Russell King
628M: linux@arm.linux.org.uk
629L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
630F: arch/arm/common/clkdev.c
631F: arch/arm/include/asm/clkdev.h
632
Mike Rapoportd48134e2008-08-20 09:03:26 +0100633ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100634P: Mike Rapoport
635M: mike@compulab.co.il
636L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
637S: Maintained
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639ARM/CORGI MACHINE SUPPORT
640P: Richard Purdie
641M: rpurdie@rpsys.net
642S: Maintained
643
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200644ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
645P: Paulius Zaleckas
646M: paulius.zaleckas@teltonika.lt
647L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700648T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200649S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300650F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200651
Russell Kingd4275352009-04-16 14:05:27 +0100652ARM/EBSA110 MACHINE SUPPORT
653P: Russell King
654M: linux@arm.linux.org.uk
655L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
656W: http://www.arm.linux.org.uk/
657S: Maintained
658F: arch/arm/mach-ebsa110/
659F: drivers/net/arm/am79c961a.*
660
Russell Kinga9da4f72008-07-12 21:42:04 +0100661ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
662P: Daniel Ribeiro
663M: drwyrm@gmail.com
664P: Stefan Schmidt
665M: stefan@openezx.org
666P: Harald Welte
667M: laforge@openezx.org
668L: openezx-devel@lists.openezx.org (subscribers-only)
669W: http://www.openezx.org/
670S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200671T: topgit git://git.openezx.org/openezx.git
672F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100673
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200674ARM/FARADAY FA526 PORT
675P: Paulius Zaleckas
676M: paulius.zaleckas@teltonika.lt
677L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
678S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300679F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200680
Russell Kingd4275352009-04-16 14:05:27 +0100681ARM/FOOTBRIDGE ARCHITECTURE
682P: Russell King
683M: linux@arm.linux.org.uk
684L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
685W: http://www.arm.linux.org.uk/
686S: Maintained
687F: arch/arm/include/asm/hardware/dec21285.h
688F: arch/arm/mach-footbridge/
689
Sascha Hauer86183a52008-07-24 23:50:35 +0200690ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
691P: Sascha Hauer
692M: kernel@pengutronix.de
693L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
694S: Maintained
695
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800696ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
697P: Lennert Buytenhek
698M: kernel@wantstofly.org
699L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
700S: Maintained
701
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100702ARM/GUMSTIX MACHINE SUPPORT
703P: Steve Sakoman
704M: sakoman@gmail.com
705L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
706S: Maintained
707
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200708ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
709P: Philipp Zabel
710M: philipp.zabel@gmail.com
711S: Maintained
712F: arch/arm/mach-pxa/hx4700.c
713F: arch/arm/mach-pxa/include/mach/hx4700.h
714
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100715ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200716P: Kristoffer Ericson
717M: kristoffer.ericson@gmail.com
718W: www.jlime.com
719S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100720
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800721ARM/INTEL IOP32X ARM ARCHITECTURE
722P: Lennert Buytenhek
723M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100724P: Dan Williams
725M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800726L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100727S: Supported
728
729ARM/INTEL IOP33X ARM ARCHITECTURE
730P: Dan Williams
731M: dan.j.williams@intel.com
732L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
733S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800734
735ARM/INTEL IOP13XX ARM ARCHITECTURE
736P: Lennert Buytenhek
737M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100738P: Dan Williams
739M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100741S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800742
743ARM/INTEL IQ81342EX MACHINE SUPPORT
744P: Lennert Buytenhek
745M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100746P: Dan Williams
747M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800748L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100749S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800750
751ARM/INTEL IXP2000 ARM ARCHITECTURE
752P: Lennert Buytenhek
753M: kernel@wantstofly.org
754L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
755S: Maintained
756
757ARM/INTEL IXDP2850 MACHINE SUPPORT
758P: Lennert Buytenhek
759M: kernel@wantstofly.org
760L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
761S: Maintained
762
763ARM/INTEL IXP23XX ARM ARCHITECTURE
764P: Lennert Buytenhek
765M: kernel@wantstofly.org
766L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
767S: Maintained
768
769ARM/INTEL XSC3 (MANZANO) ARM CORE
770P: Lennert Buytenhek
771M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100772P: Dan Williams
773M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800774L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100775S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800776
777ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
778P: Lennert Buytenhek
779M: kernel@wantstofly.org
780L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
781S: Maintained
782
783ARM/LOGICPD PXA270 MACHINE SUPPORT
784P: Lennert Buytenhek
785M: kernel@wantstofly.org
786L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
787S: Maintained
788
Philipp Zabel3b8861712008-07-09 21:27:15 +0100789ARM/MAGICIAN MACHINE SUPPORT
790P: Philipp Zabel
791M: philipp.zabel@gmail.com
792S: Maintained
793
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200794ARM/MIOA701 MACHINE SUPPORT
795P: Robert Jarzmik
796M: robert.jarzmik@free.fr
797L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
798F: arch/arm/mach-pxa/mioa701.c
799S: Maintained
800
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100801ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
802P: Michael Petchkovsky
803M: mkpetch@internode.on.net
804S: Maintained
805
Andy Green9d762952009-05-19 06:41:42 -0300806ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
807P: Nelson Castillo
808M: arhuaco@freaks-unidos.net
809L: openmoko-kernel@lists.openmoko.org (subscribers-only)
810W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
811S: Supported
812
Dirk Opfer8459c152005-11-06 14:27:52 +0000813ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800814P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100815M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000816P: Dirk Opfer
817M: dirk@opfer-online.de
818S: Maintained
819
Marek Vasut54088bf2009-03-24 00:29:29 +0100820ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100821P: Marek Vasut
822M: marek.vasut@gmail.com
823W: http://hackndev.com
824S: Maintained
825
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200826ARM/PALM TREO 680 SUPPORT
827P: Tomas Cech
828M: sleep_walker@suse.cz
829W: http://hackndev.com
830S: Maintained
831
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100832ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700833P: Sergey Lapin
834M: slapin@ossfans.org
835W: http://hackndev.com
836S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838ARM/PLEB SUPPORT
839P: Peter Chubb
840M: pleb@gelato.unsw.edu.au
841W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
842S: Maintained
843
844ARM/PT DIGITAL BOARD PORT
845P: Stefan Eletzhofer
846M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700847L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848W: http://www.arm.linux.org.uk/
849S: Maintained
850
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800851ARM/RADISYS ENP2611 MACHINE SUPPORT
852P: Lennert Buytenhek
853M: kernel@wantstofly.org
854L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
855S: Maintained
856
Russell Kingd4275352009-04-16 14:05:27 +0100857ARM/RISCPC ARCHITECTURE
858P: Russell King
859M: linux@arm.linux.org.uk
860L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
861W: http://www.arm.linux.org.uk/
862S: Maintained
863F: arch/arm/common/time-acorn.c
864F: arch/arm/include/asm/hardware/entry-macro-iomd.S
865F: arch/arm/include/asm/hardware/ioc.h
866F: arch/arm/include/asm/hardware/iomd.h
867F: arch/arm/include/asm/hardware/memc.h
868F: arch/arm/mach-rpc/
869F: drivers/net/arm/ether*
870F: drivers/scsi/arm/
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872ARM/SHARK MACHINE SUPPORT
873P: Alexander Schulz
874M: alex@shark-linux.de
875W: http://www.shark-linux.de/shark.html
876S: Maintained
877
Ben Dooksb21477f2009-06-13 10:46:34 +0100878ARM/SAMSUNG ARM ARCHITECTURES
879P: Ben Dooks
880M: ben-linux@fluff.org
881L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
882W: http://www.fluff.org/ben/linux/
883S: Maintained
884F: arch/arm/plat-s3c/
885F: arch/arm/plat-s3c24xx/
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887ARM/S3C2410 ARM ARCHITECTURE
888P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800889M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700890L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891W: http://www.fluff.org/ben/linux/
892S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100893F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895ARM/S3C2440 ARM ARCHITECTURE
896P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800897M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700898L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899W: http://www.fluff.org/ben/linux/
900S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100901F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Ben Dooksb21477f2009-06-13 10:46:34 +0100903ARM/S3C2442 ARM ARCHITECTURE
904P: Ben Dooks
905M: ben-linux@fluff.org
906L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
907W: http://www.fluff.org/ben/linux/
908S: Maintained
909F: arch/arm/mach-s3c2442/
910
911ARM/S3C2443 ARM ARCHITECTURE
912P: Ben Dooks
913M: ben-linux@fluff.org
914L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
915W: http://www.fluff.org/ben/linux/
916S: Maintained
917F: arch/arm/mach-s3c2443/
918
919ARM/S3C6400 ARM ARCHITECTURE
920P: Ben Dooks
921M: ben-linux@fluff.org
922L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
923W: http://www.fluff.org/ben/linux/
924S: Maintained
925F: arch/arm/mach-s3c6400/
926
927ARM/S3C6410 ARM ARCHITECTURE
928P: Ben Dooks
929M: ben-linux@fluff.org
930L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
931W: http://www.fluff.org/ben/linux/
932S: Maintained
933F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800935ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
936P: Lennert Buytenhek
937M: kernel@wantstofly.org
938L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
939S: Maintained
940
941ARM/THECUS N2100 MACHINE SUPPORT
942P: Lennert Buytenhek
943M: kernel@wantstofly.org
944L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
945S: Maintained
946
wanzongshun98ad6e32009-02-13 06:04:32 +0100947ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700948P: Wan ZongShun
949M: mcuos.com@gmail.com
950L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
951W: http://www.mcuos.com
952S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100953
Russell Kingd4275352009-04-16 14:05:27 +0100954ARM/VFP SUPPORT
955P: Russell King
956M: linux@arm.linux.org.uk
957L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
958W: http://www.arm.linux.org.uk/
959S: Maintained
960F: arch/arm/vfp/
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962ARPD SUPPORT
963P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700964L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700966F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500969P: Corentin Chary
970M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971P: Karol Kozimor
972M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000974W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700976F: arch/x86/kernel/acpi/boot.c
977F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400979ASUS ASB100 HARDWARE MONITOR DRIVER
980P: Mark M. Hoffman
981M: mhoffman@lightlink.com
982L: lm-sensors@lm-sensors.org
983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700984F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400985
Corentin Chary85091b72007-01-26 14:04:30 +0100986ASUS LAPTOP EXTRAS DRIVER
987P: Corentin Chary
988M: corentincj@iksaif.net
989L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000990W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700992F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100993
Andrew Morton953a6472008-11-06 12:53:28 -0800994ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700995P: Dan Williams
996M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100997P: Maciej Sosnowski
998M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700999W: http://sourceforge.net/projects/xscaleiop
1000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001001F: Documentation/crypto/async-tx-api.txt
1002F: crypto/async_tx/
1003F: drivers/dma/
1004F: include/linux/dmaengine.h
1005F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001006
Randy Dunlape7839f22008-10-12 16:11:45 -07001007ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008P: Ed L. Cashin
1009M: ecashin@coraid.com
1010W: http://www.coraid.com/support/linux
1011S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001012F: Documentation/aoe/
1013F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001015ATHEROS ATH5K WIRELESS DRIVER
1016P: Jiri Slaby
1017M: jirislaby@gmail.com
1018P: Nick Kossifidis
1019M: mickflemm@gmail.com
1020P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -07001021M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -04001022P: Bob Copeland
1023M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001024L: linux-wireless@vger.kernel.org
1025L: ath5k-devel@lists.ath5k.org
1026S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001027F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001028
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001029ATHEROS ATH9K WIRELESS DRIVER
1030P: Luis R. Rodriguez
1031M: lrodriguez@atheros.com
1032P: Jouni Malinen
1033M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -04001034P: Sujith Manoharan
1035M: Sujith.Manoharan@atheros.com
1036P: Vasanthakumar Thiagarajan
1037M: vasanth@atheros.com
1038P: Senthil Balasubramanian
1039M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001040L: linux-wireless@vger.kernel.org
1041L: ath9k-devel@lists.ath9k.org
1042S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001043F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001044
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001045ATHEROS AR9170 WIRELESS DRIVER
1046P: Christian Lamparter
1047M: chunkeey@web.de
1048L: linux-wireless@vger.kernel.org
1049W: http://wireless.kernel.org/en/users/Drivers/ar9170
1050S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001051F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001052
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001053ATI_REMOTE2 DRIVER
1054P: Ville Syrjala
1055M: syrjala@sci.fi
1056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001057F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001058
Chris Snook7ae115b2008-09-09 03:26:57 -04001059ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001060P: Jay Cliburn
1061M: jcliburn@gmail.com
1062P: Chris Snook
1063M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -04001064P: Jie Yang
1065M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001066L: atl1-devel@lists.sourceforge.net
1067W: http://sourceforge.net/projects/atl1
1068W: http://atl1.sourceforge.net
1069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001070F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072ATM
1073P: Chas Williams
1074M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -07001075L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001076L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077W: http://linux-atm.sourceforge.net
1078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001079F: drivers/atm/
1080F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Pierre Ossman272f1332007-05-14 21:25:26 +02001082ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001083P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001084M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001085L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1086W: http://www.atmel.com/products/AT91/
1087W: http://www.at91.com/
1088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001089F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001090
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001091ATMEL AT91 / AT32 MCI DRIVER
1092P: Nicolas Ferre
1093M: nicolas.ferre@atmel.com
1094S: Maintained
1095F: drivers/mmc/host/atmel-mci.c
1096F: drivers/mmc/host/atmel-mci-regs.h
1097
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001098ATMEL AT91 / AT32 SERIAL DRIVER
1099P: Haavard Skinnemoen
1100M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001101S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001102F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001103
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001104ATMEL LCDFB DRIVER
1105P: Nicolas Ferre
1106M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001107L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001109F: drivers/video/atmel_lcdfb.c
1110F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001111
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001112ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001113P: Haavard Skinnemoen
1114M: hskinnemoen@atmel.com
1115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001116F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001117
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001118ATMEL SPI DRIVER
1119P: Haavard Skinnemoen
1120M: hskinnemoen@atmel.com
1121S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001122F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001123
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001124ATMEL USBA UDC DRIVER
1125P: Haavard Skinnemoen
1126M: hskinnemoen@atmel.com
1127L: kernel@avr32linux.org
1128W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001130F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132ATMEL WIRELESS DRIVER
1133P: Simon Kelley
1134M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001135L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136W: http://www.thekelleys.org.uk/atmel
1137W: http://atmelwlandriver.sourceforge.net/
1138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001139F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Chris Wrighta92b7b82005-07-07 18:12:23 -07001141AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001142P: Al Viro
1143M: viro@zeniv.linux.org.uk
1144P: Eric Paris
1145M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001146L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001147W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001148T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001150F: include/linux/audit.h
1151F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001152
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001153AUXILIARY DISPLAY DRIVERS
1154P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001155M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001156W: http://miguelojeda.es/auxdisplay.htm
1157W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001159F: drivers/auxdisplay/
1160F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001161
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001162AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001163P: Haavard Skinnemoen
1164M: hskinnemoen@atmel.com
1165W: http://www.atmel.com/products/AVR32/
1166W: http://avr32linux.org/
1167W: http://avrfreaks.net/
1168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001169F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001170
1171AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001172P: Haavard Skinnemoen
1173M: hskinnemoen@atmel.com
1174S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001175F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177AX.25 NETWORK LAYER
1178P: Ralf Baechle
1179M: ralf@linux-mips.org
1180L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001181W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001183F: include/linux/ax25.h
1184F: include/net/ax25.h
1185F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001187B43 WIRELESS DRIVER
1188P: Michael Buesch
1189M: mb@bu3sch.de
1190P: Stefano Brivio
1191M: stefano.brivio@polimi.it
1192L: linux-wireless@vger.kernel.org
1193W: http://linuxwireless.org/en/users/Drivers/b43
1194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001195F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001196
1197B43LEGACY WIRELESS DRIVER
1198P: Larry Finger
1199M: Larry.Finger@lwfinger.net
1200P: Stefano Brivio
1201M: stefano.brivio@polimi.it
1202L: linux-wireless@vger.kernel.org
1203W: http://linuxwireless.org/en/users/Drivers/b43
1204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001205F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001206
Richard Purdie300abeb2007-02-07 22:21:07 +00001207BACKLIGHT CLASS/SUBSYSTEM
1208P: Richard Purdie
1209M: rpurdie@rpsys.net
1210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/video/backlight/
1212F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001213
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001214BAYCOM/HDLCDRV DRIVERS FOR AX.25
1215P: Thomas Sailer
1216M: t.sailer@alumni.ethz.ch
1217L: linux-hams@vger.kernel.org
1218W: http://www.baycom.org/~tom/ham/ham.html
1219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001220F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001221
1222BEFS FILE SYSTEM
1223P: Sergey S. Kostyliov
1224M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001226F: Documentation/filesystems/befs.txt
1227F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001228
1229BFS FILE SYSTEM
1230P: Tigran A. Aivazian
1231M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001233F: Documentation/filesystems/bfs.txt
1234F: fs/bfs/
1235F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001236
Bryan Wu1394f032007-05-06 14:50:22 -07001237BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001238P: Mike Frysinger
1239M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001240L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001241W: http://blackfin.uclinux.org
1242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001243F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001244
Bryan Wue190d6b2007-07-17 14:43:44 +08001245BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001246P: Michael Hennerich
1247M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001248L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001249W: http://blackfin.uclinux.org
1250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001251F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001252
Mike Frysinger566da5b2007-06-11 15:31:30 +08001253BLACKFIN RTC DRIVER
1254P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001255M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001256L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001257W: http://blackfin.uclinux.org
1258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001259F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001260
Bryan Wu1394f032007-05-06 14:50:22 -07001261BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001262P: Sonic Zhang
1263M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001264L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001265W: http://blackfin.uclinux.org
1266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001267F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001268
Bryan Wu1e6d3202007-07-15 02:50:02 +08001269BLACKFIN WATCHDOG DRIVER
1270P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001271M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001272L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001273W: http://blackfin.uclinux.org
1274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001275F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001276
Bryan Wud24ecfc2007-05-01 23:26:32 +02001277BLACKFIN I2C TWI DRIVER
1278P: Sonic Zhang
1279M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001280L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001281W: http://blackfin.uclinux.org/
1282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001283F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285BLOCK LAYER
1286P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001287M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001288T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001290F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Joern Engel2b54aae2008-02-06 01:38:02 -08001292BLOCK2MTD DRIVER
1293P: Joern Engel
1294M: joern@lazybastard.org
1295L: linux-mtd@lists.infradead.org
1296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001297F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001298
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001299BLUETOOTH DRIVERS
1300P: Marcel Holtmann
1301M: marcel@holtmann.org
1302L: linux-bluetooth@vger.kernel.org
1303W: http://www.bluez.org/
1304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001305F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307BLUETOOTH SUBSYSTEM
1308P: Marcel Holtmann
1309M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001310L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001311W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001312T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001314F: net/bluetooth/
1315F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001318P: Jay Vosburgh
1319M: fubar@us.ibm.com
1320L: bonding-devel@lists.sourceforge.net
1321W: http://sourceforge.net/projects/bonding/
1322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001323F: drivers/net/bonding/
1324F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Gary Zambrano39105892006-06-22 17:26:20 -07001326BROADCOM B44 10/100 ETHERNET DRIVER
1327P: Gary Zambrano
1328M: zambrano@broadcom.com
1329L: netdev@vger.kernel.org
1330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001331F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001332
Michael Chan948c51e2006-06-04 02:51:39 -07001333BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1334P: Michael Chan
1335M: mchan@broadcom.com
1336L: netdev@vger.kernel.org
1337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001338F: drivers/net/bnx2.*
1339F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001340
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001341BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001342P: Eilon Greenstein
1343M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001344L: netdev@vger.kernel.org
1345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001346F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001347
Michael Chan948c51e2006-06-04 02:51:39 -07001348BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001349P: Matt Carlson
1350M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001351P: Michael Chan
1352M: mchan@broadcom.com
1353L: netdev@vger.kernel.org
1354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001355F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001356
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001357BSG (block layer generic sg v4 driver)
1358P: FUJITA Tomonori
1359M: fujita.tomonori@lab.ntt.co.jp
1360L: linux-scsi@vger.kernel.org
1361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: block/bsg.c
1363F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001364
Michael Bueschff1d5c22008-07-25 01:46:10 -07001365BT8XXGPIO DRIVER
1366P: Michael Buesch
1367M: mb@bu3sch.de
1368W: http://bu3sch.de/btgpio.php
1369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001370F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001371
Joe Percheseb1eb042009-01-21 10:49:16 -05001372BTRFS FILE SYSTEM
1373P: Chris Mason
1374M: chris.mason@oracle.com
1375L: linux-btrfs@vger.kernel.org
1376W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001377T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001379F: Documentation/filesystems/btrfs.txt
1380F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001383P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001384M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001385L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001386W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001387T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001389F: Documentation/video4linux/bttv/
1390F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
David Howellsa5432f52009-04-20 15:46:45 +01001392CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1393P: David Howells
1394M: dhowells@redhat.com
1395L: linux-cachefs@redhat.com
1396S: Supported
1397F: Documentation/filesystems/caching/cachefiles.txt
1398F: fs/cachefiles/
1399
Jonathan Corbet77d51402007-03-22 19:44:17 -03001400CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001401P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001402M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001403L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001404T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001406F: Documentation/video4linux/cafe_ccic
1407F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001408
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001409CALGARY x86-64 IOMMU
1410P: Muli Ben-Yehuda
1411M: muli@il.ibm.com
1412P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001413M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001414L: discuss@x86-64.org
1415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001416F: arch/x86/kernel/pci-calgary_64.c
1417F: arch/x86/kernel/tce_64.c
1418F: arch/x86/include/asm/calgary.h
1419F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001420
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001421CAN NETWORK LAYER
1422P: Urs Thuermann
1423M: urs.thuermann@volkswagen.de
1424P: Oliver Hartkopp
1425M: oliver.hartkopp@volkswagen.de
1426L: socketcan-core@lists.berlios.de (subscribers-only)
1427W: http://developer.berlios.de/projects/socketcan/
1428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: drivers/net/can/
1430F: include/linux/can/
1431F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001432
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001433CAN NETWORK DRIVERS
1434P: Wolfgang Grandegger
1435M: wg@grandegger.com
1436L: socketcan-core@lists.berlios.de (subscribers-only)
1437W: http://developer.berlios.de/projects/socketcan/
1438S: Maintained
1439
Arnd Bergmannb8154542008-05-16 11:10:59 +02001440CELL BROADBAND ENGINE ARCHITECTURE
1441P: Arnd Bergmann
1442M: arnd@arndb.de
1443L: linuxppc-dev@ozlabs.org
1444L: cbe-oss-dev@ozlabs.org
1445W: http://www.ibm.com/developerworks/power/cell/
1446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001447F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001448F: arch/powerpc/include/asm/spu*.h
1449F: arch/powerpc/oprofile/*cell*
1450F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001451
David Vrabel18332a82008-09-17 16:34:44 +01001452CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1453P: David Vrabel
1454M: david.vrabel@csr.com
1455L: linux-usb@vger.kernel.org
1456S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001457F: Documentation/usb/WUSB-Design-overview.txt
1458F: Documentation/usb/wusb-cbaf
1459F: drivers/usb/wusbcore/
1460F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001461
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001462CFAG12864B LCD DRIVER
1463P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001464M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001465W: http://miguelojeda.es/auxdisplay.htm
1466W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001468F: drivers/auxdisplay/cfag12864b.c
1469F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001470
1471CFAG12864BFB LCD FRAMEBUFFER DRIVER
1472P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001473M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001474W: http://miguelojeda.es/auxdisplay.htm
1475W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001477F: drivers/auxdisplay/cfag12864bfb.c
1478F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001479
Johannes Berg704232c2007-04-23 12:20:05 -07001480CFG80211 and NL80211
1481P: Johannes Berg
1482M: johannes@sipsolutions.net
1483L: linux-wireless@vger.kernel.org
1484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001485F: include/linux/nl80211.h
1486F: include/net/cfg80211.h
1487F: net/wireless/*
1488X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001489
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001490CHECKPATCH
1491P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001492M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001494F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001495
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001496CISCO 10G ETHERNET DRIVER
1497P: Scott Feldman
1498M: scofeldm@cisco.com
1499P: Joe Eykholt
1500M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001502F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001503
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001504CIRRUS LOGIC EP93XX ETHERNET DRIVER
1505P: Lennert Buytenhek
1506M: kernel@wantstofly.org
1507L: netdev@vger.kernel.org
1508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001510
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001511CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1512P: Lennert Buytenhek
1513M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001514L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001516F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001517
Timur Tabid9e9d822008-04-24 08:45:26 +10001518CIRRUS LOGIC CS4270 SOUND DRIVER
1519P: Timur Tabi
1520M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001521L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001523F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1526P: Cirrus Logic Corporation (kernel 2.2 driver)
1527M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1528P: Nils Faerber (port to kernel 2.4)
1529M: Nils Faerber <nils@kernelconcepts.de>
1530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001531F: Documentation/input/cs461x.txt
1532F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Russell Kingd4275352009-04-16 14:05:27 +01001534CLK API
1535P: Russell King
1536M: linux@arm.linux.org.uk
1537F: include/linux/clk.h
1538
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001539CISCO FCOE HBA DRIVER
1540P: Abhijeet Joglekar
1541M: abjoglek@cisco.com
1542P: Joe Eykholt
1543M: jeykholt@cisco.com
1544L: linux-scsi@vger.kernel.org
1545S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001546F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548CODA FILE SYSTEM
1549P: Jan Harkes
1550M: jaharkes@cs.cmu.edu
1551M: coda@cs.cmu.edu
1552L: codalist@coda.cs.cmu.edu
1553W: http://www.coda.cs.cmu.edu/
1554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001555F: Documentation/filesystems/coda.txt
1556F: fs/coda/
1557F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001559COMMON INTERNET FILE SYSTEM (CIFS)
1560P: Steve French
1561M: sfrench@samba.org
1562L: linux-cifs-client@lists.samba.org
1563L: samba-technical@lists.samba.org
1564W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001565T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001567F: Documentation/filesystems/cifs.txt
1568F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570COMPACTPCI HOTPLUG CORE
1571P: Scott Murray
1572M: scottm@somanetworks.com
1573M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001574L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001576F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1579P: Scott Murray
1580M: scottm@somanetworks.com
1581M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001582L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001584F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586COMPACTPCI HOTPLUG GENERIC DRIVER
1587P: Scott Murray
1588M: scottm@somanetworks.com
1589M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001590L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001592F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001594COMPAL LAPTOP SUPPORT
1595P: Cezary Jackiewicz
1596M: cezary.jackiewicz@gmail.com
1597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001598F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600COMPUTONE INTELLIPORT MULTIPORT CARD
1601P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001602M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: Documentation/serial/computone.txt
1606F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Simon Arlott949be0f2007-03-06 02:47:46 -08001608CONEXANT ACCESSRUNNER USB DRIVER
1609P: Simon Arlott
1610M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001611L: accessrunner-general@lists.sourceforge.net
1612W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001614F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001616CONFIGFS
1617P: Joel Becker
1618M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001619S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001620F: fs/configfs/
1621F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001622
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001623CONNECTOR
1624P: Evgeniy Polyakov
1625M: zbr@ioremap.net
1626L: netdev@vger.kernel.org
1627S: Maintained
1628F: drivers/connector/
1629
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001630CONTROL GROUPS (CGROUPS)
1631P: Paul Menage
1632M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001633P: Li Zefan
1634M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001635L: containers@lists.linux-foundation.org
1636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: include/linux/cgroup*
1638F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001639F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001640
Rudolf Marekbebe4672007-05-08 17:22:02 +02001641CORETEMP HARDWARE MONITORING DRIVER
1642P: Rudolf Marek
1643M: r.marek@assembler.cz
1644L: lm-sensors@lm-sensors.org
1645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001646F: Documentation/hwmon/coretemp
1647F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649COSA/SRP SYNC SERIAL DRIVER
1650P: Jan "Yenya" Kasprzak
1651M: kas@fi.muni.cz
1652W: http://www.fi.muni.cz/~kas/cosa/
1653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001654F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Florian Fainelli4371ee32009-06-01 02:43:17 -07001656CPMAC ETHERNET DRIVER
1657P: Florian Fainelli
1658M: florian@openwrt.org
1659L: netdev@vger.kernel.org
1660S: Maintained
1661F: drivers/net/cpmac.c
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663CPU FREQUENCY DRIVERS
1664P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001665M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001666L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001668T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001670F: arch/x86/kernel/cpu/cpufreq/
1671F: drivers/cpufreq/
1672F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674CPUID/MSR DRIVER
1675P: H. Peter Anvin
1676M: hpa@zytor.com
1677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001678F: arch/x86/kernel/cpuid.c
1679F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Paul Jacksoned90fb42005-09-27 21:45:37 -07001681CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001682P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001683M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001684W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001685W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001686S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001687F: Documentation/cgroups/cpusets.txt
1688F: include/linux/cpuset.h
1689F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001692W: http://sourceforge.net/projects/cramfs/
1693S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001694F: Documentation/filesystems/cramfs.txt
1695F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697CRIS PORT
1698P: Mikael Starvik
1699M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001700P: Jesper Nilsson
1701M: jesper.nilsson@axis.com
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001702L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703W: http://developer.axis.com
1704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001705F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707CRYPTO API
1708P: Herbert Xu
1709M: herbert@gondor.apana.org.au
1710P: David S. Miller
1711M: davem@davemloft.net
1712L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001713T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001715F: Documentation/crypto/
1716F: arch/*/crypto/
1717F: crypto/
1718F: drivers/crypto/
1719F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Neil Horman5b07bd52009-02-05 16:03:04 +11001721CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1722P: Neil Horman
1723M: nhorman@tuxdriver.com
1724L: linux-crypto@vger.kernel.org
1725S: Maintained
1726
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001727CS5535 Audio ALSA driver
1728P: Jaya Kumar
1729M: jayakumar.alsa@gmail.com
1730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001732
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001733CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001734P: Hans Verkuil
1735M: hverkuil@xs4all.nl
1736P: Andy Walls
1737M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001738L: ivtv-devel@ivtvdriver.org
1739L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001740L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001741T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001742W: http://linuxtv.org
1743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001744F: Documentation/video4linux/cx18.txt
1745F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001746
Steve Wisee5ec3782008-05-20 14:06:33 -07001747CXGB3 ETHERNET DRIVER (CXGB3)
1748P: Divy Le Ray
1749M: divy@chelsio.com
1750L: netdev@vger.kernel.org
1751W: http://www.chelsio.com
1752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001753F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001754
1755CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1756P: Steve Wise
1757M: swise@chelsio.com
1758L: general@lists.openfabrics.org
1759W: http://www.openfabrics.org
1760S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001761F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763CYBERPRO FB DRIVER
1764P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001765M: linux@arm.linux.org.uk
1766L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767W: http://www.arm.linux.org.uk/
1768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771CYCLADES 2X SYNC CARD DRIVER
1772P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001773M: acme@ghostprotocols.net
1774W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001780S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001781F: drivers/char/cyclades.c
1782F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001786S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001787F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789DAMA SLAVE for AX.25
1790P: Joerg Reuter
1791M: jreuter@yaina.de
1792W: http://yaina.de/jreuter/
1793W: http://www.qsl.net/dl1bke/
1794L: linux-hams@vger.kernel.org
1795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001796F: net/ax25/af_ax25.c
1797F: net/ax25/ax25_dev.c
1798F: net/ax25/ax25_ds_*
1799F: net/ax25/ax25_in.c
1800F: net/ax25/ax25_out.c
1801F: net/ax25/ax25_timer.c
1802F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001804DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1805P: Tobias Ringstrom
1806M: tori@unhappy.mine.nu
1807L: netdev@vger.kernel.org
1808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001809F: Documentation/networking/dmfe.txt
1810F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001811
1812DC390/AM53C974 SCSI driver
1813P: Kurt Garloff
1814M: garloff@suse.de
1815W: http://www.garloff.de/kurt/linux/dc390/
1816P: Guennadi Liakhovetski
1817M: g.liakhovetski@gmx.de
1818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001819F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821DC395x SCSI driver
1822P: Oliver Neukum
1823M: oliver@neukum.name
1824P: Ali Akcaagac
1825M: aliakc@web.de
1826P: Jamie Lenehan
1827M: lenehan@twibble.org
1828W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001829L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830L: http://lists.twibble.org/mailman/listinfo/dc395x/
1831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001832F: Documentation/scsi/dc395x.txt
1833F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001835DCCP PROTOCOL
1836P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001837M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001838L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001839W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: include/linux/dccp.h
1842F: include/linux/tfrc.h
1843F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001846P: Christine Caulfield
1847M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848W: http://linux-decnet.sourceforge.net
1849L: linux-decnet-user@lists.sourceforge.net
1850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001851F: Documentation/networking/decnet.txt
1852F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854DEFXX FDDI NETWORK DRIVER
1855P: Maciej W. Rozycki
1856M: macro@linux-mips.org
1857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001858F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001860DELL LAPTOP DRIVER
1861P: Matthew Garrett
1862M: mjg59@srcf.ucam.org
1863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001864F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866DELL LAPTOP SMM DRIVER
1867P: Massimo Dal Zotto
1868M: dz@debian.org
1869W: http://www.debian.org/~dz/i8k/
1870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001871F: drivers/char/i8k.c
1872F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Doug Warzecha90563ec2005-09-06 15:17:15 -07001874DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1875P: Doug Warzecha
1876M: Douglas_Warzecha@dell.com
1877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001878F: Documentation/dcdbas.txt
1879F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001880
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001881DELL WMI EXTRAS DRIVER
1882P: Matthew Garrett
1883M: mjg59@srcf.ucam.org
1884S: Maintained
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886DEVICE NUMBER REGISTRY
1887P: Torben Mathiasen
1888M: device@lanana.org
1889W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890S: Maintained
1891
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001892DEVICE-MAPPER (LVM)
1893P: Alasdair Kergon
1894L: dm-devel@redhat.com
1895W: http://sources.redhat.com/dm
1896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001897F: Documentation/device-mapper/
1898F: drivers/md/dm*
1899F: include/linux/device-mapper.h
1900F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902DIGI INTL. EPCA DRIVER
1903P: Digi International, Inc
1904M: Eng.Linux@digi.com
1905L: Eng.Linux@digi.com
1906W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001907S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001908F: Documentation/serial/digiepca.txt
1909F: drivers/char/epca*
1910F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Randy Dunlape7839f22008-10-12 16:11:45 -07001912DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001913P: Eric Paris
1914M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001916F: Documentation/filesystems/dnotify.txt
1917F: fs/notify/dnotify/
1918F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920DISK GEOMETRY AND PARTITION HANDLING
1921P: Andries Brouwer
1922M: aeb@cwi.nl
1923W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1924W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1925W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1926S: Maintained
1927
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001928DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929P: Jan Kara
1930M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: Documentation/filesystems/quota.txt
1933F: fs/quota/
1934F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Randy Dunlape7839f22008-10-12 16:11:45 -07001936DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001937P: Christine Caulfield
1938M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001939P: David Teigland
1940M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001941L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001942W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001943T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001945F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001946
Dan Williamsb3e5f262007-08-07 10:26:35 -07001947DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001948P: Maciej Sosnowski
1949M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001950P: Dan Williams
1951M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001952S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/dma/
1954F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001955
Juerg Haefligerb8250372007-06-09 10:11:16 -04001956DME1737 HARDWARE MONITOR DRIVER
1957P: Juerg Haefliger
1958M: juergh@gmail.com
1959L: lm-sensors@lm-sensors.org
1960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: Documentation/hwmon/dme1737
1962F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001963
Martin Waitzba483d52005-06-17 13:20:59 -07001964DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001965P: Randy Dunlap
1966M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001967S: Maintained
1968
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001969DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001970P: Shaohua Li
1971M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001972L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001974F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001975
Joe Perches7d2c86b2009-04-07 20:59:01 -07001976DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001977P: Randy Dunlap
1978M: rdunlap@xenotime.net
1979L: linux-doc@vger.kernel.org
1980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001981F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983DOUBLETALK DRIVER
1984P: James R. Van Zandt
1985M: jrv@vanzandt.mv.com
1986L: blinux-list@redhat.com
1987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001988F: drivers/char/dtlk.c
1989F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001991DPT_I2O SCSI RAID DRIVER
1992P: Adaptec OEM Raid Solutions
1993M: aacraid@adaptec.com
1994L: linux-scsi@vger.kernel.org
1995W: http://www.adaptec.com/
1996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001997F: drivers/scsi/dpt*
1998F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000DRIVER CORE, KOBJECTS, AND SYSFS
2001P: Greg Kroah-Hartman
2002M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08002003T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002005F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002006F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002007F: fs/sysfs/
2008F: include/linux/kobj*
2009F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011DRM DRIVERS
2012P: David Airlie
2013M: airlied@linux.ie
2014L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07002015T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08002020P: Francois Romieu
2021M: romieu@fr.zoreil.com
2022L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002026DZ DECSTATION DZ11 SERIAL DRIVER
2027P: Maciej W. Rozycki
2028M: macro@linux-mips.org
2029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032EATA-DMA SCSI DRIVER
2033P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07002034M: mike@i-Connect.Net
2035L: linux-eata@i-connect.net
2036L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040EATA ISA/EISA/PCI SCSI DRIVER
2041P: Dario Ballabio
2042M: ballabio_dario@emc.com
2043L: linux-scsi@vger.kernel.org
2044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047EATA-PIO SCSI DRIVER
2048P: Michael Neuffer
2049M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07002050L: linux-eata@i-connect.net
2051L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002053F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055EBTABLES
2056P: Bart De Schuymer
2057M: bart.de.schuymer@pandora.be
2058L: ebtables-user@lists.sourceforge.net
2059L: ebtables-devel@lists.sourceforge.net
2060W: http://ebtables.sourceforge.net/
2061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: include/linux/netfilter_bridge/ebt_*.h
2063F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Michael Halcrow237fead2006-10-04 02:16:22 -07002065ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002066P: Tyler Hicks
2067M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07002068P: Dustin Kirkland
2069M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08002070L: ecryptfs-devel@lists.launchpad.net
2071W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002073F: Documentation/filesystems/ecryptfs.txt
2074F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002075
Alan Coxda9bb1d2006-01-18 17:44:13 -08002076EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002077P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002078M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002079L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002080W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002082F: Documentation/edac.txt
2083F: drivers/edac/edac_*
2084F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002085
Borislav Petkovc476c232009-05-20 20:31:58 +02002086EDAC-AMD64
2087P: Doug Thompson
2088M: dougthompson@xmission.com
2089P: Borislav Petkov
2090M: borislav.petkov@amd.com
2091L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2092W: bluesmoke.sourceforge.net
2093S: Supported
2094F: drivers/edac/amd64_edac*
2095
Dave Peterson0e438e32006-03-26 01:38:55 -08002096EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002097P: Mark Gross
2098M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002099P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002100M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002101L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002102W: bluesmoke.sourceforge.net
2103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002104F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002105
2106EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002107P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002108M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002109L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002110W: bluesmoke.sourceforge.net
2111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002112F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002113
Douglas Thompson6bc78402007-07-19 01:50:12 -07002114EDAC-I82443BXGX
2115P: Tim Small
2116M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002117L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002118W: bluesmoke.sourceforge.net
2119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002120F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002121
2122EDAC-I3000
2123P: Jason Uhlenkott
2124M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002125L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002126W: bluesmoke.sourceforge.net
2127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002128F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002129
2130EDAC-I5000
2131P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002132M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002133L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002134W: bluesmoke.sourceforge.net
2135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002136F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002137
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002138EDAC-I5400
2139P: Mauro Carvalho Chehab
2140M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002141L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002142W: bluesmoke.sourceforge.net
2143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002144F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002145
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002146EDAC-I82975X
2147P: Ranganathan Desikan
Joe Perchesc15e5042009-06-30 11:41:13 -07002148M: ravi@jetztechnologies.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002149P: Arvind R.
Joe Perchesc15e5042009-06-30 11:41:13 -07002150M: arvind@jetztechnologies.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002151L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002152W: bluesmoke.sourceforge.net
2153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002155
2156EDAC-PASEMI
2157P: Egor Martovetsky
2158M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002159L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002160W: bluesmoke.sourceforge.net
2161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002162F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002163
Dave Peterson0e438e32006-03-26 01:38:55 -08002164EDAC-R82600
2165P: Tim Small
2166M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002167L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002168W: bluesmoke.sourceforge.net
2169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002170F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002171
Eric Coopere59f8792008-03-13 12:55:46 +01002172EEEPC LAPTOP EXTRAS DRIVER
2173P: Corentin Chary
2174M: corentincj@iksaif.net
2175L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00002176W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002179
Josh Triplett0bee8d22006-07-30 03:03:58 -07002180EFS FILESYSTEM
2181W: http://aeschi.ch.eu.org/efs/
2182S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002183F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002184
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002185EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002186P: Hoang-Nam Nguyen
2187M: hnguyen@de.ibm.com
2188P: Christoph Raisch
2189M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002190L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002193
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002194EMBEDDED LINUX
2195P: Paul Gortmaker
2196M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002197P: Matt Mackall
2198M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002199P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002200M: dwmw2@infradead.org
2201L: linux-embedded@vger.kernel.org
2202S: Maintained
2203
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002204EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002205P: James Smart
2206M: james.smart@emulex.com
2207L: linux-scsi@vger.kernel.org
2208W: http://sourceforge.net/projects/lpfcxxxx
2209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002210F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002211
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002212ENE CB710 FLASH CARD READER DRIVER
2213P: Michał Mirosław
2214M: mirq-linux@rere.qmqm.pl
2215L: linux-kernel@vger.kernel.org
2216S: Maintained
2217F: drivers/misc/cb710/
2218F: drivers/mmc/host/cb710-mmc.*
2219F: include/linux/cb710.h
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221EPSON 1355 FRAMEBUFFER DRIVER
2222P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002223M: ch@murgatroid.com
2224P: Christopher Hoover
2225M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002229EPSON S1D13XXX FRAMEBUFFER DRIVER
2230P: Kristoffer Ericson
2231M: kristoffer.ericson@gmail.com
2232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002233F: drivers/video/s1d13xxxfb.c
2234F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236ETHEREXPRESS-16 NETWORK DRIVER
2237P: Philip Blundell
2238M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002239L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243ETHERNET BRIDGE
2244P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002245M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002246L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002247W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002249F: include/linux/netfilter_bridge/
2250F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252ETHERTEAM 16I DRIVER
2253P: Mika Kuoppala
2254M: miku@iki.fi
2255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002256F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002259L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002261F: Documentation/filesystems/ext2.txt
2262F: fs/ext2/
2263F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002266P: Stephen Tweedie
2267M: sct@redhat.com
2268P: Andrew Morton
2269M: akpm@linux-foundation.org
2270P: Andreas Dilger
2271M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002272L: linux-ext4@vger.kernel.org
2273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002274F: Documentation/filesystems/ext3.txt
2275F: fs/ext3/
2276F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002277
2278EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002279P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002280M: tytso@mit.edu
2281P: Andreas Dilger
2282M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002283L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002284W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/filesystems/ext4.txt
2287F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Jean Delvaree53004e2006-01-09 23:26:14 +01002289F71805F HARDWARE MONITORING DRIVER
2290P: Jean Delvare
2291M: khali@linux-fr.org
2292L: lm-sensors@lm-sensors.org
2293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: Documentation/hwmon/f71805f
2295F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297FARSYNC SYNCHRONOUS DRIVER
2298P: Kevin Curtis
2299M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300W: http://www.farsite.co.uk/
2301S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002302F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
Akinobu Mitac5408b82007-04-23 14:41:20 -07002304FAULT INJECTION SUPPORT
2305P: Akinobu Mita
2306M: akinobu.mita@gmail.com
2307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002308F: Documentation/fault-injection/
2309F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002310
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002311FILE LOCKING (flock() and fcntl()/lockf())
2312P: Matthew Wilcox
2313M: matthew@wil.cx
2314L: linux-fsdevel@vger.kernel.org
2315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002316F: include/linux/fcntl.h
2317F: include/linux/fs.h
2318F: fs/fcntl.c
2319F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002320
2321FILESYSTEMS (VFS and infrastructure)
2322P: Alexander Viro
2323M: viro@zeniv.linux.org.uk
2324L: linux-fsdevel@vger.kernel.org
2325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002326F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002327
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002328FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2329P: Riku Voipio
2330M: riku.vipio@iki.fi
2331L: lm-sensors@lm-sensors.org
2332S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002333F: drivers/hwmon/f75375s.c
2334F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002335
Joe Perches7d2c86b2009-04-07 20:59:01 -07002336FIREWIRE SUBSYSTEM
2337P: Kristian Hoegsberg
2338M: krh@redhat.com
2339P: Stefan Richter
2340M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002341L: linux1394-devel@lists.sourceforge.net
2342W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002343T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002345F: drivers/firewire/
2346F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347
2348FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002350F: Documentation/firmware_class/
2351F: drivers/base/firmware*.c
2352F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353
2354FPU EMULATOR
2355P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002356M: billm@melbpc.org.au
2357W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002359F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002360
2361FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2362P: Mike McLagan
2363M: mike.mclagan@linux.org
2364L: netdev@vger.kernel.org
2365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002366F: drivers/net/wan/dlci.c
2367F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002370L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002373F: Documentation/fb/
2374F: drivers/video/fb*
2375F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Zhang Wei173acc72008-03-01 07:42:48 -07002377FREESCALE DMA DRIVER
Zhang Wei76b0c7882008-05-13 14:44:59 -07002378P: Li Yang
2379M: leoli@freescale.com
2380P: Zhang Wei
2381M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002382L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002384F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002385
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002386FREESCALE I2C CPM DRIVER
2387P: Jochen Friedrich
2388M: jochen@scram.de
2389L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002390L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002393
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002394FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2395P: Sascha Hauer
2396M: kernel@pengutronix.de
2397L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2398L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002400F: arch/arm/plat-mxc/include/mach/imxfb.h
2401F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002402
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002403FREESCALE SOC FS_ENET DRIVER
2404P: Pantelis Antoniou
2405M: pantelis.antoniou@gmail.com
2406P: Vitaly Bordug
2407M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002408L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002409L: netdev@vger.kernel.org
2410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002411F: drivers/net/fs_enet/
2412F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002413
Timur Tabid9e9d822008-04-24 08:45:26 +10002414FREESCALE QUICC ENGINE LIBRARY
2415P: Timur Tabi
2416M: timur@freescale.com
2417L: linuxppc-dev@ozlabs.org
2418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002419F: arch/powerpc/sysdev/qe_lib/
2420F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002421
Li Yanga7205b32007-04-23 10:38:18 -07002422FREESCALE HIGHSPEED USB DEVICE DRIVER
2423P: Li Yang
2424M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002425L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002426L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002428F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002429
Li Yangbeaf53b2007-05-25 13:54:02 +08002430FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2431P: Li Yang
2432M: leoli@freescale.com
2433L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002434L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002436F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002437
Timur Tabid9e9d822008-04-24 08:45:26 +10002438FREESCALE QUICC ENGINE UCC UART DRIVER
2439P: Timur Tabi
2440M: timur@freescale.com
2441L: linuxppc-dev@ozlabs.org
2442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002443F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002444
2445FREESCALE SOC SOUND DRIVERS
2446P: Timur Tabi
2447M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002448L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002449L: linuxppc-dev@ozlabs.org
2450S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002451F: sound/soc/fsl/fsl*
2452F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454FREEVXFS FILESYSTEM
2455P: Christoph Hellwig
2456M: hch@infradead.org
2457W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002459F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Pavel Machek71038f52009-01-15 13:51:02 -08002461FREEZER
2462P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002463M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002464P: Rafael J. Wysocki
2465M: rjw@sisk.pl
2466L: linux-pm@lists.linux-foundation.org
2467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002468F: Documentation/power/freezing-of-tasks.txt
2469F: include/linux/freezer.h
2470F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002471
David Howellsa5432f52009-04-20 15:46:45 +01002472FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2473P: David Howells
2474M: dhowells@redhat.com
2475L: linux-cachefs@redhat.com
2476S: Supported
2477F: Documentation/filesystems/caching/
2478F: fs/fscache/
2479F: include/linux/fscache*.h
2480
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002481FTRACE
2482P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002483M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002484S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002485F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002486F: arch/*/*/*/ftrace.h
2487F: arch/*/kernel/ftrace.c
2488F: include/*/ftrace.h
2489F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002490
David Howells5ab7ffe2007-04-10 15:10:45 +01002491FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492P: David Howells
2493M: dhowells@redhat.com
2494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002495F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Jonathan Woithe20b93732008-06-11 10:14:56 +09302497FUJITSU LAPTOP EXTRAS
2498P: Jonathan Woithe
2499M: jwoithe@physics.adelaide.edu.au
2500L: linux-acpi@vger.kernel.org
2501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002502F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302503
Miklos Szeredi04578f12005-09-09 13:10:22 -07002504FUSE: FILESYSTEM IN USERSPACE
2505P: Miklos Szeredi
2506M: miklos@szeredi.hu
2507L: fuse-devel@lists.sourceforge.net
2508W: http://fuse.sourceforge.net/
2509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: fs/fuse/
2511F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2514P: Rik Faith
2515M: faith@cs.unc.edu
2516L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002517S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002518F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520GDT SCSI DISK ARRAY CONTROLLER DRIVER
2521P: Achim Leubner
2522M: achim_leubner@adaptec.com
2523L: linux-scsi@vger.kernel.org
2524W: http://www.icp-vortex.com/
2525S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002526F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002528GENERIC GPIO I2C DRIVER
2529P: Haavard Skinnemoen
2530M: hskinnemoen@atmel.com
2531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002532F: drivers/i2c/busses/i2c-gpio.c
2533F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002534
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002535GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536P: Krzysztof Halasa
2537M: khc@pm.waw.pl
2538W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002540F: drivers/net/wan/c101.c
2541F: drivers/net/wan/hd6457*
2542F: drivers/net/wan/hdlc*
2543F: drivers/net/wan/n2.c
2544F: drivers/net/wan/pc300too.c
2545F: drivers/net/wan/pci200syn.c
2546F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002548GENERIC INCLUDE/ASM HEADER FILES
2549P: Arnd Bergmann
2550M: arnd@arndb.de
2551L: linux-arch@vger.kernel.org
2552T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2553S: Maintained
2554F: include/asm-generic
2555
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002556GFS2 FILE SYSTEM
2557P: Steven Whitehouse
2558M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002559L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002560W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002561T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2562T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002564F: Documentation/filesystems/gfs2*.txt
2565F: fs/gfs2/
2566F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002567
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002568GIGASET ISDN DRIVERS
2569P: Hansjoerg Lipp
2570M: hjlipp@web.de
2571P: Tilman Schmidt
2572M: tilman@imap.cc
2573L: gigaset307x-common@lists.sourceforge.net
2574W: http://gigaset307x.sourceforge.net/
2575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002576F: Documentation/isdn/README.gigaset
2577F: drivers/isdn/gigaset/
2578F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002580HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002581P: Frank Seidel
2582M: frank@f-seidel.de
2583L: lm-sensors@lm-sensors.org
2584W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002586F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002587
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002588HYPERVISOR VIRTUAL CONSOLE DRIVER
2589L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002590S: Odd Fixes
2591F: drivers/char/hvc_*
2592
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002593GSPCA FINEPIX SUBDRIVER
2594P: Frank Zago
2595M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002596L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002597T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002599F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002600
2601GSPCA M5602 SUBDRIVER
2602P: Erik Andren
2603M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002604L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002605T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002607F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002608
2609GSPCA PAC207 SONIXB SUBDRIVER
2610P: Hans de Goede
2611M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002612L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002613T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002615F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002616
2617GSPCA T613 SUBDRIVER
2618P: Leandro Costantino
2619M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002620L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002621T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002623F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002624
2625GSPCA USB WEBCAM DRIVER
2626P: Jean-Francois Moine
2627M: moinejf@free.fr
2628W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002629L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002630T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002633
Jean Delvare5b543962005-08-15 19:51:02 +02002634HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002635L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002636W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002637S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002638F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002639
Michael Buesch844dd052006-06-26 00:24:59 -07002640HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002641S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002642F: Documentation/hw_random.txt
2643F: drivers/char/hw_random/
2644F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646HARMONY SOUND DRIVER
2647P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002648M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002649L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002651F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653HAYES ESP SERIAL DRIVER
2654P: Andrew J. Robinson
2655M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656W: http://www.nyx.net/~arobinso
2657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: Documentation/serial/hayes-esp.txt
2659F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002660
2661HEWLETT-PACKARD SMART2 RAID DRIVER
2662P: Chirag Kantharia
2663M: chirag.kantharia@hp.com
2664L: iss_storagedev@hp.com
2665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002666F: Documentation/blockdev/cpqarray.txt
2667F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002668
2669HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2670P: Mike Miller
2671M: mike.miller@hp.com
2672L: iss_storagedev@hp.com
2673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002674F: Documentation/blockdev/cciss.txt
2675F: drivers/block/cciss*
2676F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678HFS FILESYSTEM
2679P: Roman Zippel
2680M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002682F: Documentation/filesystems/hfs.txt
2683F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685HGA FRAMEBUFFER DRIVER
2686P: Ferenc Bakonyi
2687M: fero@drama.obuda.kando.hu
2688L: linux-nvidia@lists.surfsouth.com
2689W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002691F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002693HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002694P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002695M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002696P: Rafael J. Wysocki
2697M: rjw@sisk.pl
2698L: linux-pm@lists.linux-foundation.org
2699S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002700F: arch/x86/power/
2701F: drivers/base/power/
2702F: kernel/power/
2703F: include/linux/suspend.h
2704F: include/linux/freezer.h
2705F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002706F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002707
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002708HID CORE LAYER
2709P: Jiri Kosina
2710M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002711L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002712T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002714F: drivers/hid/
2715F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002716
Ingo Molnar38bed542007-02-22 09:09:34 +01002717HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2718P: Thomas Gleixner
2719M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: Documentation/timers/
2722F: kernel/hrtimer.c
2723F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725HIGH-SPEED SCC DRIVER FOR AX.25
2726P: Klaus Kudielka
2727M: klaus.kudielka@ieee.org
2728L: linux-hams@vger.kernel.org
2729W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002731F: drivers/net/hamradio/dmascc.c
2732F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002734HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2735P: HighPoint Linux Team
2736M: linux@highpoint-tech.com
2737W: http://www.highpoint-tech.com
2738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002739F: Documentation/scsi/hptiop.txt
2740F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002741
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742HIPPI
2743P: Jes Sorensen
2744M: jes@trained-monkey.org
2745L: linux-hippi@sunsite.dk
2746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002747F: include/linux/hippidevice.h
2748F: include/linux/if_hippi.h
2749F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Jouni Malinenff1d2762005-05-12 22:54:16 -04002751HOST AP DRIVER
2752P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002753M: j@w1.fi
2754L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002755L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002756W: http://hostap.epitest.fi/
2757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002759
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002760HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2761P: Carlos Corbacho
2762M: carlos@strangeworlds.co.uk
2763S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002765
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002766HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2767P: Jaroslav Kysela
2768M: perex@perex.cz
2769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002770F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002771
Joe Perches7d2c86b2009-04-07 20:59:01 -07002772HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002773P: Clemens Ladisch
2774M: clemens@ladisch.de
2775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: Documentation/timers/hpet.txt
2777F: drivers/char/hpet.c
2778F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002779
2780HPET: i386
2781P: Venkatesh Pallipadi (Venki)
2782M: venkatesh.pallipadi@intel.com
2783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002784F: arch/x86/kernel/hpet.c
2785F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002786
2787HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002788P: Vojtech Pavlik
2789M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002790S: Maintained
2791
Joe Perches7d2c86b2009-04-07 20:59:01 -07002792HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002793P: Bob Picco
2794M: bob.picco@hp.com
2795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002797
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798HPFS FILESYSTEM
2799P: Mikulas Patocka
2800M: mikulas@artax.karlin.mff.cuni.cz
2801W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Joe Perches7d2c86b2009-04-07 20:59:01 -07002805HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002806P: Jan Dumon
2807M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002808W: http://www.pharscape.org
2809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002810F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002811
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002812HTCPEN TOUCHSCREEN DRIVER
2813P: Pau Oliva Fora
2814M: pof@eslack.org
2815L: linux-input@vger.kernel.org
2816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002817F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819HUGETLB FILESYSTEM
2820P: William Irwin
2821M: wli@holomorphy.com
2822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002825I2C/SMBUS STUB DRIVER
2826P: Mark M. Hoffman
2827M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002828L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002831
Jean Delvare5b543962005-08-15 19:51:02 +02002832I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002833P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002835P: Ben Dooks (embedded platforms)
2836M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002837L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002838W: http://i2c.wiki.kernel.org/
2839T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002841F: Documentation/i2c/
2842F: drivers/i2c/
2843F: include/linux/i2c.h
2844F: include/linux/i2c-dev.h
2845F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Till Harbaume8c76ee2007-05-01 23:26:35 +02002847I2C-TINY-USB DRIVER
2848P: Till Harbaum
2849M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002850L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002851W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002853F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002856P: H. Peter Anvin
2857M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002859F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862P: H. Peter Anvin
2863M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002864T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865S: Maintained
2866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867IA64 (Itanium) PLATFORM
2868P: Tony Luck
Tony Luckfadfd2b2009-06-30 14:28:54 -07002869P: Fenghua Yu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870M: tony.luck@intel.com
Tony Luckfadfd2b2009-06-30 14:28:54 -07002871M: fenghua.yu@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872L: linux-ia64@vger.kernel.org
2873W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002874T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002876F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878IBM MCA SCSI SUBSYSTEM DRIVER
2879P: Michael Lang
2880M: langa2@kph.uni-mainz.de
2881W: http://www.uni-mainz.de/~langm000/linux.html
2882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002883F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885IBM Power Linux RAID adapter
2886P: Brian King
2887M: brking@us.ibm.com
2888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891IBM ServeRAID RAID DRIVER
2892P: Jack Hammer
2893P: Dave Jeffery
2894M: ipslinux@adaptec.com
2895W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002897F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002899IDE SUBSYSTEM
David S. Miller920d44e2009-06-21 16:11:33 -07002900P: David S. Miller
2901M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002903T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002905F: Documentation/ide/
2906F: drivers/ide/
2907F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002909IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002910P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002911M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002912L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: Documentation/cdrom/ide-cd
2915F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Andy Henroid27471fd2008-10-09 11:45:22 -07002917IDLE-I7300
2918P: Andy Henroid
2919M: andrew.d.henroid@intel.com
2920L: linux-pm@lists.linux-foundation.org
2921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002923
Joe Perches7d2c86b2009-04-07 20:59:01 -07002924IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002926M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002927P: Stefan Richter
2928M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929L: linux1394-devel@lists.sourceforge.net
2930W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002931T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Joe Perches7d2c86b2009-04-07 20:59:01 -07002935IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936P: Dan Dennedy
2937M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002938P: Stefan Richter
2939M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002943
Sergey Lapin02cf2282009-06-08 12:18:50 +00002944IEEE 802.15.4 SUBSYSTEM
2945P: Dmitry Eremin-Solenikov
2946M: dbaryshkov@gmail.com
2947P: Sergey Lapin
2948M: slapin@ossfans.org
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002949L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002950W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002951T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002952S: Maintained
2953F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002954F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002955
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002956INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2957P: Mimi Zohar
2958M: zohar@us.ibm.com
2959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002960F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002963L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002964S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002965F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
2967INFINIBAND SUBSYSTEM
2968P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002969M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002971M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002973M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002974L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002976T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002978F: Documentation/infiniband/
2979F: drivers/infiniband/
2980F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Robert Lovec9f04f52005-07-15 12:21:07 -04002982INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01002983P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002984M: john@johnmccutchan.com
Cal Peake18b36c712006-12-12 20:18:16 +01002985P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002986M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002987P: Eric Paris
2988M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002990F: Documentation/filesystems/inotify.txt
2991F: fs/notify/inotify/
2992F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002993
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002994INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2995P: Dmitry Torokhov
2996M: dmitry.torokhov@gmail.com
2997M: dtor@mail.ru
2998L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002999T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003002
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003003INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01003004P: Sylvain Meyer
3005M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003006L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003008F: Documentation/fb/intelfb.txt
3009F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003012P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08003013M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003014L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303018INTEL MENLOW THERMAL DRIVER
3019P: Sujith Thomas
3020M: sujith.thomas@intel.com
3021L: linux-acpi@vger.kernel.org
3022W: http://www.lesswatts.org/projects/acpi/
3023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003024F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303025
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026INTEL IA32 MICROCODE UPDATE SUPPORT
3027P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08003028M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003030F: arch/x86/kernel/microcode_core.c
3031F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003033INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01003034P: Maciej Sosnowski
3035M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003037F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003038
David Woodhouse6c8909b2008-10-18 16:12:17 +01003039INTEL IOMMU (VT-d)
3040P: David Woodhouse
3041M: dwmw2@infradead.org
3042L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003043T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003045F: drivers/pci/intel-iommu.c
3046F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003047
Dan Williamsb3e5f262007-08-07 10:26:35 -07003048INTEL IOP-ADMA DMA DRIVER
3049P: Dan Williams
3050M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07003051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003052F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003053
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003054INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
3055P: Krzysztof Halasa
3056M: khc@pm.waw.pl
3057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003058F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3059F: arch/arm/mach-ixp4xx/include/mach/npe.h
3060F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3061F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3062F: drivers/net/arm/ixp4xx_eth.c
3063F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003064
Michael Buesch844dd052006-06-26 00:24:59 -07003065INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3066P: Deepak Saxena
3067M: dsaxena@plexity.net
3068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003069F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003070
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003071INTEL IXP2000 ETHERNET DRIVER
3072P: Lennert Buytenhek
3073M: kernel@wantstofly.org
3074L: netdev@vger.kernel.org
3075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003076F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003077
Auke Kokd94e6fe2008-03-03 14:37:47 -08003078INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003079P: Jeff Kirsher
3080M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003081P: Jesse Brandeburg
3082M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003083P: Bruce Allan
3084M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003085P: PJ Waskiewicz
3086M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003087P: John Ronciak
3088M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003089L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003090W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003092F: drivers/net/e100.c
3093F: drivers/net/e1000/
3094F: drivers/net/e1000e/
3095F: drivers/net/igb/
3096F: drivers/net/ixgb/
3097F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
James Ketrenos826d2ab2005-11-07 18:56:59 -06003099INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003100P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003101M: yi.zhu@intel.com
3102P: James Ketrenos
3103M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003104P: Reinette Chatre
3105M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003106L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003107L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003108W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003109W: http://ipw2100.sourceforge.net
3110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003111F: Documentation/networking/README.ipw2100
3112F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003113
3114INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003115P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003116M: yi.zhu@intel.com
3117P: James Ketrenos
3118M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003119P: Reinette Chatre
3120M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003121L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003122L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003123W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003124W: http://ipw2200.sourceforge.net
3125S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003126F: Documentation/networking/README.ipw2200
3127F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003128
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003129INTEL WIRELESS WIMAX CONNECTION 2400
3130P: Inaky Perez-Gonzalez
3131M: inaky.perez-gonzalez@intel.com
3132M: linux-wimax@intel.com
3133L: wimax@linuxwimax.org
3134S: Supported
3135W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/wimax/README.i2400m
3137F: drivers/net/wimax/i2400m/
3138F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003139
Zhu Yib481de92007-09-25 17:54:57 -07003140INTEL WIRELESS WIFI LINK (iwlwifi)
3141P: Zhu Yi
3142M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003143P: Reinette Chatre
3144M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003145L: linux-wireless@vger.kernel.org
3146L: ipw3945-devel@lists.sourceforge.net
3147W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003148T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003149S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003150F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003151
Ralf Baechlecb109a02007-08-30 23:56:30 -07003152IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153P: Ralf Baechle
3154M: ralf@linux-mips.org
3155L: linux-mips@linux-mips.org
3156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003157F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
Ralf Baechlecb109a02007-08-30 23:56:30 -07003159IOC3 SERIAL DRIVER
3160P: Pat Gefre
3161M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003162L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003165
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003166IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167P: Juanjo Ciarlante
3168M: jjciarla@raiz.uncu.edu.ar
3169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003170F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Francois Romieu1202d6f2007-09-17 17:13:55 -07003172IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3173P: Francois Romieu
3174M: romieu@fr.zoreil.com
3175P: Sorbica Shieh
3176M: sorbica@icplus.com.tw
3177P: Jesse Huang
3178M: jesse@icplus.com.tw
3179L: netdev@vger.kernel.org
3180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003181F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003182
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003183IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003184P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003185M: infinipath@qlogic.com
3186L: general@lists.openfabrics.org
3187T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003189F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003190
Corey Minyard4409ebe2006-04-20 02:43:12 -07003191IPMI SUBSYSTEM
3192P: Corey Minyard
3193M: minyard@acm.org
3194L: openipmi-developer@lists.sourceforge.net
3195W: http://openipmi.sourceforge.net/
3196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003197F: Documentation/IPMI.txt
3198F: drivers/char/ipmi/
3199F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003200
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003201IPS SCSI RAID DRIVER
3202P: Adaptec OEM Raid Solutions
3203M: aacraid@adaptec.com
3204L: linux-scsi@vger.kernel.org
3205W: http://www.adaptec.com/
3206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003207F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003208
3209IPVS
3210P: Wensong Zhang
3211M: wensong@linux-vs.org
3212P: Simon Horman
3213M: horms@verge.net.au
3214P: Julian Anastasov
3215M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003216L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003217L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003219F: Documentation/networking/ipvs-sysctl.txt
3220F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Randy Dunlape7839f22008-10-12 16:11:45 -07003222IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003223P: Jiri Kosina
3224M: jkosina@suse.cz
3225P: David Sterba
3226M: dsterba@suse.cz
3227S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003228T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003229F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003230
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003231IPX NETWORK LAYER
3232P: Arnaldo Carvalho de Melo
3233M: acme@ghostprotocols.net
3234L: netdev@vger.kernel.org
3235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003236F: include/linux/ipx.h
3237F: include/net/ipx.h
3238F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003241P: Samuel Ortiz
3242M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003243L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003245S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003246T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003247F: Documentation/networking/irda.txt
3248F: drivers/net/irda/
3249F: include/net/irda/
3250F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003252ISAPNP
3253P: Jaroslav Kysela
3254M: perex@perex.cz
3255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003256F: Documentation/isapnp.txt
3257F: drivers/pnp/isapnp/
3258F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003259
Mike Christie14816b1e2007-11-28 16:22:06 -08003260ISCSI
3261P: Mike Christie
3262M: michaelc@cs.wisc.edu
3263L: open-iscsi@googlegroups.com
3264W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003265T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003267F: drivers/scsi/*iscsi*
3268F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270ISDN SUBSYSTEM
3271P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003272M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003273L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003275T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003277F: Documentation/isdn/
3278F: drivers/isdn/
3279F: include/linux/isdn.h
3280F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
3282ISDN SUBSYSTEM (Eicon active card driver)
3283P: Armin Schindler
3284M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003285L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286W: http://www.melware.de
3287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003288F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Hans Verkuil91821ff2007-12-02 09:35:33 -03003290IVTV VIDEO4LINUX DRIVER
3291P: Hans Verkuil
3292M: hverkuil@xs4all.nl
3293L: ivtv-devel@ivtvdriver.org
3294L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003295L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003296T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003297W: http://www.ivtvdriver.org
3298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003299F: Documentation/video4linux/*.ivtv
3300F: drivers/media/video/ivtv/
3301F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003302
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003303JFS FILESYSTEM
3304P: Dave Kleikamp
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003305M: shaggy@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003306L: jfs-discussion@lists.sourceforge.net
3307W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003308T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003310F: Documentation/filesystems/jfs.txt
3311F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003312
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003313JME NETWORK DRIVER
3314P: Guo-Fu Tseng
3315M: cooldavid@cooldavid.org
3316L: netdev@vger.kernel.org
3317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003318F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3321P: David Woodhouse
3322M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003323L: linux-mtd@lists.infradead.org
3324W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003326F: fs/jffs2/
3327F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Josh Triplettde456d32006-07-30 03:04:00 -07003329JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003330P: Stephen Tweedie
3331M: sct@redhat.com
3332P: Andrew Morton
3333M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003334L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: fs/jbd*/
3337F: include/linux/ext*jbd*.h
3338F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003339
Rudolf Marek4660cb32006-10-08 22:01:26 +02003340K8TEMP HARDWARE MONITORING DRIVER
3341P: Rudolf Marek
3342M: r.marek@assembler.cz
3343L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003345F: Documentation/hwmon/k8temp
3346F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348KCONFIG
3349P: Roman Zippel
3350M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003351L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003353F: Documentation/kbuild/kconfig-language.txt
3354F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Vivek Goyalea6c2082006-05-20 14:59:55 -07003356KDUMP
3357P: Vivek Goyal
Vivek Goyal4200b66c2007-12-01 12:16:30 -08003358M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003359P: Haren Myneni
3360M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003361L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003362W: http://lse.sourceforge.net/kdump/
3363S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003364F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366KERNEL AUTOMOUNTER (AUTOFS)
3367P: H. Peter Anvin
3368M: hpa@zytor.com
3369L: autofs@linux.kernel.org
3370S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003371F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
3373KERNEL AUTOMOUNTER v4 (AUTOFS4)
3374P: Ian Kent
3375M: raven@themaw.net
3376L: autofs@linux.kernel.org
3377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003378F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Joe Perches7d2c86b2009-04-07 20:59:01 -07003380KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381P: Sam Ravnborg
3382M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003383T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3384T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003385L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003387F: Documentation/kbuild/
3388F: Makefile
3389F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391KERNEL JANITORS
3392P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003393L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395S: Maintained
3396
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003397KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003398P: J. Bruce Fields
3399M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003401M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003402L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003405F: fs/nfsd/
3406F: include/linux/nfsd/
3407F: fs/lockd/
3408F: fs/nfs_common/
3409F: net/sunrpc/
3410F: include/linux/lockd/
3411F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412
Avi Kivity426d62e2006-12-13 00:34:03 -08003413KERNEL VIRTUAL MACHINE (KVM)
3414P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003415M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003416L: kvm@vger.kernel.org
3417W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003419F: Documentation/*/kvm.txt
3420F: arch/*/kvm/
3421F: arch/*/include/asm/kvm*
3422F: include/linux/kvm*
3423F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003424
Joerg Roedelad8003d2008-09-10 20:01:07 +02003425KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3426P: Joerg Roedel
3427M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003428L: kvm@vger.kernel.org
3429W: http://kvm.qumranet.com
3430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003431F: arch/x86/include/asm/svm.h
3432F: arch/x86/kvm/kvm_svm.h
3433F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003434
Hollis Blanchard513014b2008-04-16 23:28:08 -05003435KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3436P: Hollis Blanchard
3437M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003438L: kvm-ppc@vger.kernel.org
3439W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003441F: arch/powerpc/include/asm/kvm*
3442F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003443
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003444KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003445P: Xiantao Zhang
3446M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003447L: kvm-ia64@vger.kernel.org
3448W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003450F: Documentation/ia64/kvm.txt
3451F: arch/ia64/include/asm/kvm*
3452F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003453
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003454KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3455P: Carsten Otte
3456M: cotte@de.ibm.com
3457P: Christian Borntraeger
3458M: borntraeger@de.ibm.com
3459M: linux390@de.ibm.com
3460L: linux-s390@vger.kernel.org
3461W: http://www.ibm.com/developerworks/linux/linux390/
3462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003463F: Documentation/s390/kvm.txt
3464F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003465F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003466
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003467KEXEC
3468P: Eric Biederman
3469M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003470W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003471L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003473F: include/linux/kexec.h
3474F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003475
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003476KGDB
3477P: Jason Wessel
3478M: jason.wessel@windriver.com
3479L: kgdb-bugreport@lists.sourceforge.net
3480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003481F: Documentation/DocBook/kgdb.tmpl
3482F: drivers/misc/kgdbts.c
3483F: drivers/serial/kgdboc.c
3484F: include/linux/kgdb.h
3485F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003486
Pekka Enberg456db8c2008-04-28 22:47:29 +03003487KMEMCHECK
3488P: Vegard Nossum
3489M: vegardno@ifi.uio.no
3490P Pekka Enberg
3491M: penberg@cs.helsinki.fi
3492L: linux-kernel@vger.kernel.org
3493S: Maintained
3494
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003495KMEMLEAK
3496P: Catalin Marinas
3497M: catalin.marinas@arm.com
3498L: linux-kernel@vger.kernel.org
3499S: Maintained
3500F: Documentation/kmemleak.txt
3501F: include/linux/kmemleak.h
3502F: mm/kmemleak.c
3503F: mm/kmemleak-test.c
3504
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003505KMEMTRACE
3506P: Eduard - Gabriel Munteanu
3507M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003508S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003509F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003510F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003511F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003512
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003513KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003514P: Ananth N Mavinakayanahalli
3515M: ananth@in.ibm.com
3516P: Anil S Keshavamurthy
3517M: anil.s.keshavamurthy@intel.com
3518P: David S. Miller
3519M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003520P: Masami Hiramatsu
3521M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: Documentation/kprobes.txt
3524F: include/linux/kprobes.h
3525F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003526
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003527KS0108 LCD CONTROLLER DRIVER
3528P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003529M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003530W: http://miguelojeda.es/auxdisplay.htm
3531W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003533F: Documentation/auxdisplay/ks0108
3534F: drivers/auxdisplay/ks0108.c
3535F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003539S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003540F: Documentation/networking/lapb-module.txt
3541F: include/*/lapb.h
3542F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
3544LASI 53c700 driver for PARISC
3545P: James E.J. Bottomley
3546M: James.Bottomley@HansenPartnership.com
3547L: linux-scsi@vger.kernel.org
3548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003549F: Documentation/scsi/53c700.txt
3550F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Richard Purdie263de9b2006-05-15 09:44:16 -07003552LED SUBSYSTEM
3553P: Richard Purdie
3554M: rpurdie@rpsys.net
3555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003556F: drivers/leds/
3557F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003558
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559LEGO USB Tower driver
3560P: Juergen Stuber
3561M: starblue@users.sourceforge.net
3562L: legousb-devel@lists.sourceforge.net
3563W: http://legousb.sourceforge.net/
3564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Rusty Russell568a17f2007-10-25 14:12:24 +10003567LGUEST
3568P: Rusty Russell
3569M: rusty@rustcorp.com.au
3570L: lguest@ozlabs.org
3571W: http://lguest.ozlabs.org/
3572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003573F: Documentation/lguest/
3574F: arch/x86/lguest/
3575F: drivers/lguest/
3576F: include/linux/lguest*.h
3577F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003578
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579LINUX FOR IBM pSERIES (RS/6000)
3580P: Paul Mackerras
3581M: paulus@au.ibm.com
3582W: http://www.ibm.com/linux/ltc/projects/ppc
3583S: Supported
3584
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003585LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003586P: Benjamin Herrenschmidt
3587M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003588P: Paul Mackerras
3589M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590W: http://www.penguinppc.org/
3591L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003592T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593S: Supported
3594
3595LINUX FOR POWER MACINTOSH
3596P: Benjamin Herrenschmidt
3597M: benh@kernel.crashing.org
3598W: http://www.penguinppc.org/
3599L: linuxppc-dev@ozlabs.org
3600S: Maintained
3601
Grant Likely77a76362008-07-12 12:11:43 -06003602LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003603P: Grant Likely
3604M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003606T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607S: Maintained
3608
3609LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003610P: Josh Boyer
3611M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612P: Matt Porter
3613M: mporter@kernel.crashing.org
3614W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003615L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003616T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617S: Maintained
3618
Grant Likely260c02a2007-10-02 12:15:34 +10003619LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3620P: Grant Likely
3621M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003622W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003623L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003624T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625S: Maintained
3626
Tom Rinie93adf12005-07-26 12:49:53 -07003627LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003628P: Vitaly Bordug
3629M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003630P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003631M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003632W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003633L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003634S: Maintained
3635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003637P: Kumar Gala
3638M: galak@kernel.crashing.org
3639W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003640L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003641S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642
Olof Johanssonab06ff32006-09-06 14:44:54 -05003643LINUX FOR POWERPC PA SEMI PWRFICIENT
3644P: Olof Johansson
3645M: olof@lixom.net
3646W: http://www.pasemi.com/
3647L: linuxppc-dev@ozlabs.org
3648S: Supported
3649
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650LINUX SECURITY MODULE (LSM) FRAMEWORK
3651P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003652M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003653L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003654T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655S: Supported
3656
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003657LLC (802.2)
3658P: Arnaldo Carvalho de Melo
3659M: acme@ghostprotocols.net
3660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: include/linux/llc.h
3662F: include/net/llc*
3663F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003664
Pavel Machek455fbdd2008-11-12 13:27:02 -08003665LIS3LV02D ACCELEROMETER DRIVER
3666P: Eric Piel
3667M: eric.piel@tremplin-utc.net
3668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: Documentation/hwmon/lis3lv02d
3670F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672LM83 HARDWARE MONITOR DRIVER
3673P: Jean Delvare
3674M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003675L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: Documentation/hwmon/lm83
3678F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680LM90 HARDWARE MONITOR DRIVER
3681P: Jean Delvare
3682M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003683L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: Documentation/hwmon/lm90
3686F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003688LOCKDEP AND LOCKSTAT
3689P: Peter Zijlstra
3690M: peterz@infradead.org
3691P: Ingo Molnar
3692M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003693T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003695F: Documentation/lockdep*.txt
3696F: Documentation/lockstat.txt
3697F: include/linux/lockdep.h
3698F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003699
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003700LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701P: Richard Russon (FlatCap)
3702M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003703L: linux-ntfs-dev@lists.sourceforge.net
3704W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: Documentation/ldm.txt
3707F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003709LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3710P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003711M: Eric.Moore@lsi.com
3712M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003713L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003714L: linux-scsi@vger.kernel.org
3715W: http://www.lsilogic.com/support
3716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003717F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003718
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3720P: Matthew Wilcox
3721M: matthew@wil.cx
3722L: linux-scsi@vger.kernel.org
3723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003724F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Mike Frysinger81365c32008-10-29 14:01:12 -07003726LTP (Linux Test Project)
3727P: Subrata Modak
3728M: subrata@linux.vnet.ibm.com
3729P: Mike Frysinger
3730M: vapier@gentoo.org
3731L: ltp-list@lists.sourceforge.net (subscribers-only)
3732W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003733T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003734S: Maintained
3735
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003736M32R ARCHITECTURE
3737P: Hirokazu Takata
3738M: takata@linux-m32r.org
3739L: linux-m32r@ml.linux-m32r.org
3740L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3741W: http://www.linux-m32r.org/
3742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003743F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745M68K ARCHITECTURE
3746P: Geert Uytterhoeven
3747M: geert@linux-m68k.org
3748P: Roman Zippel
3749M: zippel@linux-m68k.org
3750L: linux-m68k@lists.linux-m68k.org
3751W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003752T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003754F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003755F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
3757M68K ON APPLE MACINTOSH
3758P: Joshua Thompson
3759M: funaho@jurai.org
3760W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003761L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003763F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765M68K ON HP9000/300
3766P: Philip Blundell
3767M: philb@gnu.org
3768W: http://www.tazenda.demon.co.uk/phil/linux-hp
3769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003770F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Jiri Benc64a327a2007-05-05 11:47:08 -07003772MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003773P: Johannes Berg
3774M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003775L: linux-wireless@vger.kernel.org
3776W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003777T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003779F: Documentation/networking/mac80211-injection.txt
3780F: include/net/mac80211.h
3781F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003782
Stefano Brivio1036d862007-12-23 04:46:27 +01003783MAC80211 PID RATE CONTROL
3784P: Stefano Brivio
3785M: stefano.brivio@polimi.it
3786P: Mattias Nissler
3787M: mattias.nissler@gmx.de
3788L: linux-wireless@vger.kernel.org
3789W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003790T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003793
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003794MACVLAN DRIVER
3795P: Patrick McHardy
3796M: kaber@trash.net
3797L: netdev@vger.kernel.org
3798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003799F: drivers/net/macvlan.c
3800F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003801
Michael Kerriskfaf16682005-07-31 22:34:47 -07003802MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003803P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003804M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003805W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003806L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003807S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003808
Stefano Brivio74cda162007-11-19 20:27:46 +01003809MARVELL LIBERTAS WIRELESS DRIVER
3810P: Dan Williams
3811M: dcbw@redhat.com
3812L: libertas-dev@lists.infradead.org
3813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003814F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003815
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003816MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003817P: Lennert Buytenhek
3818M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003819L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003821F: drivers/net/mv643xx_eth.*
3822F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Pierre Ossman2a695672009-03-16 19:52:26 +01003824MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3825P: Nicolas Pitre
3826M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003827S: Maintained
3828
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003829MARVELL YUKON / SYSKONNECT DRIVER
3830P: Mirko Lindner
3831M: mlindner@syskonnect.de
3832P: Ralph Roesler
3833M: rroesler@syskonnect.de
3834W: http://www.syskonnect.com
3835S: Supported
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837MATROX FRAMEBUFFER DRIVER
3838P: Petr Vandrovec
3839M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003840L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: drivers/video/matrox/matroxfb_*
3843F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003845MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3846P: Hans J. Koch
3847M: hjk@linutronix.de
3848L: lm-sensors@lm-sensors.org
3849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003850F: Documentation/hwmon/max6650
3851F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003852
Joe Perches127c49a2009-04-08 08:34:04 -07003853MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3854P: Mauro Carvalho Chehab
3855M: mchehab@infradead.org
3856P: LinuxTV.org Project
3857L: linux-media@vger.kernel.org
3858W: http://linuxtv.org
3859T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3860S: Maintained
3861F: Documentation/dvb/
3862F: Documentation/video4linux/
3863F: drivers/media/
3864F: include/media/
3865F: include/linux/dvb/
3866F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003867
3868MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003869P: Neela Syam Kolli
Sumant Patrobdd0d7572007-05-10 07:22:35 -07003870M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003871L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003872W: http://megaraid.lsilogic.com
3873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003874F: Documentation/scsi/megaraid.txt
3875F: drivers/scsi/megaraid.*
3876F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878MEMORY MANAGEMENT
3879L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880W: http://www.linux-mm.org
3881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003882F: include/linux/mm.h
3883F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003884
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003885MEMORY RESOURCE CONTROLLER
3886P: Balbir Singh
3887M: balbir@linux.vnet.ibm.com
3888P: Pavel Emelyanov
3889M: xemul@openvz.org
3890P: KAMEZAWA Hiroyuki
3891M: kamezawa.hiroyu@jp.fujitsu.com
3892L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003894F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003895
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896MEMORY TECHNOLOGY DEVICES (MTD)
3897P: David Woodhouse
3898M: dwmw2@infradead.org
3899W: http://www.linux-mtd.infradead.org/
3900L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003901T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: drivers/mtd/
3904F: include/linux/mtd/
3905F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
Michal Simekc6375b02009-03-27 14:25:52 +01003907MICROBLAZE ARCHITECTURE
3908P: Michal Simek
3909M: monstr@monstr.eu
3910L: microblaze-uclinux@itee.uq.edu.au
3911W: http://www.monstr.eu/fdt/
3912T: git git://git.monstr.eu/linux-2.6-microblaze.git
3913S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003914F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916MICROTEK X6 SCANNER
3917P: Oliver Neukum
3918M: oliver@neukum.name
3919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003920F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922MIPS
3923P: Ralf Baechle
3924M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003925W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003927T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003929F: Documentation/mips/
3930F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
3932MISCELLANEOUS MCA-SUPPORT
3933P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003934M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003936F: Documentation/ia64/mca.txt
3937F: Documentation/mca.txt
3938F: drivers/mca/
3939F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
3941MODULE SUPPORT
3942P: Rusty Russell
3943M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003945F: include/linux/module.h
3946F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
3948MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3949P: Stelian Pop
3950M: stelian@popies.net
3951W: http://popies.net/meye/
3952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: Documentation/video4linux/meye.txt
3954F: drivers/media/video/meye.*
3955F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Pavel Pisac58ff042007-05-16 01:10:41 +02003957MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3958P: Pavel Pisa
3959M: ppisa@pikron.com
3960L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003962F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003963
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964MOUSE AND MISC DEVICES [GENERAL]
3965P: Alessandro Rubini
3966M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003968F: drivers/input/mouse/
3969F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Jiri Slabyb9705b62008-04-30 00:53:48 -07003971MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003972P: Jiri Slaby
3973M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: Documentation/serial/moxa-smartio
3976F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003977
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003978MSI LAPTOP SUPPORT
3979P: Lennart Poettering
3980M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003981W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003982W: http://0pointer.de/lennart/tchibo.html
3983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003984F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003985
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003986MULTIFUNCTION DEVICES (MFD)
3987P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003988M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003989T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003990S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003992
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003993MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003994P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003995M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003997F: drivers/mmc/
3998F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003999
David Brownell15a05802007-08-08 09:12:54 -07004000MULTIMEDIA CARD (MMC) ETC. OVER SPI
4001P: David Brownell
4002M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004003S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004004F: drivers/mmc/host/mmc_spi.c
4005F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007MULTISOUND SOUND DRIVER
4008P: Andrew Veliath
4009M: andrewtv@usa.net
4010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004011F: Documentation/sound/oss/MultiSound
4012F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Jiri Slabyd7354102006-12-08 02:38:35 -08004014MULTITECH MULTIPORT CARD (ISICOM)
4015P: Jiri Slaby
4016M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08004017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004018F: drivers/char/isicom.c
4019F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004020
Felipe Balbi550a7372008-07-24 12:27:36 +03004021MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004022P: Felipe Balbi
4023M: felipe.balbi@nokia.com
4024L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004025T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004027F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004028
Brice Goglin2d3cf582008-05-17 12:45:36 +02004029MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
4030P: Andrew Gallatin
4031M: gallatin@myri.com
4032P: Brice Goglin
4033M: brice@myri.com
4034L: netdev@vger.kernel.org
4035W: http://www.myri.com/scs/download-Myri10GE.html
4036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004037F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004038
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02004040P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041M: thockin@hockin.org
4042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044
4045NCP FILESYSTEM
4046P: Petr Vandrovec
4047M: vandrove@vc.cvut.cz
4048L: linware@sh.cvut.cz
4049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004050F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
4052NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
4053P: James E.J. Bottomley
4054M: James.Bottomley@HansenPartnership.com
4055L: linux-scsi@vger.kernel.org
4056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004057F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004059NETEFFECT IWARP RNIC DRIVER (IW_NES)
4060P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07004061M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07004062P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07004063M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004064L: general@lists.openfabrics.org
4065W: http://www.neteffect.com
4066S: Supported
4067F: drivers/infiniband/hw/nes/
4068
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004069NETEM NETWORK EMULATOR
4070P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08004071M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004072L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004075
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004076NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004077P: Ramkrishna Vepa
4078M: ram.vepa@neterion.com
4079P: Rastapur Santosh
4080M: santosh.rastapur@neterion.com
4081P: Sivakumar Subramani
4082M: sivakumar.subramani@neterion.com
4083P: Sreenivasa Honnur
4084M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004085P: Anil Murthy
4086M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004087L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004088W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4089W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004091F: Documentation/networking/s2io.txt
4092F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094NETFILTER/IPTABLES/IPCHAINS
4095P: Rusty Russell
4096P: Marc Boucher
4097P: James Morris
4098P: Harald Welte
4099P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004100P: Patrick McHardy
4101M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004102L: netfilter-devel@vger.kernel.org
4103L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004104L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105W: http://www.netfilter.org/
4106W: http://www.iptables.org/
Joe Perches3f1f7cf2009-07-01 11:32:10 +02004107T: git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004109F: include/linux/netfilter*
4110F: include/linux/netfilter/
4111F: include/net/netfilter/
4112F: net/*/netfilter.c
4113F: net/*/netfilter/
4114F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Paul Moore4cc67732006-09-25 15:57:13 -07004116NETLABEL
4117P: Paul Moore
4118M: paul.moore@hp.com
4119W: http://netlabel.sf.net
4120L: netdev@vger.kernel.org
4121S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004122F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004123F: include/net/netlabel.h
4124F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004125
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126NETROM NETWORK LAYER
4127P: Ralf Baechle
4128M: ralf@linux-mips.org
4129L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004130W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: include/linux/netrom.h
4133F: include/net/netrom.h
4134F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004136NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137P: Paul Clements
4138M: Paul.Clements@steeleye.com
4139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004140F: Documentation/blockdev/nbd.txt
4141F: drivers/block/nbd.c
4142F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143
4144NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004145P: David S. Miller
4146M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004147L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004148W: http://www.linuxfoundation.org/en/Net
4149T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004151F: net/
4152F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
4154NETWORKING [IPv4/IPv6]
4155P: David S. Miller
4156M: davem@davemloft.net
4157P: Alexey Kuznetsov
4158M: kuznet@ms2.inr.ac.ru
4159P: Pekka Savola (ipv6)
4160M: pekkas@netcore.fi
4161P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004162M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163P: Hideaki YOSHIFUJI
4164M: yoshfuji@linux-ipv6.org
4165P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004166M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004167L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004168T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004170F: net/ipv4/
4171F: net/ipv6/
4172F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
James Morris10e2ff12007-08-25 14:41:28 -07004174NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4175P: Paul Moore
4176M: paul.moore@hp.com
4177L: netdev@vger.kernel.org
4178S: Maintained
4179
John W. Linville29f8f632006-01-18 14:52:48 -08004180NETWORKING [WIRELESS]
4181P: John W. Linville
4182M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004183L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004184T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004186F: net/wireless/
4187F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004188F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004189
Joe Perches788873a2009-04-16 09:38:45 +00004190NETWORKING DRIVERS
4191L: netdev@vger.kernel.org
4192W: http://www.linuxfoundation.org/en/Net
4193T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4194S: Odd Fixes
4195F: drivers/net/
4196
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004197NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004198P: Dhananjay Phadke
4199M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004200L: netdev@vger.kernel.org
4201W: http://www.netxen.com
4202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004203F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004204
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004205NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004207M: Trond.Myklebust@netapp.com
4208L: linux-nfs@vger.kernel.org
4209W: http://client.linux-nfs.org
4210T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: fs/lockd/
4213F: fs/nfs/
4214F: fs/nfs_common/
4215F: net/sunrpc/
4216F: include/linux/lockd/
4217F: include/linux/nfs*
4218F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
4220NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004221P: Jan-Pascal van Best
4222M: janpascal@vanbest.org
4223P: Andreas Mohr
4224M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004225L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004227F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004229NILFS2 FILESYSTEM
4230P: KONISHI Ryusuke
4231M: konishi.ryusuke@lab.ntt.co.jp
4232L: users@nilfs.org
4233W: http://www.nilfs.org/en/
4234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004235F: Documentation/filesystems/nilfs2.txt
4236F: fs/nilfs2/
4237F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004238
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4240P: YOKOTA Hiroshi
4241M: yokota@netlab.is.tsukuba.ac.jp
4242W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004244F: Documentation/scsi/NinjaSCSI.txt
4245F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
4247NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4248P: GOTO Masanori
4249M: gotom@debian.or.jp
4250P: YOKOTA Hiroshi
4251M: yokota@netlab.is.tsukuba.ac.jp
4252W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004254F: Documentation/scsi/NinjaSCSI.txt
4255F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257NTFS FILESYSTEM
4258P: Anton Altaparmakov
4259M: aia21@cantab.net
4260L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004261W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004262T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004264F: Documentation/filesystems/ntfs.txt
4265F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004267NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004268P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004269M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004270L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004272F: drivers/video/riva/
4273F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Tony Lindgrenf5525782009-05-28 13:23:53 -07004275OMAP SUPPORT
4276P: Tony Lindgren <tony@atomide.com>
4277M: tony@atomide.com
4278L: linux-omap@vger.kernel.org
4279W: http://www.muru.com/linux/omap/
4280W: http://linux.omap.com/
4281T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4282S: Maintained
4283F: arch/arm/*omap*
4284
4285OMAP CLOCK FRAMEWORK SUPPORT
4286P: Paul Walmsley
4287M: paul@pwsan.com
4288L: linux-omap@vger.kernel.org
4289S: Maintained
4290F: arch/arm/*omap*/*clock*
4291
4292OMAP POWER MANAGEMENT SUPPORT
4293P: Kevin Hilman
4294M: khilman@deeprootsystems.com
4295L: linux-omap@vger.kernel.org
4296S: Maintained
4297F: arch/arm/*omap*/*pm*
4298
4299OMAP AUDIO SUPPORT
4300P: Jarkko Nikula
4301M: jhnikula@gmail.com
4302L: alsa-devel@alsa-project.org (subscribers-only)
4303L: linux-omap@vger.kernel.org
4304S: Maintained
4305F: sound/soc/omap/
4306
4307OMAP FRAMEBUFFER SUPPORT
4308P: Imre Deak
4309M: imre.deak@nokia.com
4310L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4311L: linux-omap@vger.kernel.org
4312S: Maintained
4313F: drivers/video/omap/
4314
4315OMAP MMC SUPPORT
4316P: Jarkko Lavinen
4317M: jarkko.lavinen@nokia.com
4318L: linux-kernel@vger.kernel.org
4319L: linux-omap@vger.kernel.org
4320S: Maintained
4321F: drivers/mmc/host/*omap*
4322
4323OMAP RANDOM NUMBER GENERATOR SUPPORT
4324P: Deepak Saxena
4325M: dsaxena@plexity.net
4326S: Maintained
4327F: drivers/char/hw_random/omap-rng.c
4328
4329OMAP USB SUPPORT
4330P: Felipe Balbi
4331M: felipe.balbi@nokia.com
4332P: David Brownell
4333M: dbrownell@users.sourceforge.net
4334L: linux-usb@vger.kernel.org
4335L: linux-omap@vger.kernel.org
4336S: Maintained
4337
Bob Copeland0ad122d2008-07-25 19:45:18 -07004338OMFS FILESYSTEM
4339P: Bob Copeland
4340M: me@bobcopeland.com
4341L: linux-karma-devel@lists.sourceforge.net
4342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: Documentation/filesystems/omfs.txt
4344F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004345
Harald Weltec1986ee2005-11-13 16:06:29 -08004346OMNIKEY CARDMAN 4000 DRIVER
4347P: Harald Welte
4348M: laforge@gnumonks.org
4349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004350F: drivers/char/pcmcia/cm4000_cs.c
4351F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004352
Harald Welte77c44ab2005-11-13 16:06:26 -08004353OMNIKEY CARDMAN 4040 DRIVER
4354P: Harald Welte
4355M: laforge@gnumonks.org
4356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004358
Jonathan Corbet77d51402007-03-22 19:44:17 -03004359OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004360P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004361M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004362L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004363T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004365F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004366
Thomas Gleixner431bca72007-05-02 09:31:35 +02004367ONENAND FLASH DRIVER
4368P: Kyungmin Park
4369M: kyungmin.park@samsung.com
4370L: linux-mtd@lists.infradead.org
4371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004372F: drivers/mtd/onenand/
4373F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375ONSTREAM SCSI TAPE DRIVER
4376P: Willem Riede
4377M: osst@riede.org
4378L: osst-users@lists.sourceforge.net
4379L: linux-scsi@vger.kernel.org
4380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004381F: drivers/scsi/osst*
4382F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004384OPENCORES I2C BUS DRIVER
4385P: Peter Korsgaard
4386M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004387L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004389F: Documentation/i2c/busses/i2c-ocores
4390F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004393P: Robert Richter
4394M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395L: oprofile-list@lists.sf.net
4396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: arch/*/oprofile/
4398F: drivers/oprofile/
4399F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004401ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4402P: Mark Fasheh
4403M: mfasheh@suse.com
4404P: Joel Becker
4405M: joel.becker@oracle.com
4406L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4407W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004408T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004410F: Documentation/filesystems/ocfs2.txt
4411F: Documentation/filesystems/dlmfs.txt
4412F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004413
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414ORINOCO DRIVER
4415P: Pavel Roskin
4416M: proski@gnu.org
4417P: David Gibson
4418M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004419L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004420L: orinoco-users@lists.sourceforge.net
4421L: orinoco-devel@lists.sourceforge.net
4422W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004424F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004426OSD LIBRARY and FILESYSTEM
Boaz Harrosh68274792009-01-25 17:24:14 +02004427P: Boaz Harrosh
4428M: bharrosh@panasas.com
4429P: Benny Halevy
4430M: bhalevy@panasas.com
4431L: osd-dev@open-osd.org
4432W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004433T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004434S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004435F: drivers/scsi/osd/
4436F: drivers/include/scsi/osd_*
4437F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004438
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004439P54 WIRELESS DRIVER
4440P: Michael Wu
4441M: flamingice@sourmilk.net
4442L: linux-wireless@vger.kernel.org
4443W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004444T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004446F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004447
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004448PA SEMI ETHERNET DRIVER
4449P: Olof Johansson
4450M: olof@lixom.net
4451L: netdev@vger.kernel.org
4452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004453F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004454
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004455PA SEMI SMBUS DRIVER
4456P: Olof Johansson
4457M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004458L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004460F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004461
Harald Welte709ee532008-09-23 17:46:57 +02004462PANASONIC LAPTOP ACPI EXTRAS DRIVER
4463P: Harald Welte
4464M: laforge@gnumonks.org
4465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004466F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004467
David Howells4fa97182008-10-13 10:42:44 +01004468PANASONIC MN10300/AM33 PORT
4469P: David Howells
4470M: dhowells@redhat.com
4471P: Koichi Yasutake
4472M: yasutake.koichi@jp.panasonic.com
4473L: linux-am33-list@redhat.com (moderated for non-subscribers)
4474W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004476F: Documentation/mn10300/
4477F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004480L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004481S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004482F: drivers/parport/
4483F: include/linux/parport*.h
4484F: drivers/char/ppdev.c
4485F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004487PARAVIRT_OPS INTERFACE
4488P: Jeremy Fitzhardinge
4489M: jeremy@xensource.com
4490P: Chris Wright
4491M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004492P: Alok Kataria
4493M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004494P: Rusty Russell
4495M: rusty@rustcorp.com.au
4496L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004498F: Documentation/ia64/paravirt_ops.txt
4499F: arch/*/kernel/paravirt*
4500F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4503P: Tim Waugh
4504M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004505L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506W: http://www.torque.net/linux-pp.html
4507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004508F: Documentation/blockdev/paride.txt
4509F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
4511PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004512P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004513M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004514P: Helge Deller
4515M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004516L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004518T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004520F: arch/parisc/
4521F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
Jim Cromie1662d322006-10-06 00:43:59 -07004523PC87360 HARDWARE MONITORING DRIVER
4524P: Jim Cromie
4525M: jim.cromie@gmail.com
4526L: lm-sensors@lm-sensors.org
4527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004528F: Documentation/hwmon/pc87360
4529F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004530
4531PC8736x GPIO DRIVER
4532P: Jim Cromie
4533M: jim.cromie@gmail.com
4534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004535F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004536
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004537PCA9532 LED DRIVER
4538P: Riku Voipio
4539M: riku.voipio@iki.fi
4540S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004541F: drivers/leds/leds-pca9532.c
4542F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004543
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004544PCI ERROR RECOVERY
4545P: Linas Vepstas
4546M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004547L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004548S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004549F: Documentation/PCI/pci-error-recovery.txt
4550F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004551
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004553P: Jesse Barnes
4554M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004555L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004556T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004558F: Documentation/PCI/
4559F: drivers/pci/
4560F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004562PCIE HOTPLUG DRIVER
4563P: Kristen Carlson Accardi
4564M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004565L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004567F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004568
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004570P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004571L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004572W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004573T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004575F: Documentation/pcmcia/
4576F: drivers/pcmcia/
4577F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
4579PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004580P: Don Fry
4581M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004582L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004584F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004586PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004587P: Balbir Singh
4588M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004590F: include/linux/delayacct.h
4591F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004592
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004593PERFORMANCE COUNTER SUBSYSTEM
4594P: Peter Zijlstra
4595M: a.p.zijlstra@chello.nl
4596P: Paul Mackerras
4597M: paulus@samba.org
4598P: Ingo Molnar
4599M: mingo@elte.hu
4600L: linux-kernel@vger.kernel.org
4601S: Supported
4602
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004603PERSONALITY HANDLING
4604P: Christoph Hellwig
4605M: hch@infradead.org
4606L: linux-abi-devel@lists.sourceforge.net
4607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004609
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004611P: Joern Engel
4612M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613L: linux-mtd@lists.infradead.org
4614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004615F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Peter Osterlund249a6772005-09-27 21:45:30 -07004617PKTCDVD DRIVER
4618P: Peter Osterlund
4619M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004621F: drivers/block/pktcdvd.c
4622F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004623
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004625P: Thomas Gleixner
4626M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004628F: fs/timerfd.c
4629F: include/linux/timer*
4630F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
Anton Vorontsov3be86142007-07-15 04:43:36 +04004632POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4633P: Anton Vorontsov
4634M: cbou@mail.ru
4635P: David Woodhouse
4636M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004637T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004639F: include/linux/power_supply.h
4640F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004641
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642PNP SUPPORT
4643P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004644M: abelay@mit.edu
4645P: Bjorn Helgaas
4646M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004648F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Vitaly Wool999445d2007-01-04 13:07:03 +01004650PNXxxxx I2C DRIVER
4651P: Vitaly Wool
4652M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004653L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004655F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657PPP PROTOCOL DRIVERS AND COMPRESSORS
4658P: Paul Mackerras
4659M: paulus@samba.org
4660L: linux-ppp@vger.kernel.org
4661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004662F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
4664PPP OVER ATM (RFC 2364)
4665P: Mitchell Blank Jr
4666M: mitch@sfgoth.com
4667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004668F: net/atm/pppoatm.c
4669F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670
4671PPP OVER ETHERNET
4672P: Michal Ostrowski
Chris Wright5e70b7f32008-06-09 16:07:28 -07004673M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004675F: drivers/net/pppoe.c
4676F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677
James Chapmana6d23702007-06-27 15:53:17 -07004678PPP OVER L2TP
4679P: James Chapman
4680M: jchapman@katalix.com
4681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004682F: drivers/net/pppol2tp.c
4683F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004684
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004685PPS SUPPORT
4686P: Rodolfo Giometti
4687M: giometti@enneenne.com
4688W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4689L: linuxpps@ml.enneenne.com (subscribers-only)
4690S: Maintained
4691
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692PREEMPTIBLE KERNEL
4693P: Robert Love
4694M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695L: kpreempt-tech@lists.sourceforge.net
4696W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004698F: Documentation/preempt-locking.txt
4699F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700
4701PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004702P: Luis R. Rodriguez
4703M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004704L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705W: http://prism54.org
4706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
4709PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4710P: Peter Denison
4711M: promise@pnd-pc.demon.co.uk
4712W: http://www.pnd-pc.demon.co.uk/promise/
4713S: Maintained
4714
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004715PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4716P: Mikael Pettersson
4717M: mikpe@it.uu.se
4718L: linux-ide@vger.kernel.org
4719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004720F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004721
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004722PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004723P: Geoff Levand
4724M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004725L: netdev@vger.kernel.org
4726L: cbe-oss-dev@ozlabs.org
4727S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004728F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004729
Geoff Levandf58a9d12006-11-23 00:46:51 +01004730PS3 PLATFORM SUPPORT
4731P: Geoff Levand
4732M: geoffrey.levand@am.sony.com
4733L: linuxppc-dev@ozlabs.org
4734L: cbe-oss-dev@ozlabs.org
4735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004736F: arch/powerpc/boot/ps3*
4737F: arch/powerpc/include/asm/lv1call.h
4738F: arch/powerpc/include/asm/ps3*.h
4739F: arch/powerpc/platforms/ps3/
4740F: drivers/*/ps3*
4741F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004742F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004743F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004744F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004745
Jim Pariscffb4add2009-01-06 11:32:10 +00004746PS3VRAM DRIVER
4747P: Jim Paris
4748M: jim@jtan.com
4749L: cbe-oss-dev@ozlabs.org
4750S: Maintained
4751
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004752PTRACE SUPPORT
4753P: Roland McGrath
4754M: roland@redhat.com
4755P: Oleg Nesterov
4756M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004757S: Maintained
4758F: include/asm-generic/syscall.h
4759F: include/linux/ptrace.h
4760F: include/linux/regset.h
4761F: include/linux/tracehook.h
4762F: kernel/ptrace.c
4763
Michael Krufky83202042006-07-03 00:24:18 -07004764PVRUSB2 VIDEO4LINUX DRIVER
4765P: Mike Isely
4766M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004767L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004768L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004769W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004770T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: Documentation/video4linux/README.pvrusb2
4773F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004774
Eric Miao30ec2612008-06-12 15:21:41 -07004775PXA2xx/PXA3xx SUPPORT
4776P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004777M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004778P: Russell King
4779M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004780L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004782F: arch/arm/mach-pxa/
4783F: drivers/pcmcia/pxa2xx*
4784F: drivers/spi/pxa2xx*
4785F: drivers/usb/gadget/pxa2*
4786F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004787F: sound/arm/pxa*
4788F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004790PXA168 SUPPORT
4791P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004792M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004793P: Jason Chagas
4794M: jason.chagas@marvell.com
4795L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004796T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004797S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004798
Eric Miao5fa82eb2009-03-20 12:52:24 +08004799PXA910 SUPPORT
4800P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004801M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004802L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004803T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004804S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004805
Pierre Ossman272f1332007-05-14 21:25:26 +02004806PXA MMCI DRIVER
4807S: Orphan
4808
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004809PXA RTC DRIVER
4810P: Robert Jarzmik
4811M: robert.jarzmik@free.fr
4812L: rtc-linux@googlegroups.com
4813S: Maintained
4814
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815QLOGIC QLA2XXX FC-SCSI DRIVER
4816P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004817M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818L: linux-scsi@vger.kernel.org
4819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/scsi/LICENSE.qla2xxx
4821F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Ron Mercer5a4faa872006-07-25 00:40:21 -07004823QLOGIC QLA3XXX NETWORK DRIVER
4824P: Ron Mercer
4825M: linux-driver@qlogic.com
4826L: netdev@vger.kernel.org
4827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004828F: Documentation/networking/LICENSE.qla3xxx
4829F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004830
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004831QLOGIC QLGE 10Gb ETHERNET DRIVER
4832P: Ron Mercer
4833M: linux-driver@qlogic.com
4834M: ron.mercer@qlogic.com
4835L: netdev@vger.kernel.org
4836S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004837F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839QNX4 FILESYSTEM
4840P: Anders Larsen
4841M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842W: http://www.alarsen.net/linux/qnx4fs/
4843S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004844F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004845F: include/linux/qnx4_fs.h
4846F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
4848RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004849P: Benjamin Herrenschmidt
4850M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004851L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: drivers/video/aty/radeon*
4854F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004857P: Paul Mackerras
4858M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004859L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004861F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
Randy Dunlape7839f22008-10-12 16:11:45 -07004863RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004864P: rt2x00 project
4865L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004866L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004867W: http://rt2x00.serialmonkey.com/
4868S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004869T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004870F: drivers/net/wireless/rt2x00/
4871
Nick Piggin9db55792008-02-08 04:19:49 -08004872RAMDISK RAM BLOCK DEVICE DRIVER
4873P: Nick Piggin
4874M: npiggin@suse.de
4875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004876F: Documentation/blockdev/ramdisk.txt
4877F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004878
Matt Mackall9e95ce22005-04-16 15:25:56 -07004879RANDOM NUMBER DRIVER
4880P: Matt Mackall
4881M: mpm@selenic.com
4882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004883F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004884
Matt Porter394b7012005-11-07 01:00:15 -08004885RAPIDIO SUBSYSTEM
4886P: Matt Porter
4887M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004890
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004891RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4892P: Corey Thomas
4893M: coreythomas@charter.net
4894L: linux-wireless@vger.kernel.org
4895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004897
4898RCUTORTURE MODULE
4899P: Josh Triplett
4900M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004901P: Paul E. McKenney
4902M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004904F: Documentation/RCU/torture.txt
4905F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004906
Florian Fainellic1f766b2008-02-06 22:39:44 +01004907RDC R-321X SoC
4908P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004909M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004910S: Maintained
4911
Florian Fainellidb17f392007-12-19 11:30:30 +01004912RDC R6040 FAST ETHERNET DRIVER
4913P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004914M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004915L: netdev@vger.kernel.org
4916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004917F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004918
Andy Grovera09ed662009-02-24 15:30:41 +00004919RDS - RELIABLE DATAGRAM SOCKETS
4920P: Andy Grover
4921M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004922L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004923S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004924F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004925
Josh Triplett595182b2006-10-04 02:17:21 -07004926READ-COPY UPDATE (RCU)
4927P: Dipankar Sarma
4928M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004929P: Paul E. McKenney
4930M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004931W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004933F: Documentation/RCU/rcu.txt
4934F: Documentation/RCU/rcuref.txt
4935F: include/linux/rcupdate.h
4936F: include/linux/srcu.h
4937F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004938
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939REAL TIME CLOCK DRIVER
4940P: Paul Gortmaker
4941M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004943F: Documentation/rtc.txt
4944F: drivers/rtc/
4945F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004947REAL TIME CLOCK (RTC) SUBSYSTEM
4948P: Alessandro Zummo
4949M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004950L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004952F: Documentation/rtc.txt
4953F: drivers/rtc/
4954F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004957L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004959F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960
Ivo van Doorne08976452008-04-12 19:23:55 +02004961RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004962P: Johannes Berg
4963M: johannes@sipsolutions.net
4964L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004965S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004966F Documentation/rfkill.txt
4967F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004968
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004969RISCOM8 DRIVER
4970S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004971F: Documentation/serial/riscom8.txt
4972F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004973
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974ROCKETPORT DRIVER
4975P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976W: http://www.comtrol.com
4977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004978F: Documentation/serial/rocket.txt
4979F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
4981ROSE NETWORK LAYER
4982P: Ralf Baechle
4983M: ralf@linux-mips.org
4984L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004985W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004987F: include/linux/rose.h
4988F: include/net/rose.h
4989F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
Larry Finger59840482008-11-12 17:13:09 -06004991RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004992P: John W. Linville
4993M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004994L: linux-wireless@vger.kernel.org
4995W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004996T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004998F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004999
Larry Finger59840482008-11-12 17:13:09 -06005000RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07005001P: Herton Ronaldo Krzesinski
5002M: herton@mandriva.com.br
5003P: Hin-Tak Leung
5004M: htl10@users.sourceforge.net
5005P: Larry Finger
5006M: Larry.Finger@lwfinger.net
5007L: linux-wireless@vger.kernel.org
5008W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005009T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005011F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06005012
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005013S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01005014P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08005015M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08005016L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01005017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005018F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020S390
5021P: Martin Schwidefsky
5022M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02005023P: Heiko Carstens
5024M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005026L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005027W: http://www.ibm.com/developerworks/linux/linux390/
5028S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005029F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08005030
5031S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02005032P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005033M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02005034P: Frank Blaschka
5035M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005036M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005037L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005038W: http://www.ibm.com/developerworks/linux/linux390/
5039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005040F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005041
Felix Beckfeed9b62009-03-26 15:24:23 +01005042S390 ZCRYPT DRIVER
5043P: Felix Beck
5044M: felix.beck@de.ibm.com
5045P: Ralph Wuerthner
5046M: ralph.wuerthner@de.ibm.com
5047M: linux390@de.ibm.com
5048L: linux-s390@vger.kernel.org
5049S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005050F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005051
Heiko Carstens5238da42006-02-11 17:56:01 -08005052S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01005053P: Christof Schmitt
5054M: christof.schmitt@de.ibm.com
5055P: Martin Peschke
5056M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005057M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01005058L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005059W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005061F: Documentation/s390/zfcpdump.txt
5062F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Ursula Braundd96df22007-09-19 13:09:02 +02005064S390 IUCV NETWORK LAYER
5065P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005066M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02005067M: linux390@de.ibm.com
5068L: linux-s390@vger.kernel.org
5069W: http://www.ibm.com/developerworks/linux/linux390/
5070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005071F: drivers/s390/net/*iucv*
5072F: include/net/iucv/
5073F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005074
Ben Dooks4dde7f72008-06-30 22:40:38 +01005075S3C24XX SD/MMC Driver
5076P: Ben Dooks
5077M: ben-linux@fluff.org
5078L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005080F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005081
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082SAA7146 VIDEO4LINUX-2 DRIVER
5083P: Michael Hunold
5084M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005085L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005086T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087W: http://www.mihu.de/linux/saa7146
5088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005089F: drivers/media/common/saa7146*
5090F: drivers/media/video/*7146*
5091F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093SC1200 WDT DRIVER
5094P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005095M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005097F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098
5099SCHEDULER
5100P: Ingo Molnar
5101M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005102P: Peter Zijlstra
5103M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005105F: kernel/sched*
5106F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107
5108SCSI CDROM DRIVER
5109P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005110M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111L: linux-scsi@vger.kernel.org
5112W: http://www.kernel.dk
5113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005114F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
5116SCSI SG DRIVER
5117P: Doug Gilbert
5118M: dgilbert@interlog.com
5119L: linux-scsi@vger.kernel.org
5120W: http://www.torque.net/sg
5121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005122F: drivers/scsi/sg.c
5123F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
5125SCSI SUBSYSTEM
5126P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005127M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005128L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005129T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5130T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5131T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005133F: drivers/scsi/
5134F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135
5136SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005137P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138M: Kai.Makisara@kolumbus.fi
5139L: linux-scsi@vger.kernel.org
5140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005141F: Documentation/scsi/st.txt
5142F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
5144SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005145P: Vlad Yasevich
5146M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005147P: Sridhar Samudrala
5148M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005149L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005150W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005151S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005152F: Documentation/networking/sctp.txt
5153F: include/linux/sctp.h
5154F: include/net/sctp/
5155F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
5157SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005158P: Jim Cromie
5159M: jim.cromie@gmail.com
5160S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005161F: Documentation/i2c/busses/scx200_acb
5162F: arch/x86/kernel/scx200_32.c
5163F: drivers/watchdog/scx200_wdt.c
5164F: drivers/i2c/busses/scx200*
5165F: drivers/mtd/maps/scx200_docflash.c
5166F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005167
5168SCx200 GPIO DRIVER
5169P: Jim Cromie
5170M: jim.cromie@gmail.com
5171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/char/scx200_gpio.c
5173F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005174
5175SCx200 HRT CLOCKSOURCE DRIVER
5176P: Jim Cromie
5177M: jim.cromie@gmail.com
5178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005179F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
Sascha Sommer6a369132008-07-15 14:21:29 +02005181SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5182P: Sascha Sommer
5183M: saschasommer@freenet.de
5184L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005186F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005187
Randy Dunlape7839f22008-10-12 16:11:45 -07005188SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005189P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005190M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005191L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005192S: Maintained
5193
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005194SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5195P: Anton Vorontsov
5196M: avorontsov@ru.mvista.com
5197L: linuxppc-dev@ozlabs.org
5198L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005200F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201
Ben Dooks0d1bb412009-06-14 13:52:37 +01005202SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5203P: Ben Dooks
5204M: ben-linux@fluff.org
5205L: sdhci-devel@lists.ossman.eu
5206S: Maintained
5207F: drivers/mmc/host/sdhci-s3c.c
5208
James Morris8711cca2008-12-04 03:19:45 +11005209SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005210P: James Morris
5211M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005212L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005213T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005214W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005215S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005216F: security/
James Morris8711cca2008-12-04 03:19:45 +11005217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218SECURITY CONTACT
5219P: Security Officers
5220M: security@kernel.org
5221S: Supported
5222
5223SELINUX SECURITY MODULE
5224P: Stephen Smalley
5225M: sds@tycho.nsa.gov
5226P: James Morris
5227M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005228P: Eric Paris
5229M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005230L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005231W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005232T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005234F: include/linux/selinux*
5235F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236
Jiri Slabycef2cf02007-05-08 00:31:45 -07005237SENSABLE PHANTOM
5238P: Jiri Slaby
5239M: jirislaby@gmail.com
5240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005241F: drivers/misc/phantom.c
5242F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005243
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005244SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245P: Jeff Garzik
5246M: jgarzik@pobox.com
5247L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005248T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005250F: drivers/ata/
5251F: include/linux/ata.h
5252F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005254SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5255P: Sathya Perla
5256M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005257P: Subbu Seetharaman
5258M: subbus@serverengines.com
5259L: netdev@vger.kernel.org
5260W: http://www.serverengines.com
5261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005262F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005263
Ben Hutchings8ceee662008-04-27 12:55:59 +01005264SFC NETWORK DRIVER
5265P: Steve Hodgson
5266P: Ben Hutchings
5267P: Robert Stonehouse
5268M: linux-net-drivers@solarflare.com
5269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005270F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005271
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005272SGI GRU DRIVER
5273P: Jack Steiner
5274M: steiner@sgi.com
5275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005277
5278SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5279P: Pat Gefre
5280M: pfg@sgi.com
5281L: linux-ia64@vger.kernel.org
5282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005283F: Documentation/ia64/serial.txt
5284F: drivers/serial/ioc?_serial.c
5285F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005286
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287SGI VISUAL WORKSTATION 320 AND 540
5288P: Andrey Panin
5289M: pazke@donpac.ru
5290L: linux-visws-devel@lists.sf.net
5291W: http://linux-visws.sf.net
5292S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005293F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Jack Steiner75312612008-08-15 00:40:42 -07005295SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005296P: Robin Holt
5297M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005299F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005300
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005301SHARP LH SUPPORT (LH7952X & LH7A40X)
5302P: Marc Singer
5303M: elf@buici.com
5304W: http://projects.buici.com/arm
5305L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005307F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5308F: arch/arm/mach-lh7a40x/
5309F: drivers/serial/serial_lh7a40x.c
5310F: drivers/usb/gadget/lh7a40*
5311F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005312
5313SHPC HOTPLUG DRIVER
5314P: Kristen Carlson Accardi
5315M: kristen.c.accardi@intel.com
5316L: linux-pci@vger.kernel.org
5317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005318F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005319
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320SIMTEC EB110ATX (Chalice CATS)
5321P: Ben Dooks
5322P: Vincent Sanders
5323M: support@simtec.co.uk
5324W: http://www.simtec.co.uk/products/EB110ATX/
5325S: Supported
5326
5327SIMTEC EB2410ITX (BAST)
5328P: Ben Dooks
5329P: Vincent Sanders
5330M: support@simtec.co.uk
5331W: http://www.simtec.co.uk/products/EB2410ITX/
5332S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005333F: arch/arm/mach-s3c2410/
5334F: drivers/*/*s3c2410*
5335F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
Francois Romieu92aab3c2005-07-30 13:11:18 +02005337SIS 190 ETHERNET DRIVER
5338P: Francois Romieu
5339M: romieu@fr.zoreil.com
5340L: netdev@vger.kernel.org
5341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005342F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005343
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344SIS 900/7016 FAST ETHERNET DRIVER
5345P: Daniele Venzano
5346M: venza@brownhat.org
5347W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005348L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005350F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005352SIS 96X I2C/SMBUS DRIVER
5353P: Mark M. Hoffman
5354M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005355L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005357F: Documentation/i2c/busses/i2c-sis96x
5358F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005359
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360SIS FRAMEBUFFER DRIVER
5361P: Thomas Winischhofer
5362M: thomas@winischhofer.net
5363W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005365F: Documentation/fb/sisfb.txt
5366F: drivers/video/sis/
5367F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
5369SIS USB2VGA DRIVER
5370P: Thomas Winischhofer
5371M: thomas@winischhofer.net
5372W: http://www.winischhofer.at/linuxsisusbvga.shtml
5373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005374F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005376SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5377P: Stephen Hemminger
5378M: shemminger@linux-foundation.org
5379L: netdev@vger.kernel.org
5380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005381F: drivers/net/skge.*
5382F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005383
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005384SLAB ALLOCATOR
5385P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005386M: cl@linux-foundation.org
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005387P: Pekka Enberg
5388M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005389P: Matt Mackall
5390M: mpm@selenic.com
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005391L: linux-mm@kvack.org
5392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: include/linux/sl?b*.h
5394F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005395
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396SMC91x ETHERNET DRIVER
5397P: Nicolas Pitre
5398M: nico@cam.org
5399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005400F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005402SMSC47B397 HARDWARE MONITOR DRIVER
5403P: Mark M. Hoffman
5404M: mhoffman@lightlink.com
5405L: lm-sensors@lm-sensors.org
5406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: Documentation/hwmon/smsc47b397
5408F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005409
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005410SMSC911x ETHERNET DRIVER
5411P: Steve Glendinning
5412M: steve.glendinning@smsc.com
5413L: netdev@vger.kernel.org
5414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005415F: include/linux/smsc911x.h
5416F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005417
Steve Glendinning2cb37722008-12-11 20:54:30 -08005418SMSC9420 PCI ETHERNET DRIVER
5419P: Steve Glendinning
5420M: steve.glendinning@smsc.com
5421L: netdev@vger.kernel.org
5422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005423F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005424
Ben Nizetteb54f2862008-03-13 22:27:30 +11005425SMX UIO Interface
5426P: Ben Nizette
5427M: bn@niasdigital.com
5428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005429F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005431SN-IA64 (Itanium) SUB-PLATFORM
5432P: Jes Sorensen
5433M: jes@sgi.com
5434L: linux-altix@sgi.com
5435L: linux-ia64@vger.kernel.org
5436W: http://www.sgi.com/altix
5437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005438F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005439
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005440SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005441P: Guennadi Liakhovetski
5442M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005443L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005444T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005446F: include/media/v4l2*
5447F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005448
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005449SOEKRIS NET48XX LED SUPPORT
5450P: Chris Boot
5451M: bootc@bootc.net
5452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005453F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005457M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005460F: drivers/md/
5461F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463SONIC NETWORK DRIVER
5464P: Thomas Bogendoerfer
5465M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005466L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005468F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469
Michael Buesch61e115a2007-09-18 15:12:50 -04005470SONICS SILICON BACKPLANE DRIVER (SSB)
5471P: Michael Buesch
5472M: mb@bu3sch.de
5473L: netdev@vger.kernel.org
5474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005475F: drivers/ssb/
5476F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005477
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005479P: Mattia Dongili
5480M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005481L: linux-acpi@vger.kernel.org
5482W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005484F: Documentation/laptops/sony-laptop.txt
5485F: drivers/char/sonypi.c
5486F: drivers/platform/x86/sony-laptop.c
5487F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488
Alex Dubovbaf85322008-02-09 10:20:54 -08005489SONY MEMORYSTICK CARD SUPPORT
5490P: Alex Dubov
5491M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005492W: http://tifmxx.berlios.de/
5493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005494F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496SOUND
5497P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005498M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005499P: Takashi Iwai
5500M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005501L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005502W: http://www.alsa-project.org/
5503T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5504T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005506F: Documentation/sound/
5507F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005508F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
Mark Brownbd903bd2008-11-19 19:16:05 +00005510SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005511P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005512M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005513P: Mark Brown
5514M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005515T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005516L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005517W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005519F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005520F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005521
Sam Ravnborg473321f2009-01-04 15:47:49 -08005522SPARC + UltraSPARC (sparc/sparc64)
5523P: David S. Miller
5524M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005526T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5527T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005529F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
5531SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5532P: Roger Wolff
5533M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005535F: Documentation/serial/specialix.txt
5536F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005538SPI SUBSYSTEM
5539P: David Brownell
5540M: dbrownell@users.sourceforge.net
5541L: spi-devel-general@lists.sourceforge.net
5542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005543F: Documentation/spi/
5544F: drivers/spi/
5545F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005546
Jim Lewis2752e402006-09-29 02:01:19 -07005547SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005548P: Ishizaki Kou
5549M: kou.ishizaki@toshiba.co.jp
5550P: Jens Osterkamp
5551M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005552L: netdev@vger.kernel.org
5553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005554F: Documentation/networking/spider_net.txt
5555F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005556
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005557SPU FILE SYSTEM
5558P: Jeremy Kerr
5559M: jk@ozlabs.org
5560L: linuxppc-dev@ozlabs.org
5561L: cbe-oss-dev@ozlabs.org
5562W: http://www.ibm.com/developerworks/power/cell/
5563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005564F: Documentation/filesystems/spufs.txt
5565F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005566
Phillip Lougherfc555842009-01-05 08:46:29 +00005567SQUASHFS FILE SYSTEM
5568P: Phillip Lougher
5569M: phillip@lougher.demon.co.uk
5570L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5571W: http://squashfs.org.uk
5572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005573F: Documentation/filesystems/squashfs.txt
5574F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005575
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576SRM (Alpha) environment access
5577P: Jan-Benedict Glaw
5578M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005580F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581
Linus Torvalds26e9a392008-10-17 09:50:12 -07005582STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005583P: Greg Kroah-Hartman
5584M: greg@kroah.com
5585P: Chris Wright
5586M: chrisw@sous-sol.org
5587L: stable@kernel.org
5588S: Maintained
5589
Linus Torvalds26e9a392008-10-17 09:50:12 -07005590STAGING SUBSYSTEM
5591P: Greg Kroah-Hartman
5592M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005593T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005594L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005596F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005597
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598STARFIRE/DURALAN NETWORK DRIVER
5599P: Ion Badulescu
Joe Perchesb4f90182009-06-30 11:41:32 -07005600M: ionut@badula.org
5601S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005602F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
5604STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005605S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005606F: drivers/net/wireless/strip.c
5607F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
5609STRADIS MPEG-2 DECODER DRIVER
5610P: Nathan Laredo
5611M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612W: http://www.stradis.com/
5613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005616SUN3/3X
5617P: Sam Creasey
5618M: sammy@sammy.net
5619W: http://sammy.net/sun3/
5620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005621F: arch/m68k/kernel/*sun3*
5622F: arch/m68k/sun3*/
5623F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005624
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005625SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626P: Paul Mundt
5627M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005628L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005630T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005631S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005632F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005633F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005634F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005636SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005637P: Len Brown
5638M: len.brown@intel.com
5639P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005640M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005641P: Rafael J. Wysocki
5642M: rjw@sisk.pl
5643L: linux-pm@lists.linux-foundation.org
5644S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005645F: Documentation/power/
5646F: arch/x86/kernel/acpi/
5647F: drivers/base/power/
5648F: kernel/power/
5649F: include/linux/suspend.h
5650F: include/linux/freezer.h
5651F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
5653SVGA HANDLING
5654P: Martin Mares
5655M: mj@ucw.cz
5656L: linux-video@atrey.karlin.mff.cuni.cz
5657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005658F: Documentation/svga.txt
5659F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660
5661SYSV FILESYSTEM
5662P: Christoph Hellwig
5663M: hch@infradead.org
5664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005665F: Documentation/filesystems/sysv-fs.txt
5666F: fs/sysv/
5667F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668
Alan Cox4e688522008-04-30 00:52:11 -07005669TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005670P: Balbir Singh
5671M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: Documentation/accounting/taskstats*
5674F: include/linux/taskstats*
5675F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005676
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005677TC CLASSIFIER
5678P: Jamal Hadi Salim
5679M: hadi@cyberus.ca
5680L: netdev@vger.kernel.org
5681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005682F: include/linux/pkt_cls.h
5683F: include/net/pkt_cls.h
5684F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005685
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005686TCP LOW PRIORITY MODULE
5687P: Wong Hoi Sing, Edison
5688M: hswong3i@gmail.com
5689P: Hung Hing Lun, Mike
5690M: hlhung3i@gmail.com
5691W: http://tcp-lp-mod.sourceforge.net/
5692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005693F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005694
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005695TEHUTI ETHERNET DRIVER
5696P: Alexander Indenbaum
5697M: baum@tehutinetworks.net
5698P: Andy Gospodarek
5699M: andy@greyhouse.net
5700L: netdev@vger.kernel.org
5701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005702F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005703
Alan Cox4e688522008-04-30 00:52:11 -07005704Telecom Clock Driver for MCPL0010
5705P: Mark Gross
5706M: mark.gross@intel.com
5707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005708F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005709
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005710TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005711P: Chris Zankel
5712M: chris@zankel.net
5713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005715
5716THINKPAD ACPI EXTRAS DRIVER
5717P: Henrique de Moraes Holschuh
5718M: ibm-acpi@hmh.eng.br
5719L: ibm-acpi-devel@lists.sourceforge.net
5720W: http://ibm-acpi.sourceforge.net
5721W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005722T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005724F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005725
Alex Dubov4020f2d2006-10-04 02:15:37 -07005726TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005727P: Alex Dubov
5728M: oakad@yahoo.com
5729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005730F: drivers/misc/tifm*
5731F: drivers/mmc/host/tifm_sd.c
5732F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005733
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005734TI TWL4030 SERIES SOC CODEC DRIVER
5735P: Peter Ujfalusi
5736M: peter.ujfalusi@nokia.com
5737L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5738S: Maintained
5739F: sound/soc/codecs/twl4030*
5740
Per Lidene86eaa32006-01-12 16:45:18 +01005741TIPC NETWORK LAYER
5742P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005743M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005744P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005745M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005746P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005747M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005748L: tipc-discussion@lists.sourceforge.net
5749W: http://tipc.sourceforge.net/
5750W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005751T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005753F: include/linux/tipc*.h
5754F: include/net/tipc/
5755F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005756
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757TLAN NETWORK DRIVER
5758P: Samuel Chessman
5759M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005760L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761W: http://sourceforge.net/projects/tlan/
5762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005763F: Documentation/networking/tlan.txt
5764F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005766TOMOYO SECURITY MODULE
5767P: Kentaro Takeda
5768M: takedakn@nttdata.co.jp
5769P: Tetsuo Handa
5770M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005771L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5772L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5773L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5774W: http://tomoyo.sourceforge.jp/
5775T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005777F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005778
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005780S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
5783TOSHIBA SMM DRIVER
5784P: Jonathan Buzzard
5785M: jonathan@buzzard.org.uk
5786L: tlinux-users@tce.toshiba-dme.co.jp
5787W: http://www.buzzard.org.uk/toshiba/
5788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005789F: drivers/char/toshiba.c
5790F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
Pierre Ossmand719f902009-03-24 21:06:09 +01005792TMIO MMC DRIVER
5793P: Ian Molton
5794M: ian@mnementh.co.uk
5795S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005796F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005797
Hugh Dickins98f32602009-05-21 20:33:58 +01005798TMPFS (SHMEM FILESYSTEM)
5799P: Hugh Dickins
5800M: hugh.dickins@tiscali.co.uk
5801L: linux-mm@kvack.org
5802S: Maintained
5803F: include/linux/shmem_fs.h
5804F: mm/shmem.c
5805
Alan Cox4e688522008-04-30 00:52:11 -07005806TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005807P: Debora Velarde
5808M: debora@linux.vnet.ibm.com
5809P: Rajiv Andrade
5810M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005811W: http://tpmdd.sourceforge.net
5812P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005813M: m.selhorst@sirrix.com
5814W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005815L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005818
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005820P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005821M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005822T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823S: Maintained
5824
Alan Cox4e688522008-04-30 00:52:11 -07005825TTY LAYER
5826P: Alan Cox
5827M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005828S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005829T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Coxe3288772009-07-07 16:39:54 +01005830F: drivers/char/tty_*
5831F: drivers/serial/serial_core.c
5832F: include/linux/serial_core.h
5833F: include/linux/serial.h
5834F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005835
Grant Grundler740db6d2008-02-17 11:53:49 -07005836TULIP NETWORK DRIVERS
5837P: Grant Grundler
5838M: grundler@parisc-linux.org
5839P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005840M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005841L: netdev@vger.kernel.org
5842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005843F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844
5845TUN/TAP driver
5846P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005847M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848L: vtun@office.satix.net
5849W: http://vtun.sourceforge.net/tun
5850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005851F: Documentation/networking/tuntap.txt
5852F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005854TURBOCHANNEL SUBSYSTEM
5855P: Maciej W. Rozycki
5856M: macro@linux-mips.org
5857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: drivers/tc/
5859F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005860
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861U14-34F SCSI DRIVER
5862P: Dario Ballabio
5863M: ballabio_dario@emc.com
5864L: linux-scsi@vger.kernel.org
5865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005866F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005868UBI FILE SYSTEM (UBIFS)
5869P: Artem Bityutskiy
5870M: dedekind@infradead.org
5871P: Adrian Hunter
Artem Bityutskiy8f603572009-07-03 11:21:54 +03005872M: adrian.hunter@nokia.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005873L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005874T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005875W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005877F: Documentation/filesystems/ubifs.txt
5878F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879
Alan Coxcc2020e2008-05-19 14:21:51 +01005880UCLINUX (AND M68KNOMMU)
5881P: Greg Ungerer
5882M: gerg@uclinux.org
5883W: http://www.uclinux.org/
5884L: uclinux-dev@uclinux.org (subscribers-only)
5885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005887
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005888UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005889P: Yoshinori Sato
5890M: ysato@users.sourceforge.jp
5891W: http://uclinux-h8.sourceforge.jp/
5892S: Supported
5893
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005895P: Jan Kara
5896M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897W: http://linux-udf.sourceforge.net
5898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005899F: Documentation/filesystems/udf.txt
5900F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901
Alan Coxcc2020e2008-05-19 14:21:51 +01005902UFS FILESYSTEM
5903P: Evgeniy Dushistov
5904M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005906F: Documentation/filesystems/ufs.txt
5907F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005908
David Vrabel18332a82008-09-17 16:34:44 +01005909ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5910P: David Vrabel
5911M: david.vrabel@csr.com
5912L: linux-usb@vger.kernel.org
5913S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005914F: drivers/uwb/*
5915F: include/linux/uwb.h
5916F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918UNIFORM CDROM DRIVER
5919P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005920M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921W: http://www.kernel.dk
5922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005923F: Documentation/cdrom/
5924F: drivers/cdrom/cdrom.c
5925F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005927UNSORTED BLOCK IMAGES (UBI)
5928P: Artem Bityutskiy
5929M: dedekind@infradead.org
5930W: http://www.linux-mtd.infradead.org/
5931L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005932T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005933S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005934F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005935F: include/linux/mtd/ubi.h
5936F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938USB ACM DRIVER
5939P: Oliver Neukum
5940M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005941L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005943F: Documentation/usb/acm.txt
5944F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
5946USB BLOCK DRIVER (UB ub)
5947P: Pete Zaitcev
5948M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005949L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005951F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953USB CDC ETHERNET DRIVER
5954P: Greg Kroah-Hartman
5955M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005956L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957S: Maintained
5958W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005959F: drivers/net/usb/cdc_*.c
5960F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005962USB CYPRESS C67X00 DRIVER
5963P: Peter Korsgaard
5964M: jacmet@sunsite.dk
5965L: linux-usb@vger.kernel.org
5966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005968
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005969USB DAVICOM DM9601 DRIVER
5970P: Peter Korsgaard
5971M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005972L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005973W: http://www.linux-usb.org/usbnet
5974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005975F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005976
Alan Coxcc2020e2008-05-19 14:21:51 +01005977USB DIAMOND RIO500 DRIVER
5978P: Cesar Miquel
5979M: miquel@df.uba.ar
5980L: rio500-users@lists.sourceforge.net
5981W: http://rio500.sourceforge.net
5982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005984
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985USB EHCI DRIVER
5986P: David Brownell
5987M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005988L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005989S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005990F: Documentation/usb/ehci.txt
5991F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
Luca Risolia7ce08c92006-01-11 02:06:59 +00005993USB ET61X[12]51 DRIVER
5994P: Luca Risolia
5995M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005996L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005997L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005998T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005999W: http://www.linux-projects.org
6000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006001F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006002
David Brownell69ae9e32006-11-14 02:03:31 -08006003USB GADGET/PERIPHERAL SUBSYSTEM
6004P: David Brownell
6005M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006006L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006007W: http://www.linux-usb.org/gadget
6008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006009F: drivers/usb/gadget/
6010F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006011
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006012USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266fd2007-01-15 09:56:21 +01006013P: Jiri Kosina
6014M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02006015L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006016T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006018F: Documentation/usb/hiddev.txt
6019F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
Olav Kongas959eea22005-11-03 17:38:14 +02006021USB ISP116X DRIVER
6022P: Olav Kongas
6023M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02006024L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: drivers/usb/host/isp116x*
6027F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006028
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029USB KAWASAKI LSI DRIVER
6030P: Oliver Neukum
6031M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02006032L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006034F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035
6036USB MASS STORAGE DRIVER
6037P: Matthew Dharm
6038M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006039L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006040L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041S: Maintained
6042W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006043F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044
6045USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08006046P: David Brownell
6047M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006048L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006049S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006050F: Documentation/usb/ohci.txt
6051F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052
Matthias Urlichsba460e42005-07-14 00:33:47 -07006053USB OPTION-CARD DRIVER
6054P: Matthias Urlichs
6055M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006056L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006058F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006059
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060USB OV511 DRIVER
6061P: Mark McClelland
6062M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006063L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064W: http://alpha.dyndns.org/ov511/
6065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006066F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
6068USB PEGASUS DRIVER
6069P: Petko Manolov
6070M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006071L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006072L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073W: http://pegasus2.sourceforge.net/
6074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006075F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006077USB PRINTER DRIVER (usblp)
6078P: Pete Zaitcev
6079M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006080L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006082F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083
6084USB RTL8150 DRIVER
6085P: Petko Manolov
6086M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006087L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006088L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089W: http://pegasus2.sourceforge.net/
6090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006091F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
6093USB SE401 DRIVER
6094P: Jeroen Vreeken
6095M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006096L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097W: http://www.chello.nl/~j.vreeken/se401/
6098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: Documentation/video4linux/se401.txt
6100F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101
Alan Cox4e688522008-04-30 00:52:11 -07006102USB SERIAL BELKIN F5U103 DRIVER
6103P: William Greathouse
6104M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006105L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006107F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006108
6109USB SERIAL CYPRESS M8 DRIVER
6110P: Lonnie Mendez
6111M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006112L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006113S: Maintained
6114W: http://geocities.com/i0xox0i
6115W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006116F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006117
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118USB SERIAL CYBERJACK DRIVER
6119P: Matthias Bruestle and Harald Welte
6120M: support@reiner-sct.com
6121W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006123F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124
6125USB SERIAL DIGI ACCELEPORT DRIVER
6126P: Peter Berger and Al Borchers
6127M: pberger@brimson.com
6128M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006129L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006131F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
6133USB SERIAL DRIVER
6134P: Greg Kroah-Hartman
6135M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006136L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/usb/usb-serial.txt
6139F: drivers/usb/serial/generic.c
6140F: drivers/usb/serial/usb-serial.c
6141F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6144P: Gary Brubaker
6145M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006146L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006148F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149
6150USB SERIAL KEYSPAN DRIVER
6151P: Greg Kroah-Hartman
6152M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006153L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154W: http://www.kroah.com/linux/
6155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157
6158USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006159P: Support Department
6160M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006161L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162W: http://www.connecttech.com
6163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006164F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006165
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006166USB SMSC95XX ETHERNET DRIVER
6167P: Steve Glendinning
6168M: steve.glendinning@smsc.com
6169L: netdev@vger.kernel.org
6170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006171F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006172
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006173USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174P: Luca Risolia
6175M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006176L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006177L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006178T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179W: http://www.linux-projects.org
6180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006181F: Documentation/video4linux/sn9c102.txt
6182F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183
6184USB SUBSYSTEM
6185P: Greg Kroah-Hartman
6186M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006187L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006189T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006191F: Documentation/usb/
6192F: drivers/net/usb/
6193F: drivers/usb/
6194F: include/linux/usb.h
6195F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196
6197USB UHCI DRIVER
6198P: Alan Stern
6199M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006200L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203
David Brownell69ae9e32006-11-14 02:03:31 -08006204USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205P: David Brownell
6206M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006207L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006208W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006210F: drivers/net/usb/usbnet.c
6211F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006213USB VIDEO CLASS
6214P: Laurent Pinchart
6215M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006216L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006217L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006218T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006219W: http://linux-uvc.berlios.de
6220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006222
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223USB W996[87]CF DRIVER
6224P: Luca Risolia
6225M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006226L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006227L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006228T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229W: http://www.linux-projects.org
6230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006231F: Documentation/video4linux/w9968cf.txt
6232F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006234USB WIRELESS RNDIS DRIVER (rndis_wlan)
6235P: Jussi Kivilinna
6236M: jussi.kivilinna@mbnet.fi
6237L: linux-wireless@vger.kernel.org
6238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006239F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006240
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006241USB XHCI DRIVER
6242P: Sarah Sharp
6243M: sarah.a.sharp@intel.com
6244L: linux-usb@vger.kernel.org
6245S: Supported
6246
Luca Risolia60f78052006-02-06 16:29:35 +00006247USB ZC0301 DRIVER
6248P: Luca Risolia
6249M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006250L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006251L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006252T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006253W: http://www.linux-projects.org
6254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006255F: Documentation/video4linux/zc0301.txt
6256F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006257
Linus Torvalds1da177e2005-04-16 15:20:36 -07006258USB ZD1201 DRIVER
6259P: Jeroen Vreeken
6260M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006261L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262W: http://linux-lc100020.sourceforge.net
6263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006264F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006266USB ZR364XX DRIVER
6267P: Antoine Jacquet
6268M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006269L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006270L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006271T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006272W: http://royale.zerezo.com/zr364xx/
6273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: Documentation/video4linux/zr364xx.txt
6275F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006276
Randy Dunlape7839f22008-10-12 16:11:45 -07006277USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006278P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006279M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280L: user-mode-linux-devel@lists.sourceforge.net
6281L: user-mode-linux-user@lists.sourceforge.net
6282W: http://user-mode-linux.sourceforge.net
6283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006284F: Documentation/uml/
6285F: arch/um/
6286F: fs/hostfs/
6287F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006288
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006289USERSPACE I/O (UIO)
6290P: Hans J. Koch
6291M: hjk@linutronix.de
6292P: Greg Kroah-Hartman
6293M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006295F: Documentation/DocBook/uio-howto.tmpl
6296F: drivers/uio/
6297F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006298
Karel Zakf899b0a2008-05-23 13:04:21 -07006299UTIL-LINUX-NG PACKAGE
6300P: Karel Zak
6301M: kzak@redhat.com
6302L: util-linux-ng@vger.kernel.org
6303W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006304T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006305S: Maintained
6306
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006307UVESAFB DRIVER
6308P: Michal Januszewski
6309M: spock@gentoo.org
6310L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6311W: http://dev.gentoo.org/~spock/projects/uvesafb/
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: Documentation/fb/uvesafb.txt
6314F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006315
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006316VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317P: OGAWA Hirofumi
6318M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: Documentation/filesystems/vfat.txt
6321F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323VIA RHINE NETWORK DRIVER
6324P: Roger Luethi
6325M: rl@hellgate.ch
6326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006327F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328
Jean Delvare32c0a522005-09-22 21:47:58 +02006329VIAPRO SMBUS DRIVER
6330P: Jean Delvare
6331M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006332L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006334F: Documentation/i2c/busses/i2c-viapro
6335F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006336
Harald Weltef0bf7f62009-06-17 20:22:39 +02006337VIA SD/MMC CARD CONTROLLER DRIVER
6338P: Joseph Chan
6339M: JosephChan@via.com.tw
6340P: Harald Welte
6341M: HaraldWelte@viatech.com
6342S: Maintained
6343F: drivers/mmc/host/via-sdmmc.c
6344
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006345VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6346P: Joseph Chan
6347M: JosephChan@via.com.tw
6348P: Scott Fang
6349M: ScottFang@viatech.com.cn
6350L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006352F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006353
Francois Romieu01f20732007-01-26 00:57:17 -08006354VIA VELOCITY NETWORK DRIVER
6355P: Francois Romieu
6356M: romieu@fr.zoreil.com
6357L: netdev@vger.kernel.org
6358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006359F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360
Patrick McHardybe7f8272007-10-23 20:26:36 -07006361VLAN (802.1Q)
6362P: Patrick McHardy
6363M: kaber@trash.net
6364L: netdev@vger.kernel.org
6365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: drivers/net/macvlan.c
6367F: include/linux/if_*vlan.h
6368F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006369
Florian Fainelli55e331c2009-06-16 15:33:53 -07006370VLYNQ BUS
6371P: Florian Fainelli
6372M: florian@openwrt.org
6373L: openwrt-devel@lists.openwrt.org
6374S: Maintained
6375F: drivers/vlynq/vlynq.c
6376F: include/linux/vlynq.h
6377
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006378VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6379P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006380M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006381P: Mark Brown
6382M: broonie@opensource.wolfsonmicro.com
6383W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006384W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006385T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006387F: drivers/regulator/
6388F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006389
Juerg Haefligerab413192006-09-24 20:54:04 +02006390VT1211 HARDWARE MONITOR DRIVER
6391P: Juerg Haefliger
6392M: juergh@gmail.com
6393L: lm-sensors@lm-sensors.org
6394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006395F: Documentation/hwmon/vt1211
6396F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006397
Roger Lucas1de9e372005-11-26 20:20:05 +01006398VT8231 HARDWARE MONITOR DRIVER
6399P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006400M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006401L: lm-sensors@lm-sensors.org
6402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006404
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405W1 DALLAS'S 1-WIRE BUS
6406P: Evgeniy Polyakov
6407M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006409F: Documentation/w1/
6410F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411
Charles Spirakis13927072006-07-05 18:05:15 +02006412W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006413P: Marc Hulsman
6414M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006415L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: Documentation/hwmon/w83791d
6418F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006419
Rudolf Marek61db0112006-12-12 18:18:30 +01006420W83793 HARDWARE MONITORING DRIVER
6421P: Rudolf Marek
6422M: r.marek@assembler.cz
6423L: lm-sensors@lm-sensors.org
6424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006425F: Documentation/hwmon/w83793
6426F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006427
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428W83L51xD SD/MMC CARD INTERFACE DRIVER
6429P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006430M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006432F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006434WATCHDOG DEVICE DRIVERS
6435P: Wim Van Sebroeck
6436M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006437T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006439F: Documentation/watchdog/
6440F: drivers/watchdog/
6441F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6444P: Jean Tourrilhes
6445M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006446L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006449F: Documentation/networking/wavelan.txt
6450F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451
6452WD7000 SCSI DRIVER
6453P: Miroslav Zagorac
6454M: zaga@fly.cc.fer.hr
6455L: linux-scsi@vger.kernel.org
6456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006457F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006459WIMAX STACK
6460P: Inaky Perez-Gonzalez
6461M: inaky.perez-gonzalez@intel.com
6462M: linux-wimax@intel.com
6463L: wimax@linuxwimax.org
6464S: Supported
6465W: http://linuxwimax.org
6466
David Vrabel18332a82008-09-17 16:34:44 +01006467WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6468P: David Vrabel
6469M: david.vrabel@csr.com
6470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006471F: include/linux/wlp.h
6472F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006473
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006474WISTRON LAPTOP BUTTON DRIVER
6475P: Miloslav Trmac
6476M: mitr@volny.cz
6477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006479
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480WL3501 WIRELESS PCMCIA CARD DRIVER
6481P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006482M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006483L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006484W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
Mark Brownfebf1df2008-04-02 00:51:09 -04006488WM97XX TOUCHSCREEN DRIVERS
6489P: Mark Brown
6490M: broonie@opensource.wolfsonmicro.com
6491P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006492M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006493L: linux-input@vger.kernel.org
6494T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6495W: http://opensource.wolfsonmicro.com/node/7
6496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006497F: drivers/input/touchscreen/*wm97*
6498F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006499
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500X.25 NETWORK LAYER
6501P: Henner Eisen
6502M: eis@baty.hanse.de
6503L: linux-x25@vger.kernel.org
6504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006505F: Documentation/networking/x25*
6506F: include/net/x25*
6507F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006509X86 ARCHITECTURE (32-BIT AND 64-BIT)
6510P: Thomas Gleixner
6511M: tglx@linutronix.de
6512P: Ingo Molnar
6513M: mingo@redhat.com
6514P: H. Peter Anvin
6515M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006516M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006517T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006519F: Documentation/x86/
6520F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006521
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006522XEN HYPERVISOR INTERFACE
6523P: Jeremy Fitzhardinge
6524M: jeremy@xensource.com
6525P: Chris Wright
6526M: chrisw@sous-sol.org
6527L: virtualization@lists.osdl.org
6528L: xen-devel@lists.xensource.com
6529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006530F: arch/x86/xen/
6531F: drivers/*/xen-*front.c
6532F: drivers/xen/
6533F: arch/x86/include/asm/xen/
6534F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006535
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536XFS FILESYSTEM
6537P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006538P: Felix Blyakher
6539M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006541L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006543T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006545F: Documentation/filesystems/xfs.txt
6546F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006548XILINX SYSTEMACE DRIVER
6549P: Grant Likely
6550M: grant.likely@secretlab.ca
6551W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006553F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006554
Peter Korsgaard238b8722006-12-06 20:35:17 -08006555XILINX UARTLITE SERIAL DRIVER
6556P: Peter Korsgaard
6557M: jacmet@sunsite.dk
6558L: linux-serial@vger.kernel.org
6559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006560F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006561
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562YAM DRIVER FOR AX.25
6563P: Jean-Paul Roubelat
6564M: jpr@f6fbb.org
6565L: linux-hams@vger.kernel.org
6566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006567F: drivers/net/hamradio/yam*
6568F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006569
Henkaf64a5e2005-10-12 15:02:56 +02006570YEALINK PHONE DRIVER
6571P: Henk Vergonet
6572M: Henk.Vergonet@gmail.com
6573L: usbb2k-api-dev@nongnu.org
6574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006575F: Documentation/input/yealink.txt
6576F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006577
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578Z8530 DRIVER FOR AX.25
6579P: Joerg Reuter
6580M: jreuter@yaina.de
6581W: http://yaina.de/jreuter/
6582W: http://www.qsl.net/dl1bke/
6583L: linux-hams@vger.kernel.org
6584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006585F: Documentation/networking/z8530drv.txt
6586F: drivers/net/hamradio/*scc.c
6587F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006589ZD1211RW WIRELESS DRIVER
6590P: Daniel Drake
6591M: dsd@gentoo.org
6592P: Ulrich Kunitz
6593M: kune@deine-taler.de
6594W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006595L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006596L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006598F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006599
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006602L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006604T: Mercurial http://linuxtv.org/hg/v4l-dvb
6605S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006606F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006608ZS DECSTATION Z85C30 SERIAL DRIVER
6609P: Maciej W. Rozycki
6610M: macro@linux-mips.org
6611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006612F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006613
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614THE REST
6615P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006616M: torvalds@linux-foundation.org
6617L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006618T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006620F: *
6621F: */