blob: a67a99857e2a73f1ee97b85ef07bb28d24647da6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
76P: Person
77M: Mail patches to
78L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
107P: Philip Blundell
108M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700109L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700111F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Steffen Klasserta6d89912007-08-10 14:05:27 -07001133C59X NETWORK DRIVER
114P: Steffen Klassert
115M: klassert@mathematik.tu-chemnitz.de
116L: netdev@vger.kernel.org
117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: Documentation/networking/vortex.txt
119F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213CR990 NETWORK DRIVER
122P: David Dillow
123M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129P: Adam Radford
130M: linuxraid@amcc.com
131L: linux-scsi@vger.kernel.org
132W: http://www.amcc.com
133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700134F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001363W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137P: Adam Radford
138M: linuxraid@amcc.com
139L: linux-scsi@vger.kernel.org
140W: http://www.amcc.com
141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700142F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
14453C700 AND 53C700-66 SCSI DRIVER
145P: James E.J. Bottomley
146M: James.Bottomley@HansenPartnership.com
147L: linux-scsi@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1516PACK NETWORK DRIVER FOR AX.25
152P: Andreas Koensgen
153M: ajk@iehk.rwth-aachen.de
154L: linux-hams@vger.kernel.org
155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700156F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588169 10/100/1000 GIGABIT ETHERNET DRIVER
159P: Francois Romieu
160M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
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
291ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400292P: Zhang Rui
293M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500294L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300295W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700297F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700298
Len Brown359acec2007-02-10 01:59:24 -0500299ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400300P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400301M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500302L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300303W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700305F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500306
Carlos Corbachobff431e2008-02-05 02:17:04 +0000307ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200308P: Carlos Corbacho
309M: carlos@strangeworlds.co.uk
310L: linux-acpi@vger.kernel.org
311W: http://www.lesswatts.org/projects/acpi/
312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000314
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100315AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200316P: Kyle McMartin
317M: kyle@mcmartin.ca
318P: Thibaut Varene
319M: T-Bone@parisc-linux.org
320W: http://wiki.parisc-linux.org/AD1889
321L: linux-parisc@vger.kernel.org
322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325ADM1025 HARDWARE MONITOR DRIVER
326P: Jean Delvare
327M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200328L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: Documentation/hwmon/adm1025
331F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333ADM1029 HARDWARE MONITOR DRIVER
334P: Corentin Labbe
335M: corentin.labbe@geomatys.fr
336L: lm-sensors@lm-sensors.org
337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100339
Michael Wucc0b88c2007-08-31 01:15:25 -0400340ADM8211 WIRELESS DRIVER
341P: Michael Wu
342M: flamingice@sourmilk.net
343L: linux-wireless@vger.kernel.org
344W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700347F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349ADT746X FAN DRIVER
350P: Colin Leroy
351M: colin@colino.net
352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700353F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400355ADVANSYS SCSI DRIVER
356P: Matthew Wilcox
357M: matthew@wil.cx
358L: linux-scsi@vger.kernel.org
359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700360F: Documentation/scsi/advansys.txt
361F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363AEDSP16 DRIVER
364P: Riccardo Facchetti
365M: fizban@tin.it
366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700367F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369AFFS FILE SYSTEM
370P: Roman Zippel
371M: zippel@linux-m68k.org
372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700373F: Documentation/filesystems/affs.txt
374F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700376AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
377P: David Howells
378M: dhowells@redhat.com
379L: linux-afs@lists.infradead.org
380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700381F: fs/afs/
382F: include/net/af_rxrpc.h
383F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400386P: David Airlie
387M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700388T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700390F: drivers/char/agp/
391F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393AHA152X SCSI DRIVER
394P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700395M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396L: linux-scsi@vger.kernel.org
397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/scsi/aha152x*
399F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Hannes Reinecke64624d42007-10-19 10:32:29 +0200401AIC7XXX / AIC79XX SCSI DRIVER
402P: Hannes Reinecke
403M: hare@suse.de
404L: linux-scsi@vger.kernel.org
405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700406F: drivers/scsi/aic7xxx/
407F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200408
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700409AIO
410P: Benjamin LaHaise
411M: bcrl@kvack.org
412L: linux-aio@kvack.org
413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700414F: fs/aio.c
415F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417ALCATEL SPEEDTOUCH USB DRIVER
418P: Duncan Sands
419M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700420L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421W: http://www.linux-usb.org/SpeedTouch/
422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700423F: drivers/usb/atm/speedtch.c
424F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Pierre Ossman272f1332007-05-14 21:25:26 +0200426ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200427P: Manuel Lauss
428M: manuel.lauss@gmail.com
429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700430F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200431
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000432ALI1563 I2C DRIVER
433P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100434M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100435L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700437F: Documentation/i2c/busses/i2c-ali1563
438F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440ALPHA PORT
441P: Richard Henderson
442M: rth@twiddle.net
443S: Odd Fixes for 2.4; Maintained for 2.6.
444P: Ivan Kokshaysky
445M: ink@jurassic.park.msu.ru
446S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700447L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700448F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700450AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
451P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700452M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700453L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700456
Jordan Crousef90b8112006-01-06 00:12:14 -0800457AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100458P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700459L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800460W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700462F: arch/x86/kernel/geode_32.c
463F: drivers/char/hw_random/geode-rng.c
464F: drivers/crypto/geode*
465F: drivers/video/geode/
466F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800467
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200468AMD IOMMU (AMD-VI)
469P: Joerg Roedel
470M: joerg.roedel@amd.com
471L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700472T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700474F: arch/x86/kernel/amd_iommu*.c
475F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200476
Peter Orubae7f5b302008-07-28 18:44:11 +0200477AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700478P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700479M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700480L: amd64-microcode@amd64.org
481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700482F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200483
Stelian Pop284f42b2006-12-12 18:18:31 +0100484AMS (Apple Motion Sensor) DRIVER
485P: Stelian Pop
486M: stelian@popies.net
487P: Michael Hanselmann
488M: linux-kernel@hansmi.ch
489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700490F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100491
Tom Tuckerf94b5332006-09-22 15:22:48 -0700492AMSO1100 RNIC DRIVER
493P: Tom Tucker
494M: tom@opengridcomputing.com
495P: Steve Wise
496M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700497L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700500
Johannes Berg42269062006-07-25 16:15:50 +0200501AOA (Apple Onboard Audio) ALSA DRIVER
502P: Johannes Berg
503M: johannes@sipsolutions.net
504L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700505L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700507F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509APM DRIVER
510P: Stephen Rothwell
511M: sfr@canb.auug.org.au
512L: linux-laptop@vger.kernel.org
513W: http://www.canb.auug.org.au/~sfr/
514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: arch/x86/kernel/apm_32.c
516F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700518APPLE BCM5974 MULTITOUCH DRIVER
519P: Henrik Rydberg
520M: rydberg@euromail.se
521L: linux-input@vger.kernel.org
522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700524
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700525APPLE SMC DRIVER
526P: Nicolas Boichat
527M: nicolas@boichat.ch
528L: mactel-linux-devel@lists.sourceforge.net
529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532APPLETALK NETWORK LAYER
533P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300534M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/net/appletalk/
537F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400539APPLETOUCH TOUCHPAD DRIVER
540P: Johannes Berg
541M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400542L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: Documentation/input/appletouch.txt
545F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400546
Jaya Kumar1154ea72005-06-21 17:17:04 -0700547ARC FRAMEBUFFER DRIVER
548P: Jaya Kumar
549M: jayalk@intworks.biz
550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/video/arcfb.c
552F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554ARM MFM AND FLOPPY DRIVERS
555P: Ian Molton
556M: spyro@f2s.com
557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700558F: arch/arm/lib/floppydma.S
559F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Russell Kingd4275352009-04-16 14:05:27 +0100561ARM PORT
562P: Russell King
563M: linux@arm.linux.org.uk
564L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
565W: http://www.arm.linux.org.uk/
566S: Maintained
567F: arch/arm/
568
Russell King2761f5c2007-05-24 06:56:08 +0200569ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200570S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700571F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200572
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800573ARM/ADI ROADRUNNER MACHINE SUPPORT
574P: Lennert Buytenhek
575M: kernel@wantstofly.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: arch/arm/mach-ixp23xx/
579F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800580
581ARM/ADS SPHERE MACHINE SUPPORT
582P: Lennert Buytenhek
583M: kernel@wantstofly.org
584L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
585S: Maintained
586
Sergey Lapin9c784f92008-08-03 02:29:48 +0100587ARM/AFEB9260 MACHINE SUPPORT
588P: Sergey Lapin
589M: slapin@ossfans.org
590L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
591S: Maintained
592
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800593ARM/AJECO 1ARM MACHINE SUPPORT
594P: Lennert Buytenhek
595M: kernel@wantstofly.org
596L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
597S: Maintained
598
Andrew Victord4a89c72006-12-04 13:56:21 +0100599ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200600P: Andrew Victor
601M: linux@maxim.org.za
602L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
603W: http://maxim.org.za/at91_26.html
604S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100605
Leo Chen57a473f2009-08-12 22:08:48 +0100606ARM/BCMRING ARM ARCHITECTURE
607P: Leo Chen <leochen@broadcom.com>
608P: Scott Branden <sbranden@broadcom.com>
609L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
610S: Maintained
611F: arch/arm/mach-bcmring
612
613ARM/BCMRING MTD NAND DRIVER
614P: Leo Chen <leochen@broadcom.com>
615P: Scott Branden <sbranden@broadcom.com>
616L: linux-mtd@lists.infradead.org
617S: Maintained
618F: drivers/mtd/nand/bcm_umi_nand.c
619F: drivers/mtd/nand/bcm_umi_bch.c
620F: drivers/mtd/nand/bcm_umi_hamming.c
621F: drivers/mtd/nand/nand_bcm_umi.h
622
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800623ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
624P: Lennert Buytenhek
625M: kernel@wantstofly.org
626L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
627S: Maintained
628
629ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
630P: Lennert Buytenhek
631M: kernel@wantstofly.org
632L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
633S: Maintained
634
Russell Kingd4275352009-04-16 14:05:27 +0100635ARM/CLKDEV SUPPORT
636P: Russell King
637M: linux@arm.linux.org.uk
638L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
639F: arch/arm/common/clkdev.c
640F: arch/arm/include/asm/clkdev.h
641
Mike Rapoportd48134e2008-08-20 09:03:26 +0100642ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100643P: Mike Rapoport
644M: mike@compulab.co.il
645L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
646S: Maintained
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648ARM/CORGI MACHINE SUPPORT
649P: Richard Purdie
650M: rpurdie@rpsys.net
651S: Maintained
652
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200653ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
654P: Paulius Zaleckas
655M: paulius.zaleckas@teltonika.lt
656L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700657T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200658S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300659F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200660
Russell Kingd4275352009-04-16 14:05:27 +0100661ARM/EBSA110 MACHINE SUPPORT
662P: Russell King
663M: linux@arm.linux.org.uk
664L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
665W: http://www.arm.linux.org.uk/
666S: Maintained
667F: arch/arm/mach-ebsa110/
668F: drivers/net/arm/am79c961a.*
669
Russell Kinga9da4f72008-07-12 21:42:04 +0100670ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
671P: Daniel Ribeiro
672M: drwyrm@gmail.com
673P: Stefan Schmidt
674M: stefan@openezx.org
675P: Harald Welte
676M: laforge@openezx.org
677L: openezx-devel@lists.openezx.org (subscribers-only)
678W: http://www.openezx.org/
679S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200680T: topgit git://git.openezx.org/openezx.git
681F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100682
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200683ARM/FARADAY FA526 PORT
684P: Paulius Zaleckas
685M: paulius.zaleckas@teltonika.lt
686L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
687S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300688F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200689
Russell Kingd4275352009-04-16 14:05:27 +0100690ARM/FOOTBRIDGE ARCHITECTURE
691P: Russell King
692M: linux@arm.linux.org.uk
693L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
694W: http://www.arm.linux.org.uk/
695S: Maintained
696F: arch/arm/include/asm/hardware/dec21285.h
697F: arch/arm/mach-footbridge/
698
Sascha Hauer86183a52008-07-24 23:50:35 +0200699ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
700P: Sascha Hauer
701M: kernel@pengutronix.de
702L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
703S: Maintained
704
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800705ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
706P: Lennert Buytenhek
707M: kernel@wantstofly.org
708L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
709S: Maintained
710
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100711ARM/GUMSTIX MACHINE SUPPORT
712P: Steve Sakoman
713M: sakoman@gmail.com
714L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
715S: Maintained
716
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200717ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
718P: Philipp Zabel
719M: philipp.zabel@gmail.com
720S: Maintained
721F: arch/arm/mach-pxa/hx4700.c
722F: arch/arm/mach-pxa/include/mach/hx4700.h
723
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100724ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200725P: Kristoffer Ericson
726M: kristoffer.ericson@gmail.com
727W: www.jlime.com
728S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100729
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800730ARM/INTEL IOP32X ARM ARCHITECTURE
731P: Lennert Buytenhek
732M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100733P: Dan Williams
734M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800735L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100736S: Supported
737
738ARM/INTEL IOP33X ARM ARCHITECTURE
739P: Dan Williams
740M: dan.j.williams@intel.com
741L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
742S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800743
744ARM/INTEL IOP13XX ARM ARCHITECTURE
745P: Lennert Buytenhek
746M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100747P: Dan Williams
748M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800749L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100750S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800751
752ARM/INTEL IQ81342EX MACHINE SUPPORT
753P: Lennert Buytenhek
754M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100755P: Dan Williams
756M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800757L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100758S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800759
760ARM/INTEL IXP2000 ARM ARCHITECTURE
761P: Lennert Buytenhek
762M: kernel@wantstofly.org
763L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
764S: Maintained
765
766ARM/INTEL IXDP2850 MACHINE SUPPORT
767P: Lennert Buytenhek
768M: kernel@wantstofly.org
769L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
770S: Maintained
771
772ARM/INTEL IXP23XX ARM ARCHITECTURE
773P: Lennert Buytenhek
774M: kernel@wantstofly.org
775L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
776S: Maintained
777
778ARM/INTEL XSC3 (MANZANO) ARM CORE
779P: Lennert Buytenhek
780M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100781P: Dan Williams
782M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800783L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100784S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800785
786ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
787P: Lennert Buytenhek
788M: kernel@wantstofly.org
789L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
790S: Maintained
791
792ARM/LOGICPD PXA270 MACHINE SUPPORT
793P: Lennert Buytenhek
794M: kernel@wantstofly.org
795L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
796S: Maintained
797
Philipp Zabel3b8861712008-07-09 21:27:15 +0100798ARM/MAGICIAN MACHINE SUPPORT
799P: Philipp Zabel
800M: philipp.zabel@gmail.com
801S: Maintained
802
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200803ARM/MIOA701 MACHINE SUPPORT
804P: Robert Jarzmik
805M: robert.jarzmik@free.fr
806L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
807F: arch/arm/mach-pxa/mioa701.c
808S: Maintained
809
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100810ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
811P: Michael Petchkovsky
812M: mkpetch@internode.on.net
813S: Maintained
814
Andy Green9d762952009-05-19 06:41:42 -0300815ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
816P: Nelson Castillo
817M: arhuaco@freaks-unidos.net
818L: openmoko-kernel@lists.openmoko.org (subscribers-only)
819W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
820S: Supported
821
Dirk Opfer8459c152005-11-06 14:27:52 +0000822ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800823P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100824M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000825P: Dirk Opfer
826M: dirk@opfer-online.de
827S: Maintained
828
Marek Vasut54088bf2009-03-24 00:29:29 +0100829ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100830P: Marek Vasut
831M: marek.vasut@gmail.com
832W: http://hackndev.com
833S: Maintained
834
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200835ARM/PALM TREO 680 SUPPORT
836P: Tomas Cech
837M: sleep_walker@suse.cz
838W: http://hackndev.com
839S: Maintained
840
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100841ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700842P: Sergey Lapin
843M: slapin@ossfans.org
844W: http://hackndev.com
845S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847ARM/PLEB SUPPORT
848P: Peter Chubb
849M: pleb@gelato.unsw.edu.au
850W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
851S: Maintained
852
853ARM/PT DIGITAL BOARD PORT
854P: Stefan Eletzhofer
855M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700856L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857W: http://www.arm.linux.org.uk/
858S: Maintained
859
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800860ARM/RADISYS ENP2611 MACHINE SUPPORT
861P: Lennert Buytenhek
862M: kernel@wantstofly.org
863L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
864S: Maintained
865
Russell Kingd4275352009-04-16 14:05:27 +0100866ARM/RISCPC ARCHITECTURE
867P: Russell King
868M: linux@arm.linux.org.uk
869L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
870W: http://www.arm.linux.org.uk/
871S: Maintained
872F: arch/arm/common/time-acorn.c
873F: arch/arm/include/asm/hardware/entry-macro-iomd.S
874F: arch/arm/include/asm/hardware/ioc.h
875F: arch/arm/include/asm/hardware/iomd.h
876F: arch/arm/include/asm/hardware/memc.h
877F: arch/arm/mach-rpc/
878F: drivers/net/arm/ether*
879F: drivers/scsi/arm/
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881ARM/SHARK MACHINE SUPPORT
882P: Alexander Schulz
883M: alex@shark-linux.de
884W: http://www.shark-linux.de/shark.html
885S: Maintained
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
893
894ARM/S3C2440 ARM ARCHITECTURE
895P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800896M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700897L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898W: http://www.fluff.org/ben/linux/
899S: Maintained
900
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800901ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
902P: Lennert Buytenhek
903M: kernel@wantstofly.org
904L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
905S: Maintained
906
907ARM/THECUS N2100 MACHINE SUPPORT
908P: Lennert Buytenhek
909M: kernel@wantstofly.org
910L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
911S: Maintained
912
wanzongshun98ad6e32009-02-13 06:04:32 +0100913ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700914P: Wan ZongShun
915M: mcuos.com@gmail.com
916L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
917W: http://www.mcuos.com
918S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100919
Russell Kingd4275352009-04-16 14:05:27 +0100920ARM/VFP SUPPORT
921P: Russell King
922M: linux@arm.linux.org.uk
923L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
924W: http://www.arm.linux.org.uk/
925S: Maintained
926F: arch/arm/vfp/
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928ARPD SUPPORT
929P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700930L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700932F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500935P: Corentin Chary
936M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937P: Karol Kozimor
938M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000940W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700942F: arch/x86/kernel/acpi/boot.c
943F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400945ASUS ASB100 HARDWARE MONITOR DRIVER
946P: Mark M. Hoffman
947M: mhoffman@lightlink.com
948L: lm-sensors@lm-sensors.org
949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700950F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400951
Corentin Chary85091b72007-01-26 14:04:30 +0100952ASUS LAPTOP EXTRAS DRIVER
953P: Corentin Chary
954M: corentincj@iksaif.net
955L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000956W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700958F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100959
Andrew Morton953a6472008-11-06 12:53:28 -0800960ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700961P: Dan Williams
962M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100963P: Maciej Sosnowski
964M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700965W: http://sourceforge.net/projects/xscaleiop
966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700967F: Documentation/crypto/async-tx-api.txt
968F: crypto/async_tx/
969F: drivers/dma/
970F: include/linux/dmaengine.h
971F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700972
Randy Dunlape7839f22008-10-12 16:11:45 -0700973ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974P: Ed L. Cashin
975M: ecashin@coraid.com
976W: http://www.coraid.com/support/linux
977S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700978F: Documentation/aoe/
979F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200981ATHEROS ATH5K WIRELESS DRIVER
982P: Jiri Slaby
983M: jirislaby@gmail.com
984P: Nick Kossifidis
985M: mickflemm@gmail.com
986P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700987M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400988P: Bob Copeland
989M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200990L: linux-wireless@vger.kernel.org
991L: ath5k-devel@lists.ath5k.org
992S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700993F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200994
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700995ATHEROS ATH9K WIRELESS DRIVER
996P: Luis R. Rodriguez
997M: lrodriguez@atheros.com
998P: Jouni Malinen
999M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -04001000P: Sujith Manoharan
1001M: Sujith.Manoharan@atheros.com
1002P: Vasanthakumar Thiagarajan
1003M: vasanth@atheros.com
1004P: Senthil Balasubramanian
1005M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001006L: linux-wireless@vger.kernel.org
1007L: ath9k-devel@lists.ath9k.org
1008S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001009F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001010
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001011ATHEROS AR9170 WIRELESS DRIVER
1012P: Christian Lamparter
1013M: chunkeey@web.de
1014L: linux-wireless@vger.kernel.org
1015W: http://wireless.kernel.org/en/users/Drivers/ar9170
1016S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001017F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001018
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001019ATI_REMOTE2 DRIVER
1020P: Ville Syrjala
1021M: syrjala@sci.fi
1022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001023F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001024
Chris Snook7ae115b2008-09-09 03:26:57 -04001025ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001026P: Jay Cliburn
1027M: jcliburn@gmail.com
1028P: Chris Snook
1029M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -04001030P: Jie Yang
1031M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001032L: atl1-devel@lists.sourceforge.net
1033W: http://sourceforge.net/projects/atl1
1034W: http://atl1.sourceforge.net
1035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001036F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038ATM
1039P: Chas Williams
1040M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -07001041L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001042L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043W: http://linux-atm.sourceforge.net
1044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001045F: drivers/atm/
1046F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Pierre Ossman272f1332007-05-14 21:25:26 +02001048ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001049P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001050M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001051L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1052W: http://www.atmel.com/products/AT91/
1053W: http://www.at91.com/
1054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001055F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001056
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001057ATMEL AT91 / AT32 MCI DRIVER
1058P: Nicolas Ferre
1059M: nicolas.ferre@atmel.com
1060S: Maintained
1061F: drivers/mmc/host/atmel-mci.c
1062F: drivers/mmc/host/atmel-mci-regs.h
1063
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001064ATMEL AT91 / AT32 SERIAL DRIVER
1065P: Haavard Skinnemoen
1066M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001068F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001069
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001070ATMEL LCDFB DRIVER
1071P: Nicolas Ferre
1072M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001073L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001075F: drivers/video/atmel_lcdfb.c
1076F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001077
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001078ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001079P: Haavard Skinnemoen
1080M: hskinnemoen@atmel.com
1081S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001082F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001083
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001084ATMEL SPI DRIVER
1085P: Haavard Skinnemoen
1086M: hskinnemoen@atmel.com
1087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001088F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001089
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001090ATMEL USBA UDC DRIVER
1091P: Haavard Skinnemoen
1092M: hskinnemoen@atmel.com
1093L: kernel@avr32linux.org
1094W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001096F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098ATMEL WIRELESS DRIVER
1099P: Simon Kelley
1100M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001101L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102W: http://www.thekelleys.org.uk/atmel
1103W: http://atmelwlandriver.sourceforge.net/
1104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001105F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Chris Wrighta92b7b82005-07-07 18:12:23 -07001107AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001108P: Al Viro
1109M: viro@zeniv.linux.org.uk
1110P: Eric Paris
1111M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001112L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001113W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001114T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001116F: include/linux/audit.h
1117F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001118
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001119AUXILIARY DISPLAY DRIVERS
1120P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001121M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001122W: http://miguelojeda.es/auxdisplay.htm
1123W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: drivers/auxdisplay/
1126F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001127
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001128AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001129P: Haavard Skinnemoen
1130M: hskinnemoen@atmel.com
1131W: http://www.atmel.com/products/AVR32/
1132W: http://avr32linux.org/
1133W: http://avrfreaks.net/
1134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001135F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001136
1137AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001138P: Haavard Skinnemoen
1139M: hskinnemoen@atmel.com
1140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001141F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143AX.25 NETWORK LAYER
1144P: Ralf Baechle
1145M: ralf@linux-mips.org
1146L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001147W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001149F: include/linux/ax25.h
1150F: include/net/ax25.h
1151F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001153B43 WIRELESS DRIVER
1154P: Michael Buesch
1155M: mb@bu3sch.de
1156P: Stefano Brivio
1157M: stefano.brivio@polimi.it
1158L: linux-wireless@vger.kernel.org
1159W: http://linuxwireless.org/en/users/Drivers/b43
1160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001161F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001162
1163B43LEGACY WIRELESS DRIVER
1164P: Larry Finger
1165M: Larry.Finger@lwfinger.net
1166P: Stefano Brivio
1167M: stefano.brivio@polimi.it
1168L: linux-wireless@vger.kernel.org
1169W: http://linuxwireless.org/en/users/Drivers/b43
1170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001171F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001172
Richard Purdie300abeb2007-02-07 22:21:07 +00001173BACKLIGHT CLASS/SUBSYSTEM
1174P: Richard Purdie
1175M: rpurdie@rpsys.net
1176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001177F: drivers/video/backlight/
1178F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001179
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001180BAYCOM/HDLCDRV DRIVERS FOR AX.25
1181P: Thomas Sailer
1182M: t.sailer@alumni.ethz.ch
1183L: linux-hams@vger.kernel.org
1184W: http://www.baycom.org/~tom/ham/ham.html
1185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001186F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001187
1188BEFS FILE SYSTEM
1189P: Sergey S. Kostyliov
1190M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001192F: Documentation/filesystems/befs.txt
1193F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001194
1195BFS FILE SYSTEM
1196P: Tigran A. Aivazian
1197M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001199F: Documentation/filesystems/bfs.txt
1200F: fs/bfs/
1201F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001202
Bryan Wu1394f032007-05-06 14:50:22 -07001203BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001204P: Mike Frysinger
1205M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001206L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001207W: http://blackfin.uclinux.org
1208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001209F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001210
Bryan Wue190d6b2007-07-17 14:43:44 +08001211BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001212P: Michael Hennerich
1213M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001214L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001215W: http://blackfin.uclinux.org
1216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001217F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001218
Mike Frysinger566da5b2007-06-11 15:31:30 +08001219BLACKFIN RTC DRIVER
1220P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001221M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001222L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001223W: http://blackfin.uclinux.org
1224S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001225F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001226
Bryan Wu1394f032007-05-06 14:50:22 -07001227BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001228P: Sonic Zhang
1229M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001230L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001231W: http://blackfin.uclinux.org
1232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001233F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001234
Bryan Wu1e6d3202007-07-15 02:50:02 +08001235BLACKFIN WATCHDOG DRIVER
1236P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001237M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001238L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001239W: http://blackfin.uclinux.org
1240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001241F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001242
Bryan Wud24ecfc2007-05-01 23:26:32 +02001243BLACKFIN I2C TWI DRIVER
1244P: Sonic Zhang
1245M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001246L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001247W: http://blackfin.uclinux.org/
1248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001249F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251BLOCK LAYER
1252P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001253M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001254T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001256F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Joern Engel2b54aae2008-02-06 01:38:02 -08001258BLOCK2MTD DRIVER
1259P: Joern Engel
1260M: joern@lazybastard.org
1261L: linux-mtd@lists.infradead.org
1262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001263F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001264
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001265BLUETOOTH DRIVERS
1266P: Marcel Holtmann
1267M: marcel@holtmann.org
1268L: linux-bluetooth@vger.kernel.org
1269W: http://www.bluez.org/
1270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001271F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273BLUETOOTH SUBSYSTEM
1274P: Marcel Holtmann
1275M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001276L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001277W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001278T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001280F: net/bluetooth/
1281F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001284P: Jay Vosburgh
1285M: fubar@us.ibm.com
1286L: bonding-devel@lists.sourceforge.net
1287W: http://sourceforge.net/projects/bonding/
1288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001289F: drivers/net/bonding/
1290F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Gary Zambrano39105892006-06-22 17:26:20 -07001292BROADCOM B44 10/100 ETHERNET DRIVER
1293P: Gary Zambrano
1294M: zambrano@broadcom.com
1295L: netdev@vger.kernel.org
1296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001297F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001298
Michael Chan948c51e2006-06-04 02:51:39 -07001299BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1300P: Michael Chan
1301M: mchan@broadcom.com
1302L: netdev@vger.kernel.org
1303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001304F: drivers/net/bnx2.*
1305F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001306
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001307BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001308P: Eilon Greenstein
1309M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001310L: netdev@vger.kernel.org
1311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001312F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001313
Michael Chan948c51e2006-06-04 02:51:39 -07001314BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001315P: Matt Carlson
1316M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001317P: Michael Chan
1318M: mchan@broadcom.com
1319L: netdev@vger.kernel.org
1320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001321F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001322
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001323BSG (block layer generic sg v4 driver)
1324P: FUJITA Tomonori
1325M: fujita.tomonori@lab.ntt.co.jp
1326L: linux-scsi@vger.kernel.org
1327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001328F: block/bsg.c
1329F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001330
Michael Bueschff1d5c22008-07-25 01:46:10 -07001331BT8XXGPIO DRIVER
1332P: Michael Buesch
1333M: mb@bu3sch.de
1334W: http://bu3sch.de/btgpio.php
1335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001336F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001337
Joe Percheseb1eb042009-01-21 10:49:16 -05001338BTRFS FILE SYSTEM
1339P: Chris Mason
1340M: chris.mason@oracle.com
1341L: linux-btrfs@vger.kernel.org
1342W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001343T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001345F: Documentation/filesystems/btrfs.txt
1346F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001349P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001350M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001351L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001352W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001353T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001355F: Documentation/video4linux/bttv/
1356F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
David Howellsa5432f52009-04-20 15:46:45 +01001358CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1359P: David Howells
1360M: dhowells@redhat.com
1361L: linux-cachefs@redhat.com
1362S: Supported
1363F: Documentation/filesystems/caching/cachefiles.txt
1364F: fs/cachefiles/
1365
Jonathan Corbet77d51402007-03-22 19:44:17 -03001366CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001367P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001368M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001369L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001370T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001372F: Documentation/video4linux/cafe_ccic
1373F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001374
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001375CALGARY x86-64 IOMMU
1376P: Muli Ben-Yehuda
1377M: muli@il.ibm.com
1378P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001379M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001380L: discuss@x86-64.org
1381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001382F: arch/x86/kernel/pci-calgary_64.c
1383F: arch/x86/kernel/tce_64.c
1384F: arch/x86/include/asm/calgary.h
1385F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001386
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001387CAN NETWORK LAYER
1388P: Urs Thuermann
1389M: urs.thuermann@volkswagen.de
1390P: Oliver Hartkopp
1391M: oliver.hartkopp@volkswagen.de
1392L: socketcan-core@lists.berlios.de (subscribers-only)
1393W: http://developer.berlios.de/projects/socketcan/
1394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/net/can/
1396F: include/linux/can/
1397F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001398
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001399CAN NETWORK DRIVERS
1400P: Wolfgang Grandegger
1401M: wg@grandegger.com
1402L: socketcan-core@lists.berlios.de (subscribers-only)
1403W: http://developer.berlios.de/projects/socketcan/
1404S: Maintained
1405
Arnd Bergmannb8154542008-05-16 11:10:59 +02001406CELL BROADBAND ENGINE ARCHITECTURE
1407P: Arnd Bergmann
1408M: arnd@arndb.de
1409L: linuxppc-dev@ozlabs.org
1410L: cbe-oss-dev@ozlabs.org
1411W: http://www.ibm.com/developerworks/power/cell/
1412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001413F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001414F: arch/powerpc/include/asm/spu*.h
1415F: arch/powerpc/oprofile/*cell*
1416F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001417
David Vrabel18332a82008-09-17 16:34:44 +01001418CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1419P: David Vrabel
1420M: david.vrabel@csr.com
1421L: linux-usb@vger.kernel.org
1422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001423F: Documentation/usb/WUSB-Design-overview.txt
1424F: Documentation/usb/wusb-cbaf
1425F: drivers/usb/wusbcore/
1426F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001427
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001428CFAG12864B LCD DRIVER
1429P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001430M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001431W: http://miguelojeda.es/auxdisplay.htm
1432W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001434F: drivers/auxdisplay/cfag12864b.c
1435F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001436
1437CFAG12864BFB LCD FRAMEBUFFER DRIVER
1438P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001439M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001440W: http://miguelojeda.es/auxdisplay.htm
1441W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001443F: drivers/auxdisplay/cfag12864bfb.c
1444F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001445
Johannes Berg704232c2007-04-23 12:20:05 -07001446CFG80211 and NL80211
1447P: Johannes Berg
1448M: johannes@sipsolutions.net
1449L: linux-wireless@vger.kernel.org
1450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001451F: include/linux/nl80211.h
1452F: include/net/cfg80211.h
1453F: net/wireless/*
1454X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001455
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001456CHECKPATCH
1457P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001458M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001460F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001461
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001462CISCO 10G ETHERNET DRIVER
1463P: Scott Feldman
1464M: scofeldm@cisco.com
1465P: Joe Eykholt
1466M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001468F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001469
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001470CIRRUS LOGIC EP93XX ETHERNET DRIVER
1471P: Lennert Buytenhek
1472M: kernel@wantstofly.org
1473L: netdev@vger.kernel.org
1474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001476
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001477CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1478P: Lennert Buytenhek
1479M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001480L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001482F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001483
Timur Tabid9e9d822008-04-24 08:45:26 +10001484CIRRUS LOGIC CS4270 SOUND DRIVER
1485P: Timur Tabi
1486M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001487L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001489F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1492P: Cirrus Logic Corporation (kernel 2.2 driver)
1493M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1494P: Nils Faerber (port to kernel 2.4)
1495M: Nils Faerber <nils@kernelconcepts.de>
1496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001497F: Documentation/input/cs461x.txt
1498F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Russell Kingd4275352009-04-16 14:05:27 +01001500CLK API
1501P: Russell King
1502M: linux@arm.linux.org.uk
1503F: include/linux/clk.h
1504
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001505CISCO FCOE HBA DRIVER
1506P: Abhijeet Joglekar
1507M: abjoglek@cisco.com
1508P: Joe Eykholt
1509M: jeykholt@cisco.com
1510L: linux-scsi@vger.kernel.org
1511S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001512F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514CODA FILE SYSTEM
1515P: Jan Harkes
1516M: jaharkes@cs.cmu.edu
1517M: coda@cs.cmu.edu
1518L: codalist@coda.cs.cmu.edu
1519W: http://www.coda.cs.cmu.edu/
1520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001521F: Documentation/filesystems/coda.txt
1522F: fs/coda/
1523F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001525COMMON INTERNET FILE SYSTEM (CIFS)
1526P: Steve French
1527M: sfrench@samba.org
1528L: linux-cifs-client@lists.samba.org
1529L: samba-technical@lists.samba.org
1530W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001531T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001533F: Documentation/filesystems/cifs.txt
1534F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536COMPACTPCI HOTPLUG CORE
1537P: Scott Murray
1538M: scottm@somanetworks.com
1539M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001540L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001542F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1545P: Scott Murray
1546M: scottm@somanetworks.com
1547M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001548L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001550F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552COMPACTPCI HOTPLUG GENERIC DRIVER
1553P: Scott Murray
1554M: scottm@somanetworks.com
1555M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001556L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001558F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001560COMPAL LAPTOP SUPPORT
1561P: Cezary Jackiewicz
1562M: cezary.jackiewicz@gmail.com
1563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001564F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566COMPUTONE INTELLIPORT MULTIPORT CARD
1567P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001568M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001571F: Documentation/serial/computone.txt
1572F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Simon Arlott949be0f2007-03-06 02:47:46 -08001574CONEXANT ACCESSRUNNER USB DRIVER
1575P: Simon Arlott
1576M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001577L: accessrunner-general@lists.sourceforge.net
1578W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001580F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001581
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582CONFIGFS
1583P: Joel Becker
1584M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001585S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001586F: fs/configfs/
1587F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001588
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001589CONTROL GROUPS (CGROUPS)
1590P: Paul Menage
1591M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001592P: Li Zefan
1593M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001594L: containers@lists.linux-foundation.org
1595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001596F: include/linux/cgroup*
1597F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001598F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001599
Rudolf Marekbebe4672007-05-08 17:22:02 +02001600CORETEMP HARDWARE MONITORING DRIVER
1601P: Rudolf Marek
1602M: r.marek@assembler.cz
1603L: lm-sensors@lm-sensors.org
1604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001605F: Documentation/hwmon/coretemp
1606F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608COSA/SRP SYNC SERIAL DRIVER
1609P: Jan "Yenya" Kasprzak
1610M: kas@fi.muni.cz
1611W: http://www.fi.muni.cz/~kas/cosa/
1612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001613F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Florian Fainelli4371ee32009-06-01 02:43:17 -07001615CPMAC ETHERNET DRIVER
1616P: Florian Fainelli
1617M: florian@openwrt.org
1618L: netdev@vger.kernel.org
1619S: Maintained
1620F: drivers/net/cpmac.c
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622CPU FREQUENCY DRIVERS
1623P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001624M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001625L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001627T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001629F: arch/x86/kernel/cpu/cpufreq/
1630F: drivers/cpufreq/
1631F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633CPUID/MSR DRIVER
1634P: H. Peter Anvin
1635M: hpa@zytor.com
1636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001637F: arch/x86/kernel/cpuid.c
1638F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Paul Jacksoned90fb42005-09-27 21:45:37 -07001640CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001641P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001642M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001643W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001644W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001646F: Documentation/cgroups/cpusets.txt
1647F: include/linux/cpuset.h
1648F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001651W: http://sourceforge.net/projects/cramfs/
1652S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001653F: Documentation/filesystems/cramfs.txt
1654F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656CRIS PORT
1657P: Mikael Starvik
1658M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001659P: Jesper Nilsson
1660M: jesper.nilsson@axis.com
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001661L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662W: http://developer.axis.com
1663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
1666CRYPTO API
1667P: Herbert Xu
1668M: herbert@gondor.apana.org.au
1669P: David S. Miller
1670M: davem@davemloft.net
1671L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001672T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001674F: Documentation/crypto/
1675F: arch/*/crypto/
1676F: crypto/
1677F: drivers/crypto/
1678F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Neil Horman5b07bd52009-02-05 16:03:04 +11001680CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1681P: Neil Horman
1682M: nhorman@tuxdriver.com
1683L: linux-crypto@vger.kernel.org
1684S: Maintained
1685
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001686CS5535 Audio ALSA driver
1687P: Jaya Kumar
1688M: jayakumar.alsa@gmail.com
1689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001690F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001691
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001692CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001693P: Hans Verkuil
1694M: hverkuil@xs4all.nl
1695P: Andy Walls
1696M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001697L: ivtv-devel@ivtvdriver.org
1698L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001699L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001700T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001701W: http://linuxtv.org
1702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001703F: Documentation/video4linux/cx18.txt
1704F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001705
Steve Wisee5ec3782008-05-20 14:06:33 -07001706CXGB3 ETHERNET DRIVER (CXGB3)
1707P: Divy Le Ray
1708M: divy@chelsio.com
1709L: netdev@vger.kernel.org
1710W: http://www.chelsio.com
1711S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001712F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001713
1714CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1715P: Steve Wise
1716M: swise@chelsio.com
1717L: general@lists.openfabrics.org
1718W: http://www.openfabrics.org
1719S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001720F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722CYBERPRO FB DRIVER
1723P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001724M: linux@arm.linux.org.uk
1725L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726W: http://www.arm.linux.org.uk/
1727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001728F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730CYCLADES 2X SYNC CARD DRIVER
1731P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001732M: acme@ghostprotocols.net
1733W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001735F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001739S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001740F: drivers/char/cyclades.c
1741F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001745S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001746F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748DAMA SLAVE for AX.25
1749P: Joerg Reuter
1750M: jreuter@yaina.de
1751W: http://yaina.de/jreuter/
1752W: http://www.qsl.net/dl1bke/
1753L: linux-hams@vger.kernel.org
1754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001755F: net/ax25/af_ax25.c
1756F: net/ax25/ax25_dev.c
1757F: net/ax25/ax25_ds_*
1758F: net/ax25/ax25_in.c
1759F: net/ax25/ax25_out.c
1760F: net/ax25/ax25_timer.c
1761F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001763DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1764P: Tobias Ringstrom
1765M: tori@unhappy.mine.nu
1766L: netdev@vger.kernel.org
1767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001768F: Documentation/networking/dmfe.txt
1769F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001770
1771DC390/AM53C974 SCSI driver
1772P: Kurt Garloff
1773M: garloff@suse.de
1774W: http://www.garloff.de/kurt/linux/dc390/
1775P: Guennadi Liakhovetski
1776M: g.liakhovetski@gmx.de
1777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001778F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780DC395x SCSI driver
1781P: Oliver Neukum
1782M: oliver@neukum.name
1783P: Ali Akcaagac
1784M: aliakc@web.de
1785P: Jamie Lenehan
1786M: lenehan@twibble.org
1787W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001788L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789L: http://lists.twibble.org/mailman/listinfo/dc395x/
1790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001791F: Documentation/scsi/dc395x.txt
1792F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001794DCCP PROTOCOL
1795P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001796M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001797L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001798W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001800F: include/linux/dccp.h
1801F: include/linux/tfrc.h
1802F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001805P: Christine Caulfield
1806M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807W: http://linux-decnet.sourceforge.net
1808L: linux-decnet-user@lists.sourceforge.net
1809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001810F: Documentation/networking/decnet.txt
1811F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813DEFXX FDDI NETWORK DRIVER
1814P: Maciej W. Rozycki
1815M: macro@linux-mips.org
1816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001817F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001819DELL LAPTOP DRIVER
1820P: Matthew Garrett
1821M: mjg59@srcf.ucam.org
1822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001823F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825DELL LAPTOP SMM DRIVER
1826P: Massimo Dal Zotto
1827M: dz@debian.org
1828W: http://www.debian.org/~dz/i8k/
1829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001830F: drivers/char/i8k.c
1831F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Doug Warzecha90563ec2005-09-06 15:17:15 -07001833DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1834P: Doug Warzecha
1835M: Douglas_Warzecha@dell.com
1836S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001837F: Documentation/dcdbas.txt
1838F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001839
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001840DELL WMI EXTRAS DRIVER
1841P: Matthew Garrett
1842M: mjg59@srcf.ucam.org
1843S: Maintained
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845DEVICE NUMBER REGISTRY
1846P: Torben Mathiasen
1847M: device@lanana.org
1848W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849S: Maintained
1850
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001851DEVICE-MAPPER (LVM)
1852P: Alasdair Kergon
1853L: dm-devel@redhat.com
1854W: http://sources.redhat.com/dm
1855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001856F: Documentation/device-mapper/
1857F: drivers/md/dm*
1858F: include/linux/device-mapper.h
1859F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861DIGI INTL. EPCA DRIVER
1862P: Digi International, Inc
1863M: Eng.Linux@digi.com
1864L: Eng.Linux@digi.com
1865W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001866S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001867F: Documentation/serial/digiepca.txt
1868F: drivers/char/epca*
1869F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Randy Dunlape7839f22008-10-12 16:11:45 -07001871DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001872P: Eric Paris
1873M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001875F: Documentation/filesystems/dnotify.txt
1876F: fs/notify/dnotify/
1877F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879DISK GEOMETRY AND PARTITION HANDLING
1880P: Andries Brouwer
1881M: aeb@cwi.nl
1882W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1883W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1884W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1885S: Maintained
1886
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001887DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888P: Jan Kara
1889M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001891F: Documentation/filesystems/quota.txt
1892F: fs/quota/
1893F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Randy Dunlape7839f22008-10-12 16:11:45 -07001895DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001896P: Christine Caulfield
1897M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001898P: David Teigland
1899M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001900L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001901W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001902T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001904F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001905
Dan Williamsb3e5f262007-08-07 10:26:35 -07001906DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001907P: Maciej Sosnowski
1908M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001909P: Dan Williams
1910M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001912F: drivers/dma/
1913F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001914
Juerg Haefligerb8250372007-06-09 10:11:16 -04001915DME1737 HARDWARE MONITOR DRIVER
1916P: Juerg Haefliger
1917M: juergh@gmail.com
1918L: lm-sensors@lm-sensors.org
1919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001920F: Documentation/hwmon/dme1737
1921F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001922
Martin Waitzba483d52005-06-17 13:20:59 -07001923DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001924P: Randy Dunlap
1925M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001926S: Maintained
1927
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001928DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001929P: Shaohua Li
1930M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001931L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001932S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001934
Joe Perches7d2c86b2009-04-07 20:59:01 -07001935DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001936P: Randy Dunlap
1937M: rdunlap@xenotime.net
1938L: linux-doc@vger.kernel.org
1939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001940F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001941
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942DOUBLETALK DRIVER
1943P: James R. Van Zandt
1944M: jrv@vanzandt.mv.com
1945L: blinux-list@redhat.com
1946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: drivers/char/dtlk.c
1948F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001950DPT_I2O SCSI RAID DRIVER
1951P: Adaptec OEM Raid Solutions
1952M: aacraid@adaptec.com
1953L: linux-scsi@vger.kernel.org
1954W: http://www.adaptec.com/
1955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001956F: drivers/scsi/dpt*
1957F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959DRIVER CORE, KOBJECTS, AND SYSFS
1960P: Greg Kroah-Hartman
1961M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001962T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001964F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001965F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001966F: fs/sysfs/
1967F: include/linux/kobj*
1968F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970DRM DRIVERS
1971P: David Airlie
1972M: airlied@linux.ie
1973L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001974T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001979P: Francois Romieu
1980M: romieu@fr.zoreil.com
1981L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001985DZ DECSTATION DZ11 SERIAL DRIVER
1986P: Maciej W. Rozycki
1987M: macro@linux-mips.org
1988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001989F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991EATA-DMA SCSI DRIVER
1992P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001993M: mike@i-Connect.Net
1994L: linux-eata@i-connect.net
1995L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001997F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999EATA ISA/EISA/PCI SCSI DRIVER
2000P: Dario Ballabio
2001M: ballabio_dario@emc.com
2002L: linux-scsi@vger.kernel.org
2003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002004F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006EATA-PIO SCSI DRIVER
2007P: Michael Neuffer
2008M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07002009L: linux-eata@i-connect.net
2010L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014EBTABLES
2015P: Bart De Schuymer
2016M: bart.de.schuymer@pandora.be
2017L: ebtables-user@lists.sourceforge.net
2018L: ebtables-devel@lists.sourceforge.net
2019W: http://ebtables.sourceforge.net/
2020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002021F: include/linux/netfilter_bridge/ebt_*.h
2022F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Michael Halcrow237fead2006-10-04 02:16:22 -07002024ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002025P: Tyler Hicks
2026M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07002027P: Dustin Kirkland
2028M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08002029L: ecryptfs-devel@lists.launchpad.net
2030W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002032F: Documentation/filesystems/ecryptfs.txt
2033F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002034
Alan Coxda9bb1d2006-01-18 17:44:13 -08002035EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002036P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002037M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002038L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002039W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002040S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002041F: Documentation/edac.txt
2042F: drivers/edac/edac_*
2043F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002044
Borislav Petkovc476c232009-05-20 20:31:58 +02002045EDAC-AMD64
2046P: Doug Thompson
2047M: dougthompson@xmission.com
2048P: Borislav Petkov
2049M: borislav.petkov@amd.com
2050L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2051W: bluesmoke.sourceforge.net
2052S: Supported
2053F: drivers/edac/amd64_edac*
2054
Dave Peterson0e438e32006-03-26 01:38:55 -08002055EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002056P: Mark Gross
2057M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002058P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002059M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002060L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002061W: bluesmoke.sourceforge.net
2062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002063F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002064
2065EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002066P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002067M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002068L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002069W: bluesmoke.sourceforge.net
2070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002071F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002072
Douglas Thompson6bc78402007-07-19 01:50:12 -07002073EDAC-I82443BXGX
2074P: Tim Small
2075M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002076L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002077W: bluesmoke.sourceforge.net
2078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002079F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002080
2081EDAC-I3000
2082P: Jason Uhlenkott
2083M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002084L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002085W: bluesmoke.sourceforge.net
2086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002087F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002088
2089EDAC-I5000
2090P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002091M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002092L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002093W: bluesmoke.sourceforge.net
2094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002096
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002097EDAC-I5400
2098P: Mauro Carvalho Chehab
2099M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002100L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002101W: bluesmoke.sourceforge.net
2102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002104
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002105EDAC-I82975X
2106P: Ranganathan Desikan
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002107M: rdesikan@jetzbroadband.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002108P: Arvind R.
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002109M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002110L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002111W: bluesmoke.sourceforge.net
2112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002113F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002114
2115EDAC-PASEMI
2116P: Egor Martovetsky
2117M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002118L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002119W: bluesmoke.sourceforge.net
2120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002122
Dave Peterson0e438e32006-03-26 01:38:55 -08002123EDAC-R82600
2124P: Tim Small
2125M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002126L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002127W: bluesmoke.sourceforge.net
2128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002129F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002130
Eric Coopere59f8792008-03-13 12:55:46 +01002131EEEPC LAPTOP EXTRAS DRIVER
2132P: Corentin Chary
2133M: corentincj@iksaif.net
2134L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00002135W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002138
Josh Triplett0bee8d22006-07-30 03:03:58 -07002139EFS FILESYSTEM
2140W: http://aeschi.ch.eu.org/efs/
2141S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002142F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002143
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002144EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002145P: Hoang-Nam Nguyen
2146M: hnguyen@de.ibm.com
2147P: Christoph Raisch
2148M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002149L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002151F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002152
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002153EMBEDDED LINUX
2154P: Paul Gortmaker
2155M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002156P: Matt Mackall
2157M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002158P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002159M: dwmw2@infradead.org
2160L: linux-embedded@vger.kernel.org
2161S: Maintained
2162
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002163EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002164P: James Smart
2165M: james.smart@emulex.com
2166L: linux-scsi@vger.kernel.org
2167W: http://sourceforge.net/projects/lpfcxxxx
2168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002169F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002170
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002171ENE CB710 FLASH CARD READER DRIVER
2172P: Michał Mirosław
2173M: mirq-linux@rere.qmqm.pl
2174L: linux-kernel@vger.kernel.org
2175S: Maintained
2176F: drivers/misc/cb710/
2177F: drivers/mmc/host/cb710-mmc.*
2178F: include/linux/cb710.h
2179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180EPSON 1355 FRAMEBUFFER DRIVER
2181P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002182M: ch@murgatroid.com
2183P: Christopher Hoover
2184M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002188EPSON S1D13XXX FRAMEBUFFER DRIVER
2189P: Kristoffer Ericson
2190M: kristoffer.ericson@gmail.com
2191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/video/s1d13xxxfb.c
2193F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195ETHEREXPRESS-16 NETWORK DRIVER
2196P: Philip Blundell
2197M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002198L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202ETHERNET BRIDGE
2203P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002204M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002205L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002206W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002208F: include/linux/netfilter_bridge/
2209F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
2211ETHERTEAM 16I DRIVER
2212P: Mika Kuoppala
2213M: miku@iki.fi
2214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002215F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002218L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002220F: Documentation/filesystems/ext2.txt
2221F: fs/ext2/
2222F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002225P: Stephen Tweedie
2226M: sct@redhat.com
2227P: Andrew Morton
2228M: akpm@linux-foundation.org
2229P: Andreas Dilger
2230M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002231L: linux-ext4@vger.kernel.org
2232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002233F: Documentation/filesystems/ext3.txt
2234F: fs/ext3/
2235F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002236
2237EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002238P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002239M: tytso@mit.edu
2240P: Andreas Dilger
2241M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002242L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002243W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002245F: Documentation/filesystems/ext4.txt
2246F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Jean Delvaree53004e2006-01-09 23:26:14 +01002248F71805F HARDWARE MONITORING DRIVER
2249P: Jean Delvare
2250M: khali@linux-fr.org
2251L: lm-sensors@lm-sensors.org
2252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002253F: Documentation/hwmon/f71805f
2254F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256FARSYNC SYNCHRONOUS DRIVER
2257P: Kevin Curtis
2258M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259W: http://www.farsite.co.uk/
2260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002261F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Akinobu Mitac5408b82007-04-23 14:41:20 -07002263FAULT INJECTION SUPPORT
2264P: Akinobu Mita
2265M: akinobu.mita@gmail.com
2266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002267F: Documentation/fault-injection/
2268F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002269
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002270FILE LOCKING (flock() and fcntl()/lockf())
2271P: Matthew Wilcox
2272M: matthew@wil.cx
2273L: linux-fsdevel@vger.kernel.org
2274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: include/linux/fcntl.h
2276F: include/linux/fs.h
2277F: fs/fcntl.c
2278F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002279
2280FILESYSTEMS (VFS and infrastructure)
2281P: Alexander Viro
2282M: viro@zeniv.linux.org.uk
2283L: linux-fsdevel@vger.kernel.org
2284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002285F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002286
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002287FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2288P: Riku Voipio
2289M: riku.vipio@iki.fi
2290L: lm-sensors@lm-sensors.org
2291S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002292F: drivers/hwmon/f75375s.c
2293F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002294
Joe Perches7d2c86b2009-04-07 20:59:01 -07002295FIREWIRE SUBSYSTEM
2296P: Kristian Hoegsberg
2297M: krh@redhat.com
2298P: Stefan Richter
2299M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002300L: linux1394-devel@lists.sourceforge.net
2301W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002302T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002304F: drivers/firewire/
2305F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002306
2307FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002308S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002309F: Documentation/firmware_class/
2310F: drivers/base/firmware*.c
2311F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002312
2313FPU EMULATOR
2314P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002315M: billm@melbpc.org.au
2316W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002318F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002319
2320FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2321P: Mike McLagan
2322M: mike.mclagan@linux.org
2323L: netdev@vger.kernel.org
2324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: drivers/net/wan/dlci.c
2326F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002329L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002331S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002332F: Documentation/fb/
2333F: drivers/video/fb*
2334F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Zhang Wei173acc72008-03-01 07:42:48 -07002336FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002337P: Li Yang
2338M: leoli@freescale.com
2339P: Zhang Wei
2340M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002341L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002343F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002344
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002345FREESCALE I2C CPM DRIVER
2346P: Jochen Friedrich
2347M: jochen@scram.de
2348L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002349L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002352
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002353FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2354P: Sascha Hauer
2355M: kernel@pengutronix.de
2356L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2357L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002359F: arch/arm/plat-mxc/include/mach/imxfb.h
2360F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002361
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002362FREESCALE SOC FS_ENET DRIVER
2363P: Pantelis Antoniou
2364M: pantelis.antoniou@gmail.com
2365P: Vitaly Bordug
2366M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002367L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002368L: netdev@vger.kernel.org
2369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002370F: drivers/net/fs_enet/
2371F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002372
Timur Tabid9e9d822008-04-24 08:45:26 +10002373FREESCALE QUICC ENGINE LIBRARY
2374P: Timur Tabi
2375M: timur@freescale.com
2376L: linuxppc-dev@ozlabs.org
2377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002378F: arch/powerpc/sysdev/qe_lib/
2379F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002380
Li Yanga7205b32007-04-23 10:38:18 -07002381FREESCALE HIGHSPEED USB DEVICE DRIVER
2382P: Li Yang
2383M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002384L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002385L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002387F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002388
Li Yangbeaf53b2007-05-25 13:54:02 +08002389FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2390P: Li Yang
2391M: leoli@freescale.com
2392L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002393L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002395F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002396
Timur Tabid9e9d822008-04-24 08:45:26 +10002397FREESCALE QUICC ENGINE UCC UART DRIVER
2398P: Timur Tabi
2399M: timur@freescale.com
2400L: linuxppc-dev@ozlabs.org
2401S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002402F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002403
2404FREESCALE SOC SOUND DRIVERS
2405P: Timur Tabi
2406M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002407L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002408L: linuxppc-dev@ozlabs.org
2409S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002410F: sound/soc/fsl/fsl*
2411F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413FREEVXFS FILESYSTEM
2414P: Christoph Hellwig
2415M: hch@infradead.org
2416W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Pavel Machek71038f52009-01-15 13:51:02 -08002420FREEZER
2421P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002422M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002423P: Rafael J. Wysocki
2424M: rjw@sisk.pl
2425L: linux-pm@lists.linux-foundation.org
2426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002427F: Documentation/power/freezing-of-tasks.txt
2428F: include/linux/freezer.h
2429F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002430
David Howellsa5432f52009-04-20 15:46:45 +01002431FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2432P: David Howells
2433M: dhowells@redhat.com
2434L: linux-cachefs@redhat.com
2435S: Supported
2436F: Documentation/filesystems/caching/
2437F: fs/fscache/
2438F: include/linux/fscache*.h
2439
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002440FTRACE
2441P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002442M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002443S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002444F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002445F: arch/*/*/*/ftrace.h
2446F: arch/*/kernel/ftrace.c
2447F: include/*/ftrace.h
2448F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002449
David Howells5ab7ffe2007-04-10 15:10:45 +01002450FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451P: David Howells
2452M: dhowells@redhat.com
2453S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002454F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Jonathan Woithe20b93732008-06-11 10:14:56 +09302456FUJITSU LAPTOP EXTRAS
2457P: Jonathan Woithe
2458M: jwoithe@physics.adelaide.edu.au
2459L: linux-acpi@vger.kernel.org
2460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002461F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302462
Miklos Szeredi04578f12005-09-09 13:10:22 -07002463FUSE: FILESYSTEM IN USERSPACE
2464P: Miklos Szeredi
2465M: miklos@szeredi.hu
2466L: fuse-devel@lists.sourceforge.net
2467W: http://fuse.sourceforge.net/
2468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002469F: fs/fuse/
2470F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2473P: Rik Faith
2474M: faith@cs.unc.edu
2475L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002476S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002477F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479GDT SCSI DISK ARRAY CONTROLLER DRIVER
2480P: Achim Leubner
2481M: achim_leubner@adaptec.com
2482L: linux-scsi@vger.kernel.org
2483W: http://www.icp-vortex.com/
2484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002485F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002487GENERIC GPIO I2C DRIVER
2488P: Haavard Skinnemoen
2489M: hskinnemoen@atmel.com
2490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002491F: drivers/i2c/busses/i2c-gpio.c
2492F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002493
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002494GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495P: Krzysztof Halasa
2496M: khc@pm.waw.pl
2497W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002499F: drivers/net/wan/c101.c
2500F: drivers/net/wan/hd6457*
2501F: drivers/net/wan/hdlc*
2502F: drivers/net/wan/n2.c
2503F: drivers/net/wan/pc300too.c
2504F: drivers/net/wan/pci200syn.c
2505F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002507GENERIC INCLUDE/ASM HEADER FILES
2508P: Arnd Bergmann
2509M: arnd@arndb.de
2510L: linux-arch@vger.kernel.org
2511T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2512S: Maintained
2513F: include/asm-generic
2514
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002515GFS2 FILE SYSTEM
2516P: Steven Whitehouse
2517M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002518L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002519W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002520T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2521T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002523F: Documentation/filesystems/gfs2*.txt
2524F: fs/gfs2/
2525F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002526
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002527GIGASET ISDN DRIVERS
2528P: Hansjoerg Lipp
2529M: hjlipp@web.de
2530P: Tilman Schmidt
2531M: tilman@imap.cc
2532L: gigaset307x-common@lists.sourceforge.net
2533W: http://gigaset307x.sourceforge.net/
2534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: Documentation/isdn/README.gigaset
2536F: drivers/isdn/gigaset/
2537F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002538
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002539HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002540P: Frank Seidel
2541M: frank@f-seidel.de
2542L: lm-sensors@lm-sensors.org
2543W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002545F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002546
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002547HYPERVISOR VIRTUAL CONSOLE DRIVER
2548L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002549S: Odd Fixes
2550F: drivers/char/hvc_*
2551
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002552GSPCA FINEPIX SUBDRIVER
2553P: Frank Zago
2554M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002555L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002556T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002559
2560GSPCA M5602 SUBDRIVER
2561P: Erik Andren
2562M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002563L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002564T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002566F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002567
2568GSPCA PAC207 SONIXB SUBDRIVER
2569P: Hans de Goede
2570M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002571L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002572T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002575
2576GSPCA T613 SUBDRIVER
2577P: Leandro Costantino
2578M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002579L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002580T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002582F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002583
2584GSPCA USB WEBCAM DRIVER
2585P: Jean-Francois Moine
2586M: moinejf@free.fr
2587W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002588L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002589T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002591F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002592
Jean Delvare5b543962005-08-15 19:51:02 +02002593HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002594L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002595W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002596S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002597F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002598
Michael Buesch844dd052006-06-26 00:24:59 -07002599HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002600S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002601F: Documentation/hw_random.txt
2602F: drivers/char/hw_random/
2603F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002604
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605HARMONY SOUND DRIVER
2606P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002607M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002608L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002610F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612HAYES ESP SERIAL DRIVER
2613P: Andrew J. Robinson
2614M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615W: http://www.nyx.net/~arobinso
2616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002617F: Documentation/serial/hayes-esp.txt
2618F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002619
2620HEWLETT-PACKARD SMART2 RAID DRIVER
2621P: Chirag Kantharia
2622M: chirag.kantharia@hp.com
2623L: iss_storagedev@hp.com
2624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002625F: Documentation/blockdev/cpqarray.txt
2626F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002627
2628HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2629P: Mike Miller
2630M: mike.miller@hp.com
2631L: iss_storagedev@hp.com
2632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002633F: Documentation/blockdev/cciss.txt
2634F: drivers/block/cciss*
2635F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002636
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637HFS FILESYSTEM
2638P: Roman Zippel
2639M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002641F: Documentation/filesystems/hfs.txt
2642F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644HGA FRAMEBUFFER DRIVER
2645P: Ferenc Bakonyi
2646M: fero@drama.obuda.kando.hu
2647L: linux-nvidia@lists.surfsouth.com
2648W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002650F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002652HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002653P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002654M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002655P: Rafael J. Wysocki
2656M: rjw@sisk.pl
2657L: linux-pm@lists.linux-foundation.org
2658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002659F: arch/x86/power/
2660F: drivers/base/power/
2661F: kernel/power/
2662F: include/linux/suspend.h
2663F: include/linux/freezer.h
2664F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002665F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002666
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002667HID CORE LAYER
2668P: Jiri Kosina
2669M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002670L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002671T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002673F: drivers/hid/
2674F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002675
Ingo Molnar38bed542007-02-22 09:09:34 +01002676HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2677P: Thomas Gleixner
2678M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: Documentation/timers/
2681F: kernel/hrtimer.c
2682F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684HIGH-SPEED SCC DRIVER FOR AX.25
2685P: Klaus Kudielka
2686M: klaus.kudielka@ieee.org
2687L: linux-hams@vger.kernel.org
2688W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002690F: drivers/net/hamradio/dmascc.c
2691F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002693HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2694P: HighPoint Linux Team
2695M: linux@highpoint-tech.com
2696W: http://www.highpoint-tech.com
2697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002698F: Documentation/scsi/hptiop.txt
2699F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701HIPPI
2702P: Jes Sorensen
2703M: jes@trained-monkey.org
2704L: linux-hippi@sunsite.dk
2705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002706F: include/linux/hippidevice.h
2707F: include/linux/if_hippi.h
2708F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Jouni Malinenff1d2762005-05-12 22:54:16 -04002710HOST AP DRIVER
2711P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002712M: j@w1.fi
2713L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002714L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002715W: http://hostap.epitest.fi/
2716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002717F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002718
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002719HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2720P: Carlos Corbacho
2721M: carlos@strangeworlds.co.uk
2722S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002723F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002724
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002725HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2726P: Jaroslav Kysela
2727M: perex@perex.cz
2728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002730
Joe Perches7d2c86b2009-04-07 20:59:01 -07002731HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002732P: Clemens Ladisch
2733M: clemens@ladisch.de
2734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002735F: Documentation/timers/hpet.txt
2736F: drivers/char/hpet.c
2737F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002738
2739HPET: i386
2740P: Venkatesh Pallipadi (Venki)
2741M: venkatesh.pallipadi@intel.com
2742S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002743F: arch/x86/kernel/hpet.c
2744F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002745
2746HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002747P: Vojtech Pavlik
2748M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002749S: Maintained
2750
Joe Perches7d2c86b2009-04-07 20:59:01 -07002751HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002752P: Bob Picco
2753M: bob.picco@hp.com
2754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002755F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757HPFS FILESYSTEM
2758P: Mikulas Patocka
2759M: mikulas@artax.karlin.mff.cuni.cz
2760W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002762F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Joe Perches7d2c86b2009-04-07 20:59:01 -07002764HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002765P: Jan Dumon
2766M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002767W: http://www.pharscape.org
2768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002769F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002770
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002771HTCPEN TOUCHSCREEN DRIVER
2772P: Pau Oliva Fora
2773M: pof@eslack.org
2774L: linux-input@vger.kernel.org
2775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778HUGETLB FILESYSTEM
2779P: William Irwin
2780M: wli@holomorphy.com
2781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002784I2C/SMBUS STUB DRIVER
2785P: Mark M. Hoffman
2786M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002787L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002789F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002790
Jean Delvare5b543962005-08-15 19:51:02 +02002791I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002792P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002794P: Ben Dooks (embedded platforms)
2795M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002796L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002797W: http://i2c.wiki.kernel.org/
2798T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002800F: Documentation/i2c/
2801F: drivers/i2c/
2802F: include/linux/i2c.h
2803F: include/linux/i2c-dev.h
2804F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Till Harbaume8c76ee2007-05-01 23:26:35 +02002806I2C-TINY-USB DRIVER
2807P: Till Harbaum
2808M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002809L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002810W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002812F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002815P: H. Peter Anvin
2816M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002818F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821P: H. Peter Anvin
2822M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002823T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824S: Maintained
2825
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826IA64 (Itanium) PLATFORM
2827P: Tony Luck
2828M: tony.luck@intel.com
2829L: linux-ia64@vger.kernel.org
2830W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002831T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002833F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835IBM MCA SCSI SUBSYSTEM DRIVER
2836P: Michael Lang
2837M: langa2@kph.uni-mainz.de
2838W: http://www.uni-mainz.de/~langm000/linux.html
2839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842IBM Power Linux RAID adapter
2843P: Brian King
2844M: brking@us.ibm.com
2845S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002846F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848IBM ServeRAID RAID DRIVER
2849P: Jack Hammer
2850P: Dave Jeffery
2851M: ipslinux@adaptec.com
2852W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002853S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002854F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002856IDE SUBSYSTEM
David S. Miller920d44e2009-06-21 16:11:33 -07002857P: David S. Miller
2858M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002860T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002862F: Documentation/ide/
2863F: drivers/ide/
2864F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002866IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002867P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002868M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002869L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002871F: Documentation/cdrom/ide-cd
2872F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Andy Henroid27471fd2008-10-09 11:45:22 -07002874IDLE-I7300
2875P: Andy Henroid
2876M: andrew.d.henroid@intel.com
2877L: linux-pm@lists.linux-foundation.org
2878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002879F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002880
Joe Perches7d2c86b2009-04-07 20:59:01 -07002881IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002883M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002884P: Stefan Richter
2885M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886L: linux1394-devel@lists.sourceforge.net
2887W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002888T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002890F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Joe Perches7d2c86b2009-04-07 20:59:01 -07002892IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893P: Dan Dennedy
2894M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002895P: Stefan Richter
2896M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002899F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002900
Sergey Lapin02cf2282009-06-08 12:18:50 +00002901IEEE 802.15.4 SUBSYSTEM
2902P: Dmitry Eremin-Solenikov
2903M: dbaryshkov@gmail.com
2904P: Sergey Lapin
2905M: slapin@ossfans.org
2906L: linux-zigbee-devel@lists.sourceforge.net
2907W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002908T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002909S: Maintained
2910F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002911F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002912
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002913INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2914P: Mimi Zohar
2915M: zohar@us.ibm.com
2916S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002917F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002920L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002921S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924INFINIBAND SUBSYSTEM
2925P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002926M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002928M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002930M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002931L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002933T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002935F: Documentation/infiniband/
2936F: drivers/infiniband/
2937F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Robert Lovec9f04f52005-07-15 12:21:07 -04002939INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002940P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002941M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002942P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002943M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002944P: Eric Paris
2945M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002947F: Documentation/filesystems/inotify.txt
2948F: fs/notify/inotify/
2949F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002950
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002951INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2952P: Dmitry Torokhov
2953M: dmitry.torokhov@gmail.com
2954M: dtor@mail.ru
2955L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002956T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002958F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002959
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002960INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002961P: Sylvain Meyer
2962M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002963L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002965F: Documentation/fb/intelfb.txt
2966F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002969P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002970M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002971L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302975INTEL MENLOW THERMAL DRIVER
2976P: Sujith Thomas
2977M: sujith.thomas@intel.com
2978L: linux-acpi@vger.kernel.org
2979W: http://www.lesswatts.org/projects/acpi/
2980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983INTEL IA32 MICROCODE UPDATE SUPPORT
2984P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002985M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002987F: arch/x86/kernel/microcode_core.c
2988F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002990INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002991P: Maciej Sosnowski
2992M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002994F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002995
David Woodhouse6c8909b2008-10-18 16:12:17 +01002996INTEL IOMMU (VT-d)
2997P: David Woodhouse
2998M: dwmw2@infradead.org
2999L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003000T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003002F: drivers/pci/intel-iommu.c
3003F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003004
Dan Williamsb3e5f262007-08-07 10:26:35 -07003005INTEL IOP-ADMA DMA DRIVER
3006P: Dan Williams
3007M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07003008S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003009F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003010
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003011INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
3012P: Krzysztof Halasa
3013M: khc@pm.waw.pl
3014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003015F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3016F: arch/arm/mach-ixp4xx/include/mach/npe.h
3017F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3018F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3019F: drivers/net/arm/ixp4xx_eth.c
3020F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003021
Michael Buesch844dd052006-06-26 00:24:59 -07003022INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3023P: Deepak Saxena
3024M: dsaxena@plexity.net
3025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003026F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003027
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003028INTEL IXP2000 ETHERNET DRIVER
3029P: Lennert Buytenhek
3030M: kernel@wantstofly.org
3031L: netdev@vger.kernel.org
3032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003033F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003034
Auke Kokd94e6fe2008-03-03 14:37:47 -08003035INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003036P: Jeff Kirsher
3037M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003038P: Jesse Brandeburg
3039M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003040P: Bruce Allan
3041M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003042P: PJ Waskiewicz
3043M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003044P: John Ronciak
3045M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003046L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003047W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003049F: drivers/net/e100.c
3050F: drivers/net/e1000/
3051F: drivers/net/e1000e/
3052F: drivers/net/igb/
3053F: drivers/net/ixgb/
3054F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
James Ketrenos826d2ab2005-11-07 18:56:59 -06003056INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003057P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003058M: yi.zhu@intel.com
3059P: James Ketrenos
3060M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003061P: Reinette Chatre
3062M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003063L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003064L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003065W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003066W: http://ipw2100.sourceforge.net
3067S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003068F: Documentation/networking/README.ipw2100
3069F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003070
3071INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003072P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003073M: yi.zhu@intel.com
3074P: James Ketrenos
3075M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003076P: Reinette Chatre
3077M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003078L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003079L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003080W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003081W: http://ipw2200.sourceforge.net
3082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003083F: Documentation/networking/README.ipw2200
3084F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003085
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003086INTEL WIRELESS WIMAX CONNECTION 2400
3087P: Inaky Perez-Gonzalez
3088M: inaky.perez-gonzalez@intel.com
3089M: linux-wimax@intel.com
3090L: wimax@linuxwimax.org
3091S: Supported
3092W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003093F: Documentation/wimax/README.i2400m
3094F: drivers/net/wimax/i2400m/
3095F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003096
Zhu Yib481de92007-09-25 17:54:57 -07003097INTEL WIRELESS WIFI LINK (iwlwifi)
3098P: Zhu Yi
3099M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003100P: Reinette Chatre
3101M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003102L: linux-wireless@vger.kernel.org
3103L: ipw3945-devel@lists.sourceforge.net
3104W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003105T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003106S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003107F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003108
Ralf Baechlecb109a02007-08-30 23:56:30 -07003109IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110P: Ralf Baechle
3111M: ralf@linux-mips.org
3112L: linux-mips@linux-mips.org
3113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003114F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Ralf Baechlecb109a02007-08-30 23:56:30 -07003116IOC3 SERIAL DRIVER
3117P: Pat Gefre
3118M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003119L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003122
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003123IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124P: Juanjo Ciarlante
3125M: jjciarla@raiz.uncu.edu.ar
3126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003127F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
Francois Romieu1202d6f2007-09-17 17:13:55 -07003129IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3130P: Francois Romieu
3131M: romieu@fr.zoreil.com
3132P: Sorbica Shieh
3133M: sorbica@icplus.com.tw
3134P: Jesse Huang
3135M: jesse@icplus.com.tw
3136L: netdev@vger.kernel.org
3137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003138F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003139
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003140IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003141P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003142M: infinipath@qlogic.com
3143L: general@lists.openfabrics.org
3144T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003145S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003146F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003147
Corey Minyard4409ebe2006-04-20 02:43:12 -07003148IPMI SUBSYSTEM
3149P: Corey Minyard
3150M: minyard@acm.org
3151L: openipmi-developer@lists.sourceforge.net
3152W: http://openipmi.sourceforge.net/
3153S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003154F: Documentation/IPMI.txt
3155F: drivers/char/ipmi/
3156F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003158IPS SCSI RAID DRIVER
3159P: Adaptec OEM Raid Solutions
3160M: aacraid@adaptec.com
3161L: linux-scsi@vger.kernel.org
3162W: http://www.adaptec.com/
3163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003165
3166IPVS
3167P: Wensong Zhang
3168M: wensong@linux-vs.org
3169P: Simon Horman
3170M: horms@verge.net.au
3171P: Julian Anastasov
3172M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003173L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003174L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003176F: Documentation/networking/ipvs-sysctl.txt
3177F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Randy Dunlape7839f22008-10-12 16:11:45 -07003179IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003180P: Jiri Kosina
3181M: jkosina@suse.cz
3182P: David Sterba
3183M: dsterba@suse.cz
3184S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003186F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003188IPX NETWORK LAYER
3189P: Arnaldo Carvalho de Melo
3190M: acme@ghostprotocols.net
3191L: netdev@vger.kernel.org
3192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: include/linux/ipx.h
3194F: include/net/ipx.h
3195F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003198P: Samuel Ortiz
3199M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003200L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003202S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003203T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003204F: Documentation/networking/irda.txt
3205F: drivers/net/irda/
3206F: include/net/irda/
3207F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003209ISAPNP
3210P: Jaroslav Kysela
3211M: perex@perex.cz
3212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003213F: Documentation/isapnp.txt
3214F: drivers/pnp/isapnp/
3215F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003216
Mike Christie14816b12007-11-28 16:22:06 -08003217ISCSI
3218P: Mike Christie
3219M: michaelc@cs.wisc.edu
3220L: open-iscsi@googlegroups.com
3221W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003222T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: drivers/scsi/*iscsi*
3225F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227ISDN SUBSYSTEM
3228P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003229M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003230L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003232T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003234F: Documentation/isdn/
3235F: drivers/isdn/
3236F: include/linux/isdn.h
3237F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239ISDN SUBSYSTEM (Eicon active card driver)
3240P: Armin Schindler
3241M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003242L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243W: http://www.melware.de
3244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003245F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Hans Verkuil91821ff2007-12-02 09:35:33 -03003247IVTV VIDEO4LINUX DRIVER
3248P: Hans Verkuil
3249M: hverkuil@xs4all.nl
3250L: ivtv-devel@ivtvdriver.org
3251L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003252L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003253T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003254W: http://www.ivtvdriver.org
3255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003256F: Documentation/video4linux/*.ivtv
3257F: drivers/media/video/ivtv/
3258F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003259
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003260JFS FILESYSTEM
3261P: Dave Kleikamp
3262M: shaggy@austin.ibm.com
3263L: jfs-discussion@lists.sourceforge.net
3264W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003265T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003267F: Documentation/filesystems/jfs.txt
3268F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003269
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003270JME NETWORK DRIVER
3271P: Guo-Fu Tseng
3272M: cooldavid@cooldavid.org
3273L: netdev@vger.kernel.org
3274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003275F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3278P: David Woodhouse
3279M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003280L: linux-mtd@lists.infradead.org
3281W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003283F: fs/jffs2/
3284F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Josh Triplettde456d32006-07-30 03:04:00 -07003286JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003287P: Stephen Tweedie
3288M: sct@redhat.com
3289P: Andrew Morton
3290M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003291L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003293F: fs/jbd*/
3294F: include/linux/ext*jbd*.h
3295F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003296
Rudolf Marek4660cb32006-10-08 22:01:26 +02003297K8TEMP HARDWARE MONITORING DRIVER
3298P: Rudolf Marek
3299M: r.marek@assembler.cz
3300L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003302F: Documentation/hwmon/k8temp
3303F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
3305KCONFIG
3306P: Roman Zippel
3307M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003308L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003310F: Documentation/kbuild/kconfig-language.txt
3311F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Vivek Goyalea6c2082006-05-20 14:59:55 -07003313KDUMP
3314P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003315M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003316P: Haren Myneni
3317M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003318L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003319W: http://lse.sourceforge.net/kdump/
3320S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003321F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323KERNEL AUTOMOUNTER (AUTOFS)
3324P: H. Peter Anvin
3325M: hpa@zytor.com
3326L: autofs@linux.kernel.org
3327S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003328F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
3330KERNEL AUTOMOUNTER v4 (AUTOFS4)
3331P: Ian Kent
3332M: raven@themaw.net
3333L: autofs@linux.kernel.org
3334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003335F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
Joe Perches7d2c86b2009-04-07 20:59:01 -07003337KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338P: Sam Ravnborg
3339M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003340T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3341T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003342L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003344F: Documentation/kbuild/
3345F: Makefile
3346F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
3348KERNEL JANITORS
3349P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003350L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352S: Maintained
3353
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003354KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003355P: J. Bruce Fields
3356M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003358M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003359L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003362F: fs/nfsd/
3363F: include/linux/nfsd/
3364F: fs/lockd/
3365F: fs/nfs_common/
3366F: net/sunrpc/
3367F: include/linux/lockd/
3368F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Avi Kivity426d62e2006-12-13 00:34:03 -08003370KERNEL VIRTUAL MACHINE (KVM)
3371P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003372M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003373L: kvm@vger.kernel.org
3374W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003376F: Documentation/*/kvm.txt
3377F: arch/*/kvm/
3378F: arch/*/include/asm/kvm*
3379F: include/linux/kvm*
3380F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003381
Joerg Roedelad8003d2008-09-10 20:01:07 +02003382KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3383P: Joerg Roedel
3384M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003385L: kvm@vger.kernel.org
3386W: http://kvm.qumranet.com
3387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003388F: arch/x86/include/asm/svm.h
3389F: arch/x86/kvm/kvm_svm.h
3390F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003391
Hollis Blanchard513014b2008-04-16 23:28:08 -05003392KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3393P: Hollis Blanchard
3394M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003395L: kvm-ppc@vger.kernel.org
3396W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003398F: arch/powerpc/include/asm/kvm*
3399F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003400
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003401KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003402P: Xiantao Zhang
3403M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003404L: kvm-ia64@vger.kernel.org
3405W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003407F: Documentation/ia64/kvm.txt
3408F: arch/ia64/include/asm/kvm*
3409F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003410
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003411KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3412P: Carsten Otte
3413M: cotte@de.ibm.com
3414P: Christian Borntraeger
3415M: borntraeger@de.ibm.com
3416M: linux390@de.ibm.com
3417L: linux-s390@vger.kernel.org
3418W: http://www.ibm.com/developerworks/linux/linux390/
3419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003420F: Documentation/s390/kvm.txt
3421F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003422F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003423
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003424KEXEC
3425P: Eric Biederman
3426M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003427W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003428L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003430F: include/linux/kexec.h
3431F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003432
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003433KGDB
3434P: Jason Wessel
3435M: jason.wessel@windriver.com
3436L: kgdb-bugreport@lists.sourceforge.net
3437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003438F: Documentation/DocBook/kgdb.tmpl
3439F: drivers/misc/kgdbts.c
3440F: drivers/serial/kgdboc.c
3441F: include/linux/kgdb.h
3442F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003443
Pekka Enberg456db8c2008-04-28 22:47:29 +03003444KMEMCHECK
3445P: Vegard Nossum
3446M: vegardno@ifi.uio.no
3447P Pekka Enberg
3448M: penberg@cs.helsinki.fi
3449L: linux-kernel@vger.kernel.org
3450S: Maintained
3451
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003452KMEMLEAK
3453P: Catalin Marinas
3454M: catalin.marinas@arm.com
3455L: linux-kernel@vger.kernel.org
3456S: Maintained
3457F: Documentation/kmemleak.txt
3458F: include/linux/kmemleak.h
3459F: mm/kmemleak.c
3460F: mm/kmemleak-test.c
3461
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003462KMEMTRACE
3463P: Eduard - Gabriel Munteanu
3464M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003465S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003466F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003467F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003468F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003469
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003470KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003471P: Ananth N Mavinakayanahalli
3472M: ananth@in.ibm.com
3473P: Anil S Keshavamurthy
3474M: anil.s.keshavamurthy@intel.com
3475P: David S. Miller
3476M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003477P: Masami Hiramatsu
3478M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: Documentation/kprobes.txt
3481F: include/linux/kprobes.h
3482F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003483
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003484KS0108 LCD CONTROLLER DRIVER
3485P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003486M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003487W: http://miguelojeda.es/auxdisplay.htm
3488W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003490F: Documentation/auxdisplay/ks0108
3491F: drivers/auxdisplay/ks0108.c
3492F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003496S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003497F: Documentation/networking/lapb-module.txt
3498F: include/*/lapb.h
3499F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501LASI 53c700 driver for PARISC
3502P: James E.J. Bottomley
3503M: James.Bottomley@HansenPartnership.com
3504L: linux-scsi@vger.kernel.org
3505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003506F: Documentation/scsi/53c700.txt
3507F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508
Richard Purdie263de9b2006-05-15 09:44:16 -07003509LED SUBSYSTEM
3510P: Richard Purdie
3511M: rpurdie@rpsys.net
3512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003513F: drivers/leds/
3514F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003515
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516LEGO USB Tower driver
3517P: Juergen Stuber
3518M: starblue@users.sourceforge.net
3519L: legousb-devel@lists.sourceforge.net
3520W: http://legousb.sourceforge.net/
3521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003522F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Rusty Russell568a17f2007-10-25 14:12:24 +10003524LGUEST
3525P: Rusty Russell
3526M: rusty@rustcorp.com.au
3527L: lguest@ozlabs.org
3528W: http://lguest.ozlabs.org/
3529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003530F: Documentation/lguest/
3531F: arch/x86/lguest/
3532F: drivers/lguest/
3533F: include/linux/lguest*.h
3534F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003535
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536LINUX FOR IBM pSERIES (RS/6000)
3537P: Paul Mackerras
3538M: paulus@au.ibm.com
3539W: http://www.ibm.com/linux/ltc/projects/ppc
3540S: Supported
3541
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003542LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003543P: Benjamin Herrenschmidt
3544M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003545P: Paul Mackerras
3546M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547W: http://www.penguinppc.org/
3548L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003549T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550S: Supported
3551
3552LINUX FOR POWER MACINTOSH
3553P: Benjamin Herrenschmidt
3554M: benh@kernel.crashing.org
3555W: http://www.penguinppc.org/
3556L: linuxppc-dev@ozlabs.org
3557S: Maintained
3558
Grant Likely77a76362008-07-12 12:11:43 -06003559LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003560P: Grant Likely
3561M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003563T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564S: Maintained
3565
3566LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003567P: Josh Boyer
3568M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569P: Matt Porter
3570M: mporter@kernel.crashing.org
3571W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003572L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003573T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574S: Maintained
3575
Grant Likely260c02a2007-10-02 12:15:34 +10003576LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3577P: Grant Likely
3578M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003579W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003580L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003581T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582S: Maintained
3583
Tom Rinie93adf12005-07-26 12:49:53 -07003584LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003585P: Vitaly Bordug
3586M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003587P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003588M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003589W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003590L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003591S: Maintained
3592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003594P: Kumar Gala
3595M: galak@kernel.crashing.org
3596W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003597L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003598S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Olof Johanssonab06ff32006-09-06 14:44:54 -05003600LINUX FOR POWERPC PA SEMI PWRFICIENT
3601P: Olof Johansson
3602M: olof@lixom.net
3603W: http://www.pasemi.com/
3604L: linuxppc-dev@ozlabs.org
3605S: Supported
3606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607LINUX SECURITY MODULE (LSM) FRAMEWORK
3608P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003609M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003610L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003611T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612S: Supported
3613
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003614LLC (802.2)
3615P: Arnaldo Carvalho de Melo
3616M: acme@ghostprotocols.net
3617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003618F: include/linux/llc.h
3619F: include/net/llc*
3620F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003621
Pavel Machek455fbdd2008-11-12 13:27:02 -08003622LIS3LV02D ACCELEROMETER DRIVER
3623P: Eric Piel
3624M: eric.piel@tremplin-utc.net
3625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: Documentation/hwmon/lis3lv02d
3627F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003628
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629LM83 HARDWARE MONITOR DRIVER
3630P: Jean Delvare
3631M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003632L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003634F: Documentation/hwmon/lm83
3635F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
3637LM90 HARDWARE MONITOR DRIVER
3638P: Jean Delvare
3639M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003640L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003642F: Documentation/hwmon/lm90
3643F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003645LOCKDEP AND LOCKSTAT
3646P: Peter Zijlstra
3647M: peterz@infradead.org
3648P: Ingo Molnar
3649M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003650T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003652F: Documentation/lockdep*.txt
3653F: Documentation/lockstat.txt
3654F: include/linux/lockdep.h
3655F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003656
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003657LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658P: Richard Russon (FlatCap)
3659M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003660L: linux-ntfs-dev@lists.sourceforge.net
3661W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003663F: Documentation/ldm.txt
3664F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003666LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3667P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003668M: Eric.Moore@lsi.com
3669M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003670L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003671L: linux-scsi@vger.kernel.org
3672W: http://www.lsilogic.com/support
3673S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003674F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003675
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3677P: Matthew Wilcox
3678M: matthew@wil.cx
3679L: linux-scsi@vger.kernel.org
3680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003681F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Mike Frysinger81365c32008-10-29 14:01:12 -07003683LTP (Linux Test Project)
3684P: Subrata Modak
3685M: subrata@linux.vnet.ibm.com
3686P: Mike Frysinger
3687M: vapier@gentoo.org
3688L: ltp-list@lists.sourceforge.net (subscribers-only)
3689W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003690T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003691S: Maintained
3692
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003693M32R ARCHITECTURE
3694P: Hirokazu Takata
3695M: takata@linux-m32r.org
3696L: linux-m32r@ml.linux-m32r.org
3697L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3698W: http://www.linux-m32r.org/
3699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003701
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702M68K ARCHITECTURE
3703P: Geert Uytterhoeven
3704M: geert@linux-m68k.org
3705P: Roman Zippel
3706M: zippel@linux-m68k.org
3707L: linux-m68k@lists.linux-m68k.org
3708W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003709T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003711F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003712F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
3714M68K ON APPLE MACINTOSH
3715P: Joshua Thompson
3716M: funaho@jurai.org
3717W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003718L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003720F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721
3722M68K ON HP9000/300
3723P: Philip Blundell
3724M: philb@gnu.org
3725W: http://www.tazenda.demon.co.uk/phil/linux-hp
3726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003727F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
Jiri Benc64a327a2007-05-05 11:47:08 -07003729MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003730P: Johannes Berg
3731M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003732L: linux-wireless@vger.kernel.org
3733W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003734T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/networking/mac80211-injection.txt
3737F: include/net/mac80211.h
3738F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003739
Stefano Brivio1036d862007-12-23 04:46:27 +01003740MAC80211 PID RATE CONTROL
3741P: Stefano Brivio
3742M: stefano.brivio@polimi.it
3743P: Mattias Nissler
3744M: mattias.nissler@gmx.de
3745L: linux-wireless@vger.kernel.org
3746W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003747T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003750
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003751MACVLAN DRIVER
3752P: Patrick McHardy
3753M: kaber@trash.net
3754L: netdev@vger.kernel.org
3755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/net/macvlan.c
3757F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003758
Michael Kerriskfaf16682005-07-31 22:34:47 -07003759MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003760P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003761M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003762W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003763L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003764S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003765
Stefano Brivio74cda162007-11-19 20:27:46 +01003766MARVELL LIBERTAS WIRELESS DRIVER
3767P: Dan Williams
3768M: dcbw@redhat.com
3769L: libertas-dev@lists.infradead.org
3770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003771F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003772
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003773MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003774P: Lennert Buytenhek
3775M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003776L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003777S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003778F: drivers/net/mv643xx_eth.*
3779F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Pierre Ossman2a695672009-03-16 19:52:26 +01003781MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3782P: Nicolas Pitre
3783M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003784S: Maintained
3785
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003786MARVELL YUKON / SYSKONNECT DRIVER
3787P: Mirko Lindner
3788M: mlindner@syskonnect.de
3789P: Ralph Roesler
3790M: rroesler@syskonnect.de
3791W: http://www.syskonnect.com
3792S: Supported
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794MATROX FRAMEBUFFER DRIVER
3795P: Petr Vandrovec
3796M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003797L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003799F: drivers/video/matrox/matroxfb_*
3800F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003802MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3803P: Hans J. Koch
3804M: hjk@linutronix.de
3805L: lm-sensors@lm-sensors.org
3806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003807F: Documentation/hwmon/max6650
3808F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003809
Joe Perches127c49a2009-04-08 08:34:04 -07003810MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3811P: Mauro Carvalho Chehab
3812M: mchehab@infradead.org
3813P: LinuxTV.org Project
3814L: linux-media@vger.kernel.org
3815W: http://linuxtv.org
3816T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3817S: Maintained
3818F: Documentation/dvb/
3819F: Documentation/video4linux/
3820F: drivers/media/
3821F: include/media/
3822F: include/linux/dvb/
3823F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003824
3825MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003826P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003827M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003828L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003829W: http://megaraid.lsilogic.com
3830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003831F: Documentation/scsi/megaraid.txt
3832F: drivers/scsi/megaraid.*
3833F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003834
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835MEMORY MANAGEMENT
3836L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837W: http://www.linux-mm.org
3838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: include/linux/mm.h
3840F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003841
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003842MEMORY RESOURCE CONTROLLER
3843P: Balbir Singh
3844M: balbir@linux.vnet.ibm.com
3845P: Pavel Emelyanov
3846M: xemul@openvz.org
3847P: KAMEZAWA Hiroyuki
3848M: kamezawa.hiroyu@jp.fujitsu.com
3849L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003852
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853MEMORY TECHNOLOGY DEVICES (MTD)
3854P: David Woodhouse
3855M: dwmw2@infradead.org
3856W: http://www.linux-mtd.infradead.org/
3857L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003858T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003860F: drivers/mtd/
3861F: include/linux/mtd/
3862F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Michal Simekc6375b02009-03-27 14:25:52 +01003864MICROBLAZE ARCHITECTURE
3865P: Michal Simek
3866M: monstr@monstr.eu
3867L: microblaze-uclinux@itee.uq.edu.au
3868W: http://www.monstr.eu/fdt/
3869T: git git://git.monstr.eu/linux-2.6-microblaze.git
3870S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003871F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
3873MICROTEK X6 SCANNER
3874P: Oliver Neukum
3875M: oliver@neukum.name
3876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003877F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879MIPS
3880P: Ralf Baechle
3881M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003882W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003884T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003886F: Documentation/mips/
3887F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
3889MISCELLANEOUS MCA-SUPPORT
3890P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003891M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003893F: Documentation/ia64/mca.txt
3894F: Documentation/mca.txt
3895F: drivers/mca/
3896F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
3898MODULE SUPPORT
3899P: Rusty Russell
3900M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003902F: include/linux/module.h
3903F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904
3905MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3906P: Stelian Pop
3907M: stelian@popies.net
3908W: http://popies.net/meye/
3909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003910F: Documentation/video4linux/meye.txt
3911F: drivers/media/video/meye.*
3912F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Pavel Pisac58ff042007-05-16 01:10:41 +02003914MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3915P: Pavel Pisa
3916M: ppisa@pikron.com
3917L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003920
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921MOUSE AND MISC DEVICES [GENERAL]
3922P: Alessandro Rubini
3923M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003925F: drivers/input/mouse/
3926F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
Jiri Slabyb9705b62008-04-30 00:53:48 -07003928MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003929P: Jiri Slaby
3930M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: Documentation/serial/moxa-smartio
3933F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003934
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003935MSI LAPTOP SUPPORT
3936P: Lennart Poettering
3937M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003938W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003939W: http://0pointer.de/lennart/tchibo.html
3940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003941F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003942
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003943MULTIFUNCTION DEVICES (MFD)
3944P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003945M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003946T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003948F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003949
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003950MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003951P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003952M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/mmc/
3955F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003956
David Brownell15a05802007-08-08 09:12:54 -07003957MULTIMEDIA CARD (MMC) ETC. OVER SPI
3958P: David Brownell
3959M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003960S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003961F: drivers/mmc/host/mmc_spi.c
3962F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003963
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964MULTISOUND SOUND DRIVER
3965P: Andrew Veliath
3966M: andrewtv@usa.net
3967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003968F: Documentation/sound/oss/MultiSound
3969F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Jiri Slabyd7354102006-12-08 02:38:35 -08003971MULTITECH MULTIPORT CARD (ISICOM)
3972P: Jiri Slaby
3973M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003975F: drivers/char/isicom.c
3976F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003977
Felipe Balbi550a7372008-07-24 12:27:36 +03003978MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003979P: Felipe Balbi
3980M: felipe.balbi@nokia.com
3981L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003982T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003984F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003985
Brice Goglin2d3cf582008-05-17 12:45:36 +02003986MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3987P: Andrew Gallatin
3988M: gallatin@myri.com
3989P: Brice Goglin
3990M: brice@myri.com
3991L: netdev@vger.kernel.org
3992W: http://www.myri.com/scs/download-Myri10GE.html
3993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003994F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003995
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003997P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998M: thockin@hockin.org
3999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004000F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
4002NCP FILESYSTEM
4003P: Petr Vandrovec
4004M: vandrove@vc.cvut.cz
4005L: linware@sh.cvut.cz
4006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004007F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
4009NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
4010P: James E.J. Bottomley
4011M: James.Bottomley@HansenPartnership.com
4012L: linux-scsi@vger.kernel.org
4013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004014F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004016NETEFFECT IWARP RNIC DRIVER (IW_NES)
4017P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07004018M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07004019P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07004020M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004021L: general@lists.openfabrics.org
4022W: http://www.neteffect.com
4023S: Supported
4024F: drivers/infiniband/hw/nes/
4025
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004026NETEM NETWORK EMULATOR
4027P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08004028M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004029L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004031F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004032
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004033NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004034P: Ramkrishna Vepa
4035M: ram.vepa@neterion.com
4036P: Rastapur Santosh
4037M: santosh.rastapur@neterion.com
4038P: Sivakumar Subramani
4039M: sivakumar.subramani@neterion.com
4040P: Sreenivasa Honnur
4041M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004042P: Anil Murthy
4043M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004044L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004045W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4046W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004048F: Documentation/networking/s2io.txt
4049F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051NETFILTER/IPTABLES/IPCHAINS
4052P: Rusty Russell
4053P: Marc Boucher
4054P: James Morris
4055P: Harald Welte
4056P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004057P: Patrick McHardy
4058M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004059L: netfilter-devel@vger.kernel.org
4060L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004061L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062W: http://www.netfilter.org/
4063W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004065F: include/linux/netfilter*
4066F: include/linux/netfilter/
4067F: include/net/netfilter/
4068F: net/*/netfilter.c
4069F: net/*/netfilter/
4070F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Paul Moore4cc67732006-09-25 15:57:13 -07004072NETLABEL
4073P: Paul Moore
4074M: paul.moore@hp.com
4075W: http://netlabel.sf.net
4076L: netdev@vger.kernel.org
4077S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004078F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004079F: include/net/netlabel.h
4080F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004081
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082NETROM NETWORK LAYER
4083P: Ralf Baechle
4084M: ralf@linux-mips.org
4085L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004086W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004088F: include/linux/netrom.h
4089F: include/net/netrom.h
4090F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004092NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093P: Paul Clements
4094M: Paul.Clements@steeleye.com
4095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004096F: Documentation/blockdev/nbd.txt
4097F: drivers/block/nbd.c
4098F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
4100NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004101P: David S. Miller
4102M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004103L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004104W: http://www.linuxfoundation.org/en/Net
4105T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004107F: net/
4108F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
4110NETWORKING [IPv4/IPv6]
4111P: David S. Miller
4112M: davem@davemloft.net
4113P: Alexey Kuznetsov
4114M: kuznet@ms2.inr.ac.ru
4115P: Pekka Savola (ipv6)
4116M: pekkas@netcore.fi
4117P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004118M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119P: Hideaki YOSHIFUJI
4120M: yoshfuji@linux-ipv6.org
4121P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004122M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004123L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004124T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: net/ipv4/
4127F: net/ipv6/
4128F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
James Morris10e2ff12007-08-25 14:41:28 -07004130NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4131P: Paul Moore
4132M: paul.moore@hp.com
4133L: netdev@vger.kernel.org
4134S: Maintained
4135
John W. Linville29f8f632006-01-18 14:52:48 -08004136NETWORKING [WIRELESS]
4137P: John W. Linville
4138M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004139L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004140T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: net/wireless/
4143F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004144F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004145
Joe Perches788873a2009-04-16 09:38:45 +00004146NETWORKING DRIVERS
4147L: netdev@vger.kernel.org
4148W: http://www.linuxfoundation.org/en/Net
4149T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4150S: Odd Fixes
4151F: drivers/net/
4152
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004153NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004154P: Dhananjay Phadke
4155M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004156L: netdev@vger.kernel.org
4157W: http://www.netxen.com
4158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004159F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004160
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004161NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004163M: Trond.Myklebust@netapp.com
4164L: linux-nfs@vger.kernel.org
4165W: http://client.linux-nfs.org
4166T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004168F: fs/lockd/
4169F: fs/nfs/
4170F: fs/nfs_common/
4171F: net/sunrpc/
4172F: include/linux/lockd/
4173F: include/linux/nfs*
4174F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
4176NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004177P: Jan-Pascal van Best
4178M: janpascal@vanbest.org
4179P: Andreas Mohr
4180M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004181L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004183F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004185NILFS2 FILESYSTEM
4186P: KONISHI Ryusuke
4187M: konishi.ryusuke@lab.ntt.co.jp
4188L: users@nilfs.org
4189W: http://www.nilfs.org/en/
4190S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004191F: Documentation/filesystems/nilfs2.txt
4192F: fs/nilfs2/
4193F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004194
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4196P: YOKOTA Hiroshi
4197M: yokota@netlab.is.tsukuba.ac.jp
4198W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004200F: Documentation/scsi/NinjaSCSI.txt
4201F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
4203NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4204P: GOTO Masanori
4205M: gotom@debian.or.jp
4206P: YOKOTA Hiroshi
4207M: yokota@netlab.is.tsukuba.ac.jp
4208W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004210F: Documentation/scsi/NinjaSCSI.txt
4211F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213NTFS FILESYSTEM
4214P: Anton Altaparmakov
4215M: aia21@cantab.net
4216L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004217W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004218T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004220F: Documentation/filesystems/ntfs.txt
4221F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004223NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004224P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004225M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004226L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004228F: drivers/video/riva/
4229F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Tony Lindgrenf5525782009-05-28 13:23:53 -07004231OMAP SUPPORT
4232P: Tony Lindgren <tony@atomide.com>
4233M: tony@atomide.com
4234L: linux-omap@vger.kernel.org
4235W: http://www.muru.com/linux/omap/
4236W: http://linux.omap.com/
4237T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4238S: Maintained
4239F: arch/arm/*omap*
4240
4241OMAP CLOCK FRAMEWORK SUPPORT
4242P: Paul Walmsley
4243M: paul@pwsan.com
4244L: linux-omap@vger.kernel.org
4245S: Maintained
4246F: arch/arm/*omap*/*clock*
4247
4248OMAP POWER MANAGEMENT SUPPORT
4249P: Kevin Hilman
4250M: khilman@deeprootsystems.com
4251L: linux-omap@vger.kernel.org
4252S: Maintained
4253F: arch/arm/*omap*/*pm*
4254
4255OMAP AUDIO SUPPORT
4256P: Jarkko Nikula
4257M: jhnikula@gmail.com
4258L: alsa-devel@alsa-project.org (subscribers-only)
4259L: linux-omap@vger.kernel.org
4260S: Maintained
4261F: sound/soc/omap/
4262
4263OMAP FRAMEBUFFER SUPPORT
4264P: Imre Deak
4265M: imre.deak@nokia.com
4266L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4267L: linux-omap@vger.kernel.org
4268S: Maintained
4269F: drivers/video/omap/
4270
4271OMAP MMC SUPPORT
4272P: Jarkko Lavinen
4273M: jarkko.lavinen@nokia.com
4274L: linux-kernel@vger.kernel.org
4275L: linux-omap@vger.kernel.org
4276S: Maintained
4277F: drivers/mmc/host/*omap*
4278
4279OMAP RANDOM NUMBER GENERATOR SUPPORT
4280P: Deepak Saxena
4281M: dsaxena@plexity.net
4282S: Maintained
4283F: drivers/char/hw_random/omap-rng.c
4284
4285OMAP USB SUPPORT
4286P: Felipe Balbi
4287M: felipe.balbi@nokia.com
4288P: David Brownell
4289M: dbrownell@users.sourceforge.net
4290L: linux-usb@vger.kernel.org
4291L: linux-omap@vger.kernel.org
4292S: Maintained
4293
Bob Copeland0ad122d2008-07-25 19:45:18 -07004294OMFS FILESYSTEM
4295P: Bob Copeland
4296M: me@bobcopeland.com
4297L: linux-karma-devel@lists.sourceforge.net
4298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004299F: Documentation/filesystems/omfs.txt
4300F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004301
Harald Weltec1986ee2005-11-13 16:06:29 -08004302OMNIKEY CARDMAN 4000 DRIVER
4303P: Harald Welte
4304M: laforge@gnumonks.org
4305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004306F: drivers/char/pcmcia/cm4000_cs.c
4307F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004308
Harald Welte77c44ab2005-11-13 16:06:26 -08004309OMNIKEY CARDMAN 4040 DRIVER
4310P: Harald Welte
4311M: laforge@gnumonks.org
4312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004314
Jonathan Corbet77d51402007-03-22 19:44:17 -03004315OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004316P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004317M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004318L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004319T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004321F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004322
Thomas Gleixner431bca72007-05-02 09:31:35 +02004323ONENAND FLASH DRIVER
4324P: Kyungmin Park
4325M: kyungmin.park@samsung.com
4326L: linux-mtd@lists.infradead.org
4327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: drivers/mtd/onenand/
4329F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004330
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331ONSTREAM SCSI TAPE DRIVER
4332P: Willem Riede
4333M: osst@riede.org
4334L: osst-users@lists.sourceforge.net
4335L: linux-scsi@vger.kernel.org
4336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004337F: drivers/scsi/osst*
4338F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004340OPENCORES I2C BUS DRIVER
4341P: Peter Korsgaard
4342M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004343L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004345F: Documentation/i2c/busses/i2c-ocores
4346F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004349P: Robert Richter
4350M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351L: oprofile-list@lists.sf.net
4352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004353F: arch/*/oprofile/
4354F: drivers/oprofile/
4355F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004357ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4358P: Mark Fasheh
4359M: mfasheh@suse.com
4360P: Joel Becker
4361M: joel.becker@oracle.com
4362L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4363W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004364T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004366F: Documentation/filesystems/ocfs2.txt
4367F: Documentation/filesystems/dlmfs.txt
4368F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370ORINOCO DRIVER
4371P: Pavel Roskin
4372M: proski@gnu.org
4373P: David Gibson
4374M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004375L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004376L: orinoco-users@lists.sourceforge.net
4377L: orinoco-devel@lists.sourceforge.net
4378W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004380F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
Boaz Harrosh68274792009-01-25 17:24:14 +02004382OSD LIBRARY
4383P: Boaz Harrosh
4384M: bharrosh@panasas.com
4385P: Benny Halevy
4386M: bhalevy@panasas.com
4387L: osd-dev@open-osd.org
4388W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004389T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004390S: Maintained
4391
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004392P54 WIRELESS DRIVER
4393P: Michael Wu
4394M: flamingice@sourmilk.net
4395L: linux-wireless@vger.kernel.org
4396W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004397T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004400
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004401PA SEMI ETHERNET DRIVER
4402P: Olof Johansson
4403M: olof@lixom.net
4404L: netdev@vger.kernel.org
4405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004406F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004407
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004408PA SEMI SMBUS DRIVER
4409P: Olof Johansson
4410M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004411L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004413F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004414
Harald Welte709ee532008-09-23 17:46:57 +02004415PANASONIC LAPTOP ACPI EXTRAS DRIVER
4416P: Harald Welte
4417M: laforge@gnumonks.org
4418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004419F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004420
David Howells4fa97182008-10-13 10:42:44 +01004421PANASONIC MN10300/AM33 PORT
4422P: David Howells
4423M: dhowells@redhat.com
4424P: Koichi Yasutake
4425M: yasutake.koichi@jp.panasonic.com
4426L: linux-am33-list@redhat.com (moderated for non-subscribers)
4427W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004429F: Documentation/mn10300/
4430F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004431
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004433L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004434S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004435F: drivers/parport/
4436F: include/linux/parport*.h
4437F: drivers/char/ppdev.c
4438F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004440PARAVIRT_OPS INTERFACE
4441P: Jeremy Fitzhardinge
4442M: jeremy@xensource.com
4443P: Chris Wright
4444M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004445P: Alok Kataria
4446M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004447P: Rusty Russell
4448M: rusty@rustcorp.com.au
4449L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/ia64/paravirt_ops.txt
4452F: arch/*/kernel/paravirt*
4453F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004454
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4456P: Tim Waugh
4457M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004458L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459W: http://www.torque.net/linux-pp.html
4460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004461F: Documentation/blockdev/paride.txt
4462F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
4464PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004465P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004466M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004467P: Helge Deller
4468M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004469L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004471T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004473F: arch/parisc/
4474F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475
Jim Cromie1662d322006-10-06 00:43:59 -07004476PC87360 HARDWARE MONITORING DRIVER
4477P: Jim Cromie
4478M: jim.cromie@gmail.com
4479L: lm-sensors@lm-sensors.org
4480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004481F: Documentation/hwmon/pc87360
4482F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004483
4484PC8736x GPIO DRIVER
4485P: Jim Cromie
4486M: jim.cromie@gmail.com
4487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004488F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004489
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004490PCA9532 LED DRIVER
4491P: Riku Voipio
4492M: riku.voipio@iki.fi
4493S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004494F: drivers/leds/leds-pca9532.c
4495F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004496
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004497PCI ERROR RECOVERY
4498P: Linas Vepstas
4499M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004500L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004502F: Documentation/PCI/pci-error-recovery.txt
4503F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004506P: Jesse Barnes
4507M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004508L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004509T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004511F: Documentation/PCI/
4512F: drivers/pci/
4513F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004515PCIE HOTPLUG DRIVER
4516P: Kristen Carlson Accardi
4517M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004518L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004520F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004523P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004524L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004525W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004526T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004528F: Documentation/pcmcia/
4529F: drivers/pcmcia/
4530F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
4532PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004533P: Don Fry
4534M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004535L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004537F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004539PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004540P: Balbir Singh
4541M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004543F: include/linux/delayacct.h
4544F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004545
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004546PERFORMANCE COUNTER SUBSYSTEM
4547P: Peter Zijlstra
4548M: a.p.zijlstra@chello.nl
4549P: Paul Mackerras
4550M: paulus@samba.org
4551P: Ingo Molnar
4552M: mingo@elte.hu
4553L: linux-kernel@vger.kernel.org
4554S: Supported
4555
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004556PERSONALITY HANDLING
4557P: Christoph Hellwig
4558M: hch@infradead.org
4559L: linux-abi-devel@lists.sourceforge.net
4560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004561F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004562
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004564P: Joern Engel
4565M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566L: linux-mtd@lists.infradead.org
4567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004568F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Peter Osterlund249a6772005-09-27 21:45:30 -07004570PKTCDVD DRIVER
4571P: Peter Osterlund
4572M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004574F: drivers/block/pktcdvd.c
4575F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004576
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004578P: Thomas Gleixner
4579M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004581F: fs/timerfd.c
4582F: include/linux/timer*
4583F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
Anton Vorontsov3be86142007-07-15 04:43:36 +04004585POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4586P: Anton Vorontsov
4587M: cbou@mail.ru
4588P: David Woodhouse
4589M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004590T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: include/linux/power_supply.h
4593F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004594
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595PNP SUPPORT
4596P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004597M: abelay@mit.edu
4598P: Bjorn Helgaas
4599M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004601F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Vitaly Wool999445d2007-01-04 13:07:03 +01004603PNXxxxx I2C DRIVER
4604P: Vitaly Wool
4605M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004606L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004608F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004609
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610PPP PROTOCOL DRIVERS AND COMPRESSORS
4611P: Paul Mackerras
4612M: paulus@samba.org
4613L: linux-ppp@vger.kernel.org
4614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004615F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
4617PPP OVER ATM (RFC 2364)
4618P: Mitchell Blank Jr
4619M: mitch@sfgoth.com
4620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004621F: net/atm/pppoatm.c
4622F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624PPP OVER ETHERNET
4625P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004626M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004628F: drivers/net/pppoe.c
4629F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630
James Chapmana6d23702007-06-27 15:53:17 -07004631PPP OVER L2TP
4632P: James Chapman
4633M: jchapman@katalix.com
4634S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004635F: drivers/net/pppol2tp.c
4636F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004637
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004638PPS SUPPORT
4639P: Rodolfo Giometti
4640M: giometti@enneenne.com
4641W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4642L: linuxpps@ml.enneenne.com (subscribers-only)
4643S: Maintained
4644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645PREEMPTIBLE KERNEL
4646P: Robert Love
4647M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648L: kpreempt-tech@lists.sourceforge.net
4649W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004651F: Documentation/preempt-locking.txt
4652F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
4654PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004655P: Luis R. Rodriguez
4656M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004657L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658W: http://prism54.org
4659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004660F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
4662PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4663P: Peter Denison
4664M: promise@pnd-pc.demon.co.uk
4665W: http://www.pnd-pc.demon.co.uk/promise/
4666S: Maintained
4667
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004668PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4669P: Mikael Pettersson
4670M: mikpe@it.uu.se
4671L: linux-ide@vger.kernel.org
4672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004673F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004674
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004675PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004676P: Geoff Levand
4677M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004678L: netdev@vger.kernel.org
4679L: cbe-oss-dev@ozlabs.org
4680S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004681F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004682
Geoff Levandf58a9d12006-11-23 00:46:51 +01004683PS3 PLATFORM SUPPORT
4684P: Geoff Levand
4685M: geoffrey.levand@am.sony.com
4686L: linuxppc-dev@ozlabs.org
4687L: cbe-oss-dev@ozlabs.org
4688S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004689F: arch/powerpc/boot/ps3*
4690F: arch/powerpc/include/asm/lv1call.h
4691F: arch/powerpc/include/asm/ps3*.h
4692F: arch/powerpc/platforms/ps3/
4693F: drivers/*/ps3*
4694F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004695F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004696F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004697F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004698
Jim Pariscffb4add2009-01-06 11:32:10 +00004699PS3VRAM DRIVER
4700P: Jim Paris
4701M: jim@jtan.com
4702L: cbe-oss-dev@ozlabs.org
4703S: Maintained
4704
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004705PTRACE SUPPORT
4706P: Roland McGrath
4707M: roland@redhat.com
4708P: Oleg Nesterov
4709M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004710S: Maintained
4711F: include/asm-generic/syscall.h
4712F: include/linux/ptrace.h
4713F: include/linux/regset.h
4714F: include/linux/tracehook.h
4715F: kernel/ptrace.c
4716
Michael Krufky83202042006-07-03 00:24:18 -07004717PVRUSB2 VIDEO4LINUX DRIVER
4718P: Mike Isely
4719M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004720L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004721L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004722W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004723T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: Documentation/video4linux/README.pvrusb2
4726F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004727
Eric Miao30ec2612008-06-12 15:21:41 -07004728PXA2xx/PXA3xx SUPPORT
4729P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004730M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004731P: Russell King
4732M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004733L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004735F: arch/arm/mach-pxa/
4736F: drivers/pcmcia/pxa2xx*
4737F: drivers/spi/pxa2xx*
4738F: drivers/usb/gadget/pxa2*
4739F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004740F: sound/arm/pxa*
4741F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004743PXA168 SUPPORT
4744P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004745M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004746P: Jason Chagas
4747M: jason.chagas@marvell.com
4748L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004749T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004750S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004751
Eric Miao5fa82eb2009-03-20 12:52:24 +08004752PXA910 SUPPORT
4753P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004754M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004755L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004756T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004757S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004758
Pierre Ossman272f1332007-05-14 21:25:26 +02004759PXA MMCI DRIVER
4760S: Orphan
4761
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004762PXA RTC DRIVER
4763P: Robert Jarzmik
4764M: robert.jarzmik@free.fr
4765L: rtc-linux@googlegroups.com
4766S: Maintained
4767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768QLOGIC QLA2XXX FC-SCSI DRIVER
4769P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004770M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771L: linux-scsi@vger.kernel.org
4772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004773F: Documentation/scsi/LICENSE.qla2xxx
4774F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775
Ron Mercer5a4faa82006-07-25 00:40:21 -07004776QLOGIC QLA3XXX NETWORK DRIVER
4777P: Ron Mercer
4778M: linux-driver@qlogic.com
4779L: netdev@vger.kernel.org
4780S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004781F: Documentation/networking/LICENSE.qla3xxx
4782F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004783
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004784QLOGIC QLGE 10Gb ETHERNET DRIVER
4785P: Ron Mercer
4786M: linux-driver@qlogic.com
4787M: ron.mercer@qlogic.com
4788L: netdev@vger.kernel.org
4789S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004790F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004791
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792QNX4 FILESYSTEM
4793P: Anders Larsen
4794M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795W: http://www.alarsen.net/linux/qnx4fs/
4796S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004797F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004798F: include/linux/qnx4_fs.h
4799F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004802P: Benjamin Herrenschmidt
4803M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004804L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: drivers/video/aty/radeon*
4807F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808
4809RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004810P: Paul Mackerras
4811M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004812L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004814F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Randy Dunlape7839f22008-10-12 16:11:45 -07004816RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004817P: rt2x00 project
4818L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004819L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004820W: http://rt2x00.serialmonkey.com/
4821S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004822T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004823F: drivers/net/wireless/rt2x00/
4824
Nick Piggin9db55792008-02-08 04:19:49 -08004825RAMDISK RAM BLOCK DEVICE DRIVER
4826P: Nick Piggin
4827M: npiggin@suse.de
4828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004829F: Documentation/blockdev/ramdisk.txt
4830F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004831
Matt Mackall9e95ce22005-04-16 15:25:56 -07004832RANDOM NUMBER DRIVER
4833P: Matt Mackall
4834M: mpm@selenic.com
4835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004836F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004837
Matt Porter394b7012005-11-07 01:00:15 -08004838RAPIDIO SUBSYSTEM
4839P: Matt Porter
4840M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004842F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004844RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4845P: Corey Thomas
4846M: coreythomas@charter.net
4847L: linux-wireless@vger.kernel.org
4848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004849F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004850
4851RCUTORTURE MODULE
4852P: Josh Triplett
4853M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004854P: Paul E. McKenney
4855M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004857F: Documentation/RCU/torture.txt
4858F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004859
Florian Fainellic1f766b2008-02-06 22:39:44 +01004860RDC R-321X SoC
4861P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004862M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004863S: Maintained
4864
Florian Fainellidb17f392007-12-19 11:30:30 +01004865RDC R6040 FAST ETHERNET DRIVER
4866P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004867M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004868L: netdev@vger.kernel.org
4869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004871
Andy Grovera09ed662009-02-24 15:30:41 +00004872RDS - RELIABLE DATAGRAM SOCKETS
4873P: Andy Grover
4874M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004875L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004877F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004878
Josh Triplett595182b2006-10-04 02:17:21 -07004879READ-COPY UPDATE (RCU)
4880P: Dipankar Sarma
4881M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004882P: Paul E. McKenney
4883M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004884W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004886F: Documentation/RCU/rcu.txt
4887F: Documentation/RCU/rcuref.txt
4888F: include/linux/rcupdate.h
4889F: include/linux/srcu.h
4890F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004891
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892REAL TIME CLOCK DRIVER
4893P: Paul Gortmaker
4894M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: Documentation/rtc.txt
4897F: drivers/rtc/
4898F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004900REAL TIME CLOCK (RTC) SUBSYSTEM
4901P: Alessandro Zummo
4902M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004903L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004905F: Documentation/rtc.txt
4906F: drivers/rtc/
4907F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004908
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004910L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004912F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
Ivo van Doorne08976452008-04-12 19:23:55 +02004914RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004915P: Johannes Berg
4916M: johannes@sipsolutions.net
4917L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004918S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004919F Documentation/rfkill.txt
4920F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004921
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004922RISCOM8 DRIVER
4923S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004924F: Documentation/serial/riscom8.txt
4925F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004926
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927ROCKETPORT DRIVER
4928P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929W: http://www.comtrol.com
4930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004931F: Documentation/serial/rocket.txt
4932F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934ROSE NETWORK LAYER
4935P: Ralf Baechle
4936M: ralf@linux-mips.org
4937L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004938W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004940F: include/linux/rose.h
4941F: include/net/rose.h
4942F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943
Larry Finger59840482008-11-12 17:13:09 -06004944RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004945P: John W. Linville
4946M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004947L: linux-wireless@vger.kernel.org
4948W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004949T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004951F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004952
Larry Finger59840482008-11-12 17:13:09 -06004953RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004954P: Herton Ronaldo Krzesinski
4955M: herton@mandriva.com.br
4956P: Hin-Tak Leung
4957M: htl10@users.sourceforge.net
4958P: Larry Finger
4959M: Larry.Finger@lwfinger.net
4960L: linux-wireless@vger.kernel.org
4961W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004962T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004964F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004965
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004966S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004967P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004968M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004969L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004971F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973S390
4974P: Martin Schwidefsky
4975M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004976P: Heiko Carstens
4977M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004979L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004980W: http://www.ibm.com/developerworks/linux/linux390/
4981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004982F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004983
4984S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004985P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004986M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004987P: Frank Blaschka
4988M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004989M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004990L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004991W: http://www.ibm.com/developerworks/linux/linux390/
4992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004993F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004994
Felix Beckfeed9b62009-03-26 15:24:23 +01004995S390 ZCRYPT DRIVER
4996P: Felix Beck
4997M: felix.beck@de.ibm.com
4998P: Ralph Wuerthner
4999M: ralph.wuerthner@de.ibm.com
5000M: linux390@de.ibm.com
5001L: linux-s390@vger.kernel.org
5002S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005003F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005004
Heiko Carstens5238da42006-02-11 17:56:01 -08005005S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01005006P: Christof Schmitt
5007M: christof.schmitt@de.ibm.com
5008P: Martin Peschke
5009M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005010M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005011L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005012W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005014F: Documentation/s390/zfcpdump.txt
5015F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
Ursula Braundd96df22007-09-19 13:09:02 +02005017S390 IUCV NETWORK LAYER
5018P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005019M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02005020M: linux390@de.ibm.com
5021L: linux-s390@vger.kernel.org
5022W: http://www.ibm.com/developerworks/linux/linux390/
5023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005024F: drivers/s390/net/*iucv*
5025F: include/net/iucv/
5026F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005027
Ben Dooks4dde7f72008-06-30 22:40:38 +01005028S3C24XX SD/MMC Driver
5029P: Ben Dooks
5030M: ben-linux@fluff.org
5031L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005032S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005033F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035SAA7146 VIDEO4LINUX-2 DRIVER
5036P: Michael Hunold
5037M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005038L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005039T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040W: http://www.mihu.de/linux/saa7146
5041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005042F: drivers/media/common/saa7146*
5043F: drivers/media/video/*7146*
5044F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046SC1200 WDT DRIVER
5047P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005048M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005050F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
5052SCHEDULER
5053P: Ingo Molnar
5054M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005055P: Peter Zijlstra
5056M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: kernel/sched*
5059F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
5061SCSI CDROM DRIVER
5062P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005063M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064L: linux-scsi@vger.kernel.org
5065W: http://www.kernel.dk
5066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005067F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
5069SCSI SG DRIVER
5070P: Doug Gilbert
5071M: dgilbert@interlog.com
5072L: linux-scsi@vger.kernel.org
5073W: http://www.torque.net/sg
5074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005075F: drivers/scsi/sg.c
5076F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
5078SCSI SUBSYSTEM
5079P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005080M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005082T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5083T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5084T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005086F: drivers/scsi/
5087F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005090P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091M: Kai.Makisara@kolumbus.fi
5092L: linux-scsi@vger.kernel.org
5093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005094F: Documentation/scsi/st.txt
5095F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096
5097SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005098P: Vlad Yasevich
5099M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005100P: Sridhar Samudrala
5101M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005102L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005103W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005104S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005105F: Documentation/networking/sctp.txt
5106F: include/linux/sctp.h
5107F: include/net/sctp/
5108F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
5110SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005111P: Jim Cromie
5112M: jim.cromie@gmail.com
5113S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005114F: Documentation/i2c/busses/scx200_acb
5115F: arch/x86/kernel/scx200_32.c
5116F: drivers/watchdog/scx200_wdt.c
5117F: drivers/i2c/busses/scx200*
5118F: drivers/mtd/maps/scx200_docflash.c
5119F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005120
5121SCx200 GPIO DRIVER
5122P: Jim Cromie
5123M: jim.cromie@gmail.com
5124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005125F: drivers/char/scx200_gpio.c
5126F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005127
5128SCx200 HRT CLOCKSOURCE DRIVER
5129P: Jim Cromie
5130M: jim.cromie@gmail.com
5131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005132F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133
Sascha Sommer6a369132008-07-15 14:21:29 +02005134SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5135P: Sascha Sommer
5136M: saschasommer@freenet.de
5137L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005139F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005140
Randy Dunlape7839f22008-10-12 16:11:45 -07005141SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005142P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005143M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005144L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005145S: Maintained
5146
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005147SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5148P: Anton Vorontsov
5149M: avorontsov@ru.mvista.com
5150L: linuxppc-dev@ozlabs.org
5151L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005153F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154
Ben Dooks0d1bb412009-06-14 13:52:37 +01005155SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5156P: Ben Dooks
5157M: ben-linux@fluff.org
5158L: sdhci-devel@lists.ossman.eu
5159S: Maintained
5160F: drivers/mmc/host/sdhci-s3c.c
5161
James Morris8711cca2008-12-04 03:19:45 +11005162SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005163P: James Morris
5164M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005165L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005166T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005167W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005168S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005169F: security/
James Morris8711cca2008-12-04 03:19:45 +11005170
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171SECURITY CONTACT
5172P: Security Officers
5173M: security@kernel.org
5174S: Supported
5175
5176SELINUX SECURITY MODULE
5177P: Stephen Smalley
5178M: sds@tycho.nsa.gov
5179P: James Morris
5180M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005181P: Eric Paris
5182M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005183L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005184W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005185T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005187F: include/linux/selinux*
5188F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189
Jiri Slabycef2cf02007-05-08 00:31:45 -07005190SENSABLE PHANTOM
5191P: Jiri Slaby
5192M: jirislaby@gmail.com
5193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005194F: drivers/misc/phantom.c
5195F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005196
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005197SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198P: Jeff Garzik
5199M: jgarzik@pobox.com
5200L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005201T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005203F: drivers/ata/
5204F: include/linux/ata.h
5205F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005207SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5208P: Sathya Perla
5209M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005210P: Subbu Seetharaman
5211M: subbus@serverengines.com
5212L: netdev@vger.kernel.org
5213W: http://www.serverengines.com
5214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005215F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005216
Ben Hutchings8ceee662008-04-27 12:55:59 +01005217SFC NETWORK DRIVER
5218P: Steve Hodgson
5219P: Ben Hutchings
5220P: Robert Stonehouse
5221M: linux-net-drivers@solarflare.com
5222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005223F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005224
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005225SGI GRU DRIVER
5226P: Jack Steiner
5227M: steiner@sgi.com
5228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005229F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005230
5231SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5232P: Pat Gefre
5233M: pfg@sgi.com
5234L: linux-ia64@vger.kernel.org
5235S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005236F: Documentation/ia64/serial.txt
5237F: drivers/serial/ioc?_serial.c
5238F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005239
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240SGI VISUAL WORKSTATION 320 AND 540
5241P: Andrey Panin
5242M: pazke@donpac.ru
5243L: linux-visws-devel@lists.sf.net
5244W: http://linux-visws.sf.net
5245S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005246F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Jack Steiner75312612008-08-15 00:40:42 -07005248SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005249P: Robin Holt
5250M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005252F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005253
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005254SHARP LH SUPPORT (LH7952X & LH7A40X)
5255P: Marc Singer
5256M: elf@buici.com
5257W: http://projects.buici.com/arm
5258L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005260F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5261F: arch/arm/mach-lh7a40x/
5262F: drivers/serial/serial_lh7a40x.c
5263F: drivers/usb/gadget/lh7a40*
5264F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005265
5266SHPC HOTPLUG DRIVER
5267P: Kristen Carlson Accardi
5268M: kristen.c.accardi@intel.com
5269L: linux-pci@vger.kernel.org
5270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005271F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005272
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273SIMTEC EB110ATX (Chalice CATS)
5274P: Ben Dooks
5275P: Vincent Sanders
5276M: support@simtec.co.uk
5277W: http://www.simtec.co.uk/products/EB110ATX/
5278S: Supported
5279
5280SIMTEC EB2410ITX (BAST)
5281P: Ben Dooks
5282P: Vincent Sanders
5283M: support@simtec.co.uk
5284W: http://www.simtec.co.uk/products/EB2410ITX/
5285S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005286F: arch/arm/mach-s3c2410/
5287F: drivers/*/*s3c2410*
5288F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
Francois Romieu92aab3c2005-07-30 13:11:18 +02005290SIS 190 ETHERNET DRIVER
5291P: Francois Romieu
5292M: romieu@fr.zoreil.com
5293L: netdev@vger.kernel.org
5294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005296
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297SIS 900/7016 FAST ETHERNET DRIVER
5298P: Daniele Venzano
5299M: venza@brownhat.org
5300W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005301L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005305SIS 96X I2C/SMBUS DRIVER
5306P: Mark M. Hoffman
5307M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005308L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005310F: Documentation/i2c/busses/i2c-sis96x
5311F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005312
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313SIS FRAMEBUFFER DRIVER
5314P: Thomas Winischhofer
5315M: thomas@winischhofer.net
5316W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005318F: Documentation/fb/sisfb.txt
5319F: drivers/video/sis/
5320F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
5322SIS USB2VGA DRIVER
5323P: Thomas Winischhofer
5324M: thomas@winischhofer.net
5325W: http://www.winischhofer.at/linuxsisusbvga.shtml
5326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005327F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005329SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5330P: Stephen Hemminger
5331M: shemminger@linux-foundation.org
5332L: netdev@vger.kernel.org
5333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005334F: drivers/net/skge.*
5335F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005336
Christoph Lameter415ad262007-07-26 10:40:56 -07005337SLAB ALLOCATOR
5338P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005339M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005340P: Pekka Enberg
5341M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005342P: Matt Mackall
5343M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005344L: linux-mm@kvack.org
5345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005346F: include/linux/sl?b*.h
5347F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349SMC91x ETHERNET DRIVER
5350P: Nicolas Pitre
5351M: nico@cam.org
5352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005353F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005355SMSC47B397 HARDWARE MONITOR DRIVER
5356P: Mark M. Hoffman
5357M: mhoffman@lightlink.com
5358L: lm-sensors@lm-sensors.org
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: Documentation/hwmon/smsc47b397
5361F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005362
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005363SMSC911x ETHERNET DRIVER
5364P: Steve Glendinning
5365M: steve.glendinning@smsc.com
5366L: netdev@vger.kernel.org
5367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005368F: include/linux/smsc911x.h
5369F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005370
Steve Glendinning2cb37722008-12-11 20:54:30 -08005371SMSC9420 PCI ETHERNET DRIVER
5372P: Steve Glendinning
5373M: steve.glendinning@smsc.com
5374L: netdev@vger.kernel.org
5375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005376F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005377
Ben Nizetteb54f2862008-03-13 22:27:30 +11005378SMX UIO Interface
5379P: Ben Nizette
5380M: bn@niasdigital.com
5381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005382F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005383
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005384SN-IA64 (Itanium) SUB-PLATFORM
5385P: Jes Sorensen
5386M: jes@sgi.com
5387L: linux-altix@sgi.com
5388L: linux-ia64@vger.kernel.org
5389W: http://www.sgi.com/altix
5390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005391F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005392
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005393SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005394P: Guennadi Liakhovetski
5395M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005396L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005397T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005399F: include/media/v4l2*
5400F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005401
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005402SOEKRIS NET48XX LED SUPPORT
5403P: Chris Boot
5404M: bootc@bootc.net
5405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005406F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005407
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005410M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005413F: drivers/md/
5414F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416SONIC NETWORK DRIVER
5417P: Thomas Bogendoerfer
5418M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005419L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005421F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Michael Buesch61e115a2007-09-18 15:12:50 -04005423SONICS SILICON BACKPLANE DRIVER (SSB)
5424P: Michael Buesch
5425M: mb@bu3sch.de
5426L: netdev@vger.kernel.org
5427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005428F: drivers/ssb/
5429F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005432P: Mattia Dongili
5433M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005434L: linux-acpi@vger.kernel.org
5435W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/laptops/sony-laptop.txt
5438F: drivers/char/sonypi.c
5439F: drivers/platform/x86/sony-laptop.c
5440F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441
Alex Dubovbaf85322008-02-09 10:20:54 -08005442SONY MEMORYSTICK CARD SUPPORT
5443P: Alex Dubov
5444M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005445W: http://tifmxx.berlios.de/
5446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005447F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005448
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449SOUND
5450P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005451M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005452P: Takashi Iwai
5453M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005454L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005455W: http://www.alsa-project.org/
5456T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5457T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005459F: Documentation/sound/
5460F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005461F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
Mark Brownbd903bd2008-11-19 19:16:05 +00005463SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005464P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005465M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005466P: Mark Brown
5467M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005468T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005469L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005470W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005472F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005473F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005474
Sam Ravnborg473321f2009-01-04 15:47:49 -08005475SPARC + UltraSPARC (sparc/sparc64)
5476P: David S. Miller
5477M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005479T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5480T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005482F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
5484SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5485P: Roger Wolff
5486M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005488F: Documentation/serial/specialix.txt
5489F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005491SPI SUBSYSTEM
5492P: David Brownell
5493M: dbrownell@users.sourceforge.net
5494L: spi-devel-general@lists.sourceforge.net
5495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005496F: Documentation/spi/
5497F: drivers/spi/
5498F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005499
Jim Lewis2752e402006-09-29 02:01:19 -07005500SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005501P: Ishizaki Kou
5502M: kou.ishizaki@toshiba.co.jp
5503P: Jens Osterkamp
5504M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005505L: netdev@vger.kernel.org
5506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005507F: Documentation/networking/spider_net.txt
5508F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005509
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005510SPU FILE SYSTEM
5511P: Jeremy Kerr
5512M: jk@ozlabs.org
5513L: linuxppc-dev@ozlabs.org
5514L: cbe-oss-dev@ozlabs.org
5515W: http://www.ibm.com/developerworks/power/cell/
5516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005517F: Documentation/filesystems/spufs.txt
5518F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005519
Phillip Lougherfc555842009-01-05 08:46:29 +00005520SQUASHFS FILE SYSTEM
5521P: Phillip Lougher
5522M: phillip@lougher.demon.co.uk
5523L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5524W: http://squashfs.org.uk
5525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: Documentation/filesystems/squashfs.txt
5527F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005528
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529SRM (Alpha) environment access
5530P: Jan-Benedict Glaw
5531M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
Linus Torvalds26e9a392008-10-17 09:50:12 -07005535STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005536P: Greg Kroah-Hartman
5537M: greg@kroah.com
5538P: Chris Wright
5539M: chrisw@sous-sol.org
5540L: stable@kernel.org
5541S: Maintained
5542
Linus Torvalds26e9a392008-10-17 09:50:12 -07005543STAGING SUBSYSTEM
5544P: Greg Kroah-Hartman
5545M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005546T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005547L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005550
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551STARFIRE/DURALAN NETWORK DRIVER
5552P: Ion Badulescu
5553M: ionut@cs.columbia.edu
5554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005555F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
5557STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5558W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005559S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005560F: drivers/net/wireless/strip.c
5561F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
5563STRADIS MPEG-2 DECODER DRIVER
5564P: Nathan Laredo
5565M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566W: http://www.stradis.com/
5567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005568F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005569
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005570SUN3/3X
5571P: Sam Creasey
5572M: sammy@sammy.net
5573W: http://sammy.net/sun3/
5574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: arch/m68k/kernel/*sun3*
5576F: arch/m68k/sun3*/
5577F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005578
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005579SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580P: Paul Mundt
5581M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005582L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005584T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005585S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005586F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005587F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005588F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005590SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005591P: Len Brown
5592M: len.brown@intel.com
5593P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005594M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005595P: Rafael J. Wysocki
5596M: rjw@sisk.pl
5597L: linux-pm@lists.linux-foundation.org
5598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005599F: Documentation/power/
5600F: arch/x86/kernel/acpi/
5601F: drivers/base/power/
5602F: kernel/power/
5603F: include/linux/suspend.h
5604F: include/linux/freezer.h
5605F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606
5607SVGA HANDLING
5608P: Martin Mares
5609M: mj@ucw.cz
5610L: linux-video@atrey.karlin.mff.cuni.cz
5611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005612F: Documentation/svga.txt
5613F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
5615SYSV FILESYSTEM
5616P: Christoph Hellwig
5617M: hch@infradead.org
5618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005619F: Documentation/filesystems/sysv-fs.txt
5620F: fs/sysv/
5621F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622
Alan Cox4e688522008-04-30 00:52:11 -07005623TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005624P: Balbir Singh
5625M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005627F: Documentation/accounting/taskstats*
5628F: include/linux/taskstats*
5629F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005630
Stephen Hemminger781b4562006-07-10 20:25:29 -07005631TC CLASSIFIER
5632P: Jamal Hadi Salim
5633M: hadi@cyberus.ca
5634L: netdev@vger.kernel.org
5635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005636F: include/linux/pkt_cls.h
5637F: include/net/pkt_cls.h
5638F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005639
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005640TCP LOW PRIORITY MODULE
5641P: Wong Hoi Sing, Edison
5642M: hswong3i@gmail.com
5643P: Hung Hing Lun, Mike
5644M: hlhung3i@gmail.com
5645W: http://tcp-lp-mod.sourceforge.net/
5646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005647F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005648
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005649TEHUTI ETHERNET DRIVER
5650P: Alexander Indenbaum
5651M: baum@tehutinetworks.net
5652P: Andy Gospodarek
5653M: andy@greyhouse.net
5654L: netdev@vger.kernel.org
5655S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005656F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005657
Alan Cox4e688522008-04-30 00:52:11 -07005658Telecom Clock Driver for MCPL0010
5659P: Mark Gross
5660M: mark.gross@intel.com
5661S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005663
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005664TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005665P: Chris Zankel
5666M: chris@zankel.net
5667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005669
5670THINKPAD ACPI EXTRAS DRIVER
5671P: Henrique de Moraes Holschuh
5672M: ibm-acpi@hmh.eng.br
5673L: ibm-acpi-devel@lists.sourceforge.net
5674W: http://ibm-acpi.sourceforge.net
5675W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005676T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005679
Alex Dubov4020f2d2006-10-04 02:15:37 -07005680TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005681P: Alex Dubov
5682M: oakad@yahoo.com
5683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005684F: drivers/misc/tifm*
5685F: drivers/mmc/host/tifm_sd.c
5686F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005687
Per Lidene86eaa32006-01-12 16:45:18 +01005688TIPC NETWORK LAYER
5689P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005690M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005691P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005692M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005693P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005694M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005695L: tipc-discussion@lists.sourceforge.net
5696W: http://tipc.sourceforge.net/
5697W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005698T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005700F: include/linux/tipc*.h
5701F: include/net/tipc/
5702F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704TLAN NETWORK DRIVER
5705P: Samuel Chessman
5706M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005707L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708W: http://sourceforge.net/projects/tlan/
5709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005710F: Documentation/networking/tlan.txt
5711F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005713TOMOYO SECURITY MODULE
5714P: Kentaro Takeda
5715M: takedakn@nttdata.co.jp
5716P: Tetsuo Handa
5717M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005718L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5719L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5720L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5721W: http://tomoyo.sourceforge.jp/
5722T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005724F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005725
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005727S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005728F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729
5730TOSHIBA SMM DRIVER
5731P: Jonathan Buzzard
5732M: jonathan@buzzard.org.uk
5733L: tlinux-users@tce.toshiba-dme.co.jp
5734W: http://www.buzzard.org.uk/toshiba/
5735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005736F: drivers/char/toshiba.c
5737F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Pierre Ossmand719f902009-03-24 21:06:09 +01005739TMIO MMC DRIVER
5740P: Ian Molton
5741M: ian@mnementh.co.uk
5742S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005743F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005744
Hugh Dickins98f32602009-05-21 20:33:58 +01005745TMPFS (SHMEM FILESYSTEM)
5746P: Hugh Dickins
5747M: hugh.dickins@tiscali.co.uk
5748L: linux-mm@kvack.org
5749S: Maintained
5750F: include/linux/shmem_fs.h
5751F: mm/shmem.c
5752
Alan Cox4e688522008-04-30 00:52:11 -07005753TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005754P: Debora Velarde
5755M: debora@linux.vnet.ibm.com
5756P: Rajiv Andrade
5757M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005758W: http://tpmdd.sourceforge.net
5759P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005760M: m.selhorst@sirrix.com
5761W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005762L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005764F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005765
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005767P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005768M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005769T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005771F: drivers/char/tty_*
5772F: drivers/serial/serial_core.c
5773F: include/linux/serial_core.h
5774F: include/linux/serial.h
5775F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776
Alan Cox4e688522008-04-30 00:52:11 -07005777TTY LAYER
5778P: Alan Cox
5779M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005780S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005781T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005782
Grant Grundler740db6d2008-02-17 11:53:49 -07005783TULIP NETWORK DRIVERS
5784P: Grant Grundler
5785M: grundler@parisc-linux.org
5786P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005787M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005788L: netdev@vger.kernel.org
5789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005790F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
5792TUN/TAP driver
5793P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005794M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795L: vtun@office.satix.net
5796W: http://vtun.sourceforge.net/tun
5797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005798F: Documentation/networking/tuntap.txt
5799F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005801TURBOCHANNEL SUBSYSTEM
5802P: Maciej W. Rozycki
5803M: macro@linux-mips.org
5804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005805F: drivers/tc/
5806F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808U14-34F SCSI DRIVER
5809P: Dario Ballabio
5810M: ballabio_dario@emc.com
5811L: linux-scsi@vger.kernel.org
5812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005813F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005815UBI FILE SYSTEM (UBIFS)
5816P: Artem Bityutskiy
5817M: dedekind@infradead.org
5818P: Adrian Hunter
5819M: ext-adrian.hunter@nokia.com
5820L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005821T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005822W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/filesystems/ubifs.txt
5825F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005826
Alan Coxcc2020e2008-05-19 14:21:51 +01005827UCLINUX (AND M68KNOMMU)
5828P: Greg Ungerer
5829M: gerg@uclinux.org
5830W: http://www.uclinux.org/
5831L: uclinux-dev@uclinux.org (subscribers-only)
5832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005833F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005834
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005835UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005836P: Yoshinori Sato
5837M: ysato@users.sourceforge.jp
5838W: http://uclinux-h8.sourceforge.jp/
5839S: Supported
5840
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005842P: Jan Kara
5843M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844W: http://linux-udf.sourceforge.net
5845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: Documentation/filesystems/udf.txt
5847F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Alan Coxcc2020e2008-05-19 14:21:51 +01005849UFS FILESYSTEM
5850P: Evgeniy Dushistov
5851M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005853F: Documentation/filesystems/ufs.txt
5854F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005855
David Vrabel18332a82008-09-17 16:34:44 +01005856ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5857P: David Vrabel
5858M: david.vrabel@csr.com
5859L: linux-usb@vger.kernel.org
5860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005861F: drivers/uwb/*
5862F: include/linux/uwb.h
5863F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005864
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865UNIFORM CDROM DRIVER
5866P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005867M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868W: http://www.kernel.dk
5869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: Documentation/cdrom/
5871F: drivers/cdrom/cdrom.c
5872F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005874UNSORTED BLOCK IMAGES (UBI)
5875P: Artem Bityutskiy
5876M: dedekind@infradead.org
5877W: http://www.linux-mtd.infradead.org/
5878L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005879T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005880S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005881F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005882F: include/linux/mtd/ubi.h
5883F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005884
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885USB ACM DRIVER
5886P: Oliver Neukum
5887M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005888L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: Documentation/usb/acm.txt
5891F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892
5893USB BLOCK DRIVER (UB ub)
5894P: Pete Zaitcev
5895M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005896L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005898F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900USB CDC ETHERNET DRIVER
5901P: Greg Kroah-Hartman
5902M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005903L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005904S: Maintained
5905W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005906F: drivers/net/usb/cdc_*.c
5907F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005908
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005909USB CYPRESS C67X00 DRIVER
5910P: Peter Korsgaard
5911M: jacmet@sunsite.dk
5912L: linux-usb@vger.kernel.org
5913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005915
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005916USB DAVICOM DM9601 DRIVER
5917P: Peter Korsgaard
5918M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005919L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005920W: http://www.linux-usb.org/usbnet
5921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005923
Alan Coxcc2020e2008-05-19 14:21:51 +01005924USB DIAMOND RIO500 DRIVER
5925P: Cesar Miquel
5926M: miquel@df.uba.ar
5927L: rio500-users@lists.sourceforge.net
5928W: http://rio500.sourceforge.net
5929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005930F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005931
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932USB EHCI DRIVER
5933P: David Brownell
5934M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005935L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005936S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005937F: Documentation/usb/ehci.txt
5938F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
Luca Risolia7ce08c92006-01-11 02:06:59 +00005940USB ET61X[12]51 DRIVER
5941P: Luca Risolia
5942M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005943L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005944L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005945T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005946W: http://www.linux-projects.org
5947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005948F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005949
David Brownell69ae9e32006-11-14 02:03:31 -08005950USB GADGET/PERIPHERAL SUBSYSTEM
5951P: David Brownell
5952M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005953L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005954W: http://www.linux-usb.org/gadget
5955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005956F: drivers/usb/gadget/
5957F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005958
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005959USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005960P: Jiri Kosina
5961M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005962L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005963T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005965F: Documentation/usb/hiddev.txt
5966F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Olav Kongas959eea22005-11-03 17:38:14 +02005968USB ISP116X DRIVER
5969P: Olav Kongas
5970M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005971L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005973F: drivers/usb/host/isp116x*
5974F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005975
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976USB KAWASAKI LSI DRIVER
5977P: Oliver Neukum
5978M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005979L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005981F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982
5983USB MASS STORAGE DRIVER
5984P: Matthew Dharm
5985M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005986L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005987L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988S: Maintained
5989W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005990F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991
5992USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005993P: David Brownell
5994M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005995L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005996S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005997F: Documentation/usb/ohci.txt
5998F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999
Matthias Urlichsba460e42005-07-14 00:33:47 -07006000USB OPTION-CARD DRIVER
6001P: Matthias Urlichs
6002M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006003L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007USB OV511 DRIVER
6008P: Mark McClelland
6009M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006010L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011W: http://alpha.dyndns.org/ov511/
6012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006013F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015USB PEGASUS DRIVER
6016P: Petko Manolov
6017M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006018L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006019L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020W: http://pegasus2.sourceforge.net/
6021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006022F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006024USB PRINTER DRIVER (usblp)
6025P: Pete Zaitcev
6026M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006027L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006028S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006029F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
6031USB RTL8150 DRIVER
6032P: Petko Manolov
6033M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006034L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006035L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036W: http://pegasus2.sourceforge.net/
6037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006038F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039
6040USB SE401 DRIVER
6041P: Jeroen Vreeken
6042M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006043L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044W: http://www.chello.nl/~j.vreeken/se401/
6045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006046F: Documentation/video4linux/se401.txt
6047F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
Alan Cox4e688522008-04-30 00:52:11 -07006049USB SERIAL BELKIN F5U103 DRIVER
6050P: William Greathouse
6051M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006052L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006055
6056USB SERIAL CYPRESS M8 DRIVER
6057P: Lonnie Mendez
6058M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006059L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006060S: Maintained
6061W: http://geocities.com/i0xox0i
6062W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006063F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006064
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065USB SERIAL CYBERJACK DRIVER
6066P: Matthias Bruestle and Harald Welte
6067M: support@reiner-sct.com
6068W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006070F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
6072USB SERIAL DIGI ACCELEPORT DRIVER
6073P: Peter Berger and Al Borchers
6074M: pberger@brimson.com
6075M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006076L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
6080USB SERIAL DRIVER
6081P: Greg Kroah-Hartman
6082M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006083L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006085F: Documentation/usb/usb-serial.txt
6086F: drivers/usb/serial/generic.c
6087F: drivers/usb/serial/usb-serial.c
6088F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6091P: Gary Brubaker
6092M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006093L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096
6097USB SERIAL KEYSPAN DRIVER
6098P: Greg Kroah-Hartman
6099M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006100L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101W: http://www.kroah.com/linux/
6102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006103F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
6105USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006106P: Support Department
6107M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006108L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109W: http://www.connecttech.com
6110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006111F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006113USB SMSC95XX ETHERNET DRIVER
6114P: Steve Glendinning
6115M: steve.glendinning@smsc.com
6116L: netdev@vger.kernel.org
6117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006118F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006119
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006120USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121P: Luca Risolia
6122M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006123L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006124L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006125T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126W: http://www.linux-projects.org
6127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: Documentation/video4linux/sn9c102.txt
6129F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130
6131USB SUBSYSTEM
6132P: Greg Kroah-Hartman
6133M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006134L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006136T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/usb/
6139F: drivers/net/usb/
6140F: drivers/usb/
6141F: include/linux/usb.h
6142F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
6144USB UHCI DRIVER
6145P: Alan Stern
6146M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006147L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006149F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150
David Brownell69ae9e32006-11-14 02:03:31 -08006151USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152P: David Brownell
6153M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006154L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006155W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006157F: drivers/net/usb/usbnet.c
6158F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006160USB VIDEO CLASS
6161P: Laurent Pinchart
6162M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006163L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006164L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006165T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006166W: http://linux-uvc.berlios.de
6167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006168F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006169
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170USB W996[87]CF DRIVER
6171P: Luca Risolia
6172M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006173L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006174L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006175T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176W: http://www.linux-projects.org
6177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006178F: Documentation/video4linux/w9968cf.txt
6179F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006181USB WIRELESS RNDIS DRIVER (rndis_wlan)
6182P: Jussi Kivilinna
6183M: jussi.kivilinna@mbnet.fi
6184L: linux-wireless@vger.kernel.org
6185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006186F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006187
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006188USB XHCI DRIVER
6189P: Sarah Sharp
6190M: sarah.a.sharp@intel.com
6191L: linux-usb@vger.kernel.org
6192S: Supported
6193
Luca Risolia60f78052006-02-06 16:29:35 +00006194USB ZC0301 DRIVER
6195P: Luca Risolia
6196M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006197L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006198L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006199T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006200W: http://www.linux-projects.org
6201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: Documentation/video4linux/zc0301.txt
6203F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006204
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205USB ZD1201 DRIVER
6206P: Jeroen Vreeken
6207M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006208L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209W: http://linux-lc100020.sourceforge.net
6210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006213USB ZR364XX DRIVER
6214P: Antoine Jacquet
6215M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006216L: linux-usb@vger.kernel.org
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
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006219W: http://royale.zerezo.com/zr364xx/
6220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: Documentation/video4linux/zr364xx.txt
6222F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006223
Randy Dunlape7839f22008-10-12 16:11:45 -07006224USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006226M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227L: user-mode-linux-devel@lists.sourceforge.net
6228L: user-mode-linux-user@lists.sourceforge.net
6229W: http://user-mode-linux.sourceforge.net
6230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006231F: Documentation/uml/
6232F: arch/um/
6233F: fs/hostfs/
6234F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006235
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006236USERSPACE I/O (UIO)
6237P: Hans J. Koch
6238M: hjk@linutronix.de
6239P: Greg Kroah-Hartman
6240M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006242F: Documentation/DocBook/uio-howto.tmpl
6243F: drivers/uio/
6244F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006245
Karel Zakf899b0a2008-05-23 13:04:21 -07006246UTIL-LINUX-NG PACKAGE
6247P: Karel Zak
6248M: kzak@redhat.com
6249L: util-linux-ng@vger.kernel.org
6250W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006251T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006252S: Maintained
6253
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006254UVESAFB DRIVER
6255P: Michal Januszewski
6256M: spock@gentoo.org
6257L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6258W: http://dev.gentoo.org/~spock/projects/uvesafb/
6259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: Documentation/fb/uvesafb.txt
6261F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006262
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006263VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264P: OGAWA Hirofumi
6265M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006267F: Documentation/filesystems/vfat.txt
6268F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270VIA RHINE NETWORK DRIVER
6271P: Roger Luethi
6272M: rl@hellgate.ch
6273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275
Jean Delvare32c0a522005-09-22 21:47:58 +02006276VIAPRO SMBUS DRIVER
6277P: Jean Delvare
6278M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006279L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006281F: Documentation/i2c/busses/i2c-viapro
6282F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006283
Harald Weltef0bf7f62009-06-17 20:22:39 +02006284VIA SD/MMC CARD CONTROLLER DRIVER
6285P: Joseph Chan
6286M: JosephChan@via.com.tw
6287P: Harald Welte
6288M: HaraldWelte@viatech.com
6289S: Maintained
6290F: drivers/mmc/host/via-sdmmc.c
6291
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006292VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6293P: Joseph Chan
6294M: JosephChan@via.com.tw
6295P: Scott Fang
6296M: ScottFang@viatech.com.cn
6297L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006300
Francois Romieu01f20732007-01-26 00:57:17 -08006301VIA VELOCITY NETWORK DRIVER
6302P: Francois Romieu
6303M: romieu@fr.zoreil.com
6304L: netdev@vger.kernel.org
6305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006306F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Patrick McHardybe7f8272007-10-23 20:26:36 -07006308VLAN (802.1Q)
6309P: Patrick McHardy
6310M: kaber@trash.net
6311L: netdev@vger.kernel.org
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: drivers/net/macvlan.c
6314F: include/linux/if_*vlan.h
6315F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006316
Florian Fainelli55e331c2009-06-16 15:33:53 -07006317VLYNQ BUS
6318P: Florian Fainelli
6319M: florian@openwrt.org
6320L: openwrt-devel@lists.openwrt.org
6321S: Maintained
6322F: drivers/vlynq/vlynq.c
6323F: include/linux/vlynq.h
6324
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006325VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6326P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006327M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006328P: Mark Brown
6329M: broonie@opensource.wolfsonmicro.com
6330W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006331W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006332T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006334F: drivers/regulator/
6335F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006336
Juerg Haefligerab413192006-09-24 20:54:04 +02006337VT1211 HARDWARE MONITOR DRIVER
6338P: Juerg Haefliger
6339M: juergh@gmail.com
6340L: lm-sensors@lm-sensors.org
6341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006342F: Documentation/hwmon/vt1211
6343F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006344
Roger Lucas1de9e372005-11-26 20:20:05 +01006345VT8231 HARDWARE MONITOR DRIVER
6346P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006347M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006348L: lm-sensors@lm-sensors.org
6349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006350F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006351
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352W1 DALLAS'S 1-WIRE BUS
6353P: Evgeniy Polyakov
6354M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006356F: Documentation/w1/
6357F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Charles Spirakis13927072006-07-05 18:05:15 +02006359W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006360P: Marc Hulsman
6361M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006362L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/hwmon/w83791d
6365F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006366
Rudolf Marek61db0112006-12-12 18:18:30 +01006367W83793 HARDWARE MONITORING DRIVER
6368P: Rudolf Marek
6369M: r.marek@assembler.cz
6370L: lm-sensors@lm-sensors.org
6371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: Documentation/hwmon/w83793
6373F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006374
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375W83L51xD SD/MMC CARD INTERFACE DRIVER
6376P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006377M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006379F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006381WATCHDOG DEVICE DRIVERS
6382P: Wim Van Sebroeck
6383M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006384T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/watchdog/
6387F: drivers/watchdog/
6388F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006389
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6391P: Jean Tourrilhes
6392M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006393L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: Documentation/networking/wavelan.txt
6397F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398
6399WD7000 SCSI DRIVER
6400P: Miroslav Zagorac
6401M: zaga@fly.cc.fer.hr
6402L: linux-scsi@vger.kernel.org
6403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006404F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006406WIMAX STACK
6407P: Inaky Perez-Gonzalez
6408M: inaky.perez-gonzalez@intel.com
6409M: linux-wimax@intel.com
6410L: wimax@linuxwimax.org
6411S: Supported
6412W: http://linuxwimax.org
6413
David Vrabel18332a82008-09-17 16:34:44 +01006414WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6415P: David Vrabel
6416M: david.vrabel@csr.com
6417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006418F: include/linux/wlp.h
6419F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006420
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006421WISTRON LAPTOP BUTTON DRIVER
6422P: Miloslav Trmac
6423M: mitr@volny.cz
6424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006425F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006426
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427WL3501 WIRELESS PCMCIA CARD DRIVER
6428P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006429M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006430L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006431W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006433F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
Mark Brownfebf1df2008-04-02 00:51:09 -04006435WM97XX TOUCHSCREEN DRIVERS
6436P: Mark Brown
6437M: broonie@opensource.wolfsonmicro.com
6438P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006439M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006440L: linux-input@vger.kernel.org
6441T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6442W: http://opensource.wolfsonmicro.com/node/7
6443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006444F: drivers/input/touchscreen/*wm97*
6445F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006446
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447X.25 NETWORK LAYER
6448P: Henner Eisen
6449M: eis@baty.hanse.de
6450L: linux-x25@vger.kernel.org
6451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006452F: Documentation/networking/x25*
6453F: include/net/x25*
6454F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006456X86 ARCHITECTURE (32-BIT AND 64-BIT)
6457P: Thomas Gleixner
6458M: tglx@linutronix.de
6459P: Ingo Molnar
6460M: mingo@redhat.com
6461P: H. Peter Anvin
6462M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006463M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006464T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006466F: Documentation/x86/
6467F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006468
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006469XEN HYPERVISOR INTERFACE
6470P: Jeremy Fitzhardinge
6471M: jeremy@xensource.com
6472P: Chris Wright
6473M: chrisw@sous-sol.org
6474L: virtualization@lists.osdl.org
6475L: xen-devel@lists.xensource.com
6476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006477F: arch/x86/xen/
6478F: drivers/*/xen-*front.c
6479F: drivers/xen/
6480F: arch/x86/include/asm/xen/
6481F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006482
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483XFS FILESYSTEM
6484P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006485P: Felix Blyakher
6486M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006488L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006490T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006492F: Documentation/filesystems/xfs.txt
6493F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006495XILINX SYSTEMACE DRIVER
6496P: Grant Likely
6497M: grant.likely@secretlab.ca
6498W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006500F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006501
Peter Korsgaard238b8722006-12-06 20:35:17 -08006502XILINX UARTLITE SERIAL DRIVER
6503P: Peter Korsgaard
6504M: jacmet@sunsite.dk
6505L: linux-serial@vger.kernel.org
6506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006507F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006508
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509YAM DRIVER FOR AX.25
6510P: Jean-Paul Roubelat
6511M: jpr@f6fbb.org
6512L: linux-hams@vger.kernel.org
6513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006514F: drivers/net/hamradio/yam*
6515F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516
Henkaf64a5e2005-10-12 15:02:56 +02006517YEALINK PHONE DRIVER
6518P: Henk Vergonet
6519M: Henk.Vergonet@gmail.com
6520L: usbb2k-api-dev@nongnu.org
6521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006522F: Documentation/input/yealink.txt
6523F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525Z8530 DRIVER FOR AX.25
6526P: Joerg Reuter
6527M: jreuter@yaina.de
6528W: http://yaina.de/jreuter/
6529W: http://www.qsl.net/dl1bke/
6530L: linux-hams@vger.kernel.org
6531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006532F: Documentation/networking/z8530drv.txt
6533F: drivers/net/hamradio/*scc.c
6534F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006536ZD1211RW WIRELESS DRIVER
6537P: Daniel Drake
6538M: dsd@gentoo.org
6539P: Ulrich Kunitz
6540M: kune@deine-taler.de
6541W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006542L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006543L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006545F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006546
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006549L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006551T: Mercurial http://linuxtv.org/hg/v4l-dvb
6552S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006553F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006555ZS DECSTATION Z85C30 SERIAL DRIVER
6556P: Maciej W. Rozycki
6557M: macro@linux-mips.org
6558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006559F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006560
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561THE REST
6562P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006563M: torvalds@linux-foundation.org
6564L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006565T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006567F: *
6568F: */