blob: 88e8c00ede7f07a1a8cddbd2894a5303ba36ff73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
76P: Person
77M: Mail patches to
78L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
107P: Philip Blundell
108M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700109L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700111F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Steffen Klasserta6d89912007-08-10 14:05:27 -07001133C59X NETWORK DRIVER
114P: Steffen Klassert
115M: klassert@mathematik.tu-chemnitz.de
116L: netdev@vger.kernel.org
117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: Documentation/networking/vortex.txt
119F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213CR990 NETWORK DRIVER
122P: David Dillow
123M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129P: Adam Radford
130M: linuxraid@amcc.com
131L: linux-scsi@vger.kernel.org
132W: http://www.amcc.com
133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700134F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001363W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137P: Adam Radford
138M: linuxraid@amcc.com
139L: linux-scsi@vger.kernel.org
140W: http://www.amcc.com
141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700142F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
14453C700 AND 53C700-66 SCSI DRIVER
145P: James E.J. Bottomley
146M: James.Bottomley@HansenPartnership.com
147L: linux-scsi@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1516PACK NETWORK DRIVER FOR AX.25
152P: Andreas Koensgen
Ralf Baechle67332592009-07-17 04:47:19 +0000153M: ajk@comnets.uni-bremen.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154L: linux-hams@vger.kernel.org
155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700156F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588169 10/100/1000 GIGABIT ETHERNET DRIVER
159P: Francois Romieu
160M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Joe Perchesdc987922009-06-16 17:01:52 +0100166P: Alan Cox
167M: alan@lxorguk.ukuu.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168L: linux-serial@vger.kernel.org
169W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100170S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/serial/8250*
172F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
1748390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
175P: Paul Gortmaker
176M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700177L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: drivers/net/*8390*
180F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001829P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100183P: Eric Van Hensbergen
184M: ericvh@gmail.com
185P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500186M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100187P: Latchesar Ionkov
188M: lucho@ionkov.net
189L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500190W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700191T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700193F: Documentation/filesystems/9p.txt
194F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196A2232 SERIAL BOARD DRIVER
197P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198M: A2232@gmx.net
199L: linux-m68k@lists.linux-m68k.org
200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700201F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700203AACRAID SCSI RAID DRIVER
204P: Adaptec OEM Raid Solutions
205M: aacraid@adaptec.com
206L: linux-scsi@vger.kernel.org
207W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700209F: Documentation/scsi/aacraid.txt
210F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200213P: Hans de Goede
214M: j.w.r.degoede@hhs.nl
215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200218
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700219ABIT UGURU 3 HARDWARE MONITOR DRIVER
220P: Alistair John Strachan
221M: alistair@devzero.co.uk
222L: lm-sensors@lm-sensors.org
223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226ACENIC DRIVER
227P: Jes Sorensen
228M: jes@trained-monkey.org
229L: linux-acenic@sunsite.dk
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Peter Feuerere86435e2009-06-21 18:53:03 +0200233ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
234P: Peter Feuerer
235M: peter@piie.net
236W: http://piie.net/?section=acerhdf
237S: Maintained
238F: drivers/platform/x86/acerhdf.c
239
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000240ACER WMI LAPTOP EXTRAS
241P: Carlos Corbacho
242M: carlos@strangeworlds.co.uk
243L: aceracpi@googlegroups.com (subscribers-only)
244W: http://code.google.com/p/aceracpi
245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700246F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200249P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500250M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500251L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400252W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700253T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700255F: drivers/acpi/
256F: drivers/pnp/pnpacpi/
257F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500258
259ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400260P: Alexey Starikovskiy
261M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/battery.c
266F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500267
268ACPI EC DRIVER
269P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400270M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500271L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300272W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700274F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500275
276ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400277P: Zhang Rui
278M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500279L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300280W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700284ACPI PCI HOTPLUG DRIVER
285P: Kristen Carlson Accardi
286M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700287L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700289F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500290
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
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800606ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
607P: Lennert Buytenhek
608M: kernel@wantstofly.org
609L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
610S: Maintained
611
612ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
613P: Lennert Buytenhek
614M: kernel@wantstofly.org
615L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
616S: Maintained
617
Russell Kingd4275352009-04-16 14:05:27 +0100618ARM/CLKDEV SUPPORT
619P: Russell King
620M: linux@arm.linux.org.uk
621L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
622F: arch/arm/common/clkdev.c
623F: arch/arm/include/asm/clkdev.h
624
Mike Rapoportd48134e2008-08-20 09:03:26 +0100625ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100626P: Mike Rapoport
627M: mike@compulab.co.il
628L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
629S: Maintained
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631ARM/CORGI MACHINE SUPPORT
632P: Richard Purdie
633M: rpurdie@rpsys.net
634S: Maintained
635
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200636ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
637P: Paulius Zaleckas
638M: paulius.zaleckas@teltonika.lt
639L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700640T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200641S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300642F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200643
Russell Kingd4275352009-04-16 14:05:27 +0100644ARM/EBSA110 MACHINE SUPPORT
645P: Russell King
646M: linux@arm.linux.org.uk
647L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
648W: http://www.arm.linux.org.uk/
649S: Maintained
650F: arch/arm/mach-ebsa110/
651F: drivers/net/arm/am79c961a.*
652
Russell Kinga9da4f72008-07-12 21:42:04 +0100653ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
654P: Daniel Ribeiro
655M: drwyrm@gmail.com
656P: Stefan Schmidt
657M: stefan@openezx.org
658P: Harald Welte
659M: laforge@openezx.org
660L: openezx-devel@lists.openezx.org (subscribers-only)
661W: http://www.openezx.org/
662S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200663T: topgit git://git.openezx.org/openezx.git
664F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100665
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200666ARM/FARADAY FA526 PORT
667P: Paulius Zaleckas
668M: paulius.zaleckas@teltonika.lt
669L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
670S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300671F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200672
Russell Kingd4275352009-04-16 14:05:27 +0100673ARM/FOOTBRIDGE ARCHITECTURE
674P: Russell King
675M: linux@arm.linux.org.uk
676L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
677W: http://www.arm.linux.org.uk/
678S: Maintained
679F: arch/arm/include/asm/hardware/dec21285.h
680F: arch/arm/mach-footbridge/
681
Sascha Hauer86183a52008-07-24 23:50:35 +0200682ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
683P: Sascha Hauer
684M: kernel@pengutronix.de
685L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
686S: Maintained
687
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800688ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
689P: Lennert Buytenhek
690M: kernel@wantstofly.org
691L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
692S: Maintained
693
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100694ARM/GUMSTIX MACHINE SUPPORT
695P: Steve Sakoman
696M: sakoman@gmail.com
697L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
698S: Maintained
699
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200700ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
701P: Philipp Zabel
702M: philipp.zabel@gmail.com
703S: Maintained
704F: arch/arm/mach-pxa/hx4700.c
705F: arch/arm/mach-pxa/include/mach/hx4700.h
706
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100707ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200708P: Kristoffer Ericson
709M: kristoffer.ericson@gmail.com
710W: www.jlime.com
711S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100712
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713ARM/INTEL IOP32X ARM ARCHITECTURE
714P: Lennert Buytenhek
715M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100716P: Dan Williams
717M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800718L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100719S: Supported
720
721ARM/INTEL IOP33X ARM ARCHITECTURE
722P: Dan Williams
723M: dan.j.williams@intel.com
724L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
725S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800726
727ARM/INTEL IOP13XX ARM ARCHITECTURE
728P: Lennert Buytenhek
729M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100730P: Dan Williams
731M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800732L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100733S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800734
735ARM/INTEL IQ81342EX MACHINE SUPPORT
736P: Lennert Buytenhek
737M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100738P: Dan Williams
739M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800740L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100741S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800742
743ARM/INTEL IXP2000 ARM ARCHITECTURE
744P: Lennert Buytenhek
745M: kernel@wantstofly.org
746L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
747S: Maintained
748
749ARM/INTEL IXDP2850 MACHINE SUPPORT
750P: Lennert Buytenhek
751M: kernel@wantstofly.org
752L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
753S: Maintained
754
755ARM/INTEL IXP23XX ARM ARCHITECTURE
756P: Lennert Buytenhek
757M: kernel@wantstofly.org
758L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
759S: Maintained
760
761ARM/INTEL XSC3 (MANZANO) ARM CORE
762P: Lennert Buytenhek
763M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100764P: Dan Williams
765M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800766L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100767S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800768
769ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
770P: Lennert Buytenhek
771M: kernel@wantstofly.org
772L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
773S: Maintained
774
775ARM/LOGICPD PXA270 MACHINE SUPPORT
776P: Lennert Buytenhek
777M: kernel@wantstofly.org
778L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
779S: Maintained
780
Philipp Zabel3b8861712008-07-09 21:27:15 +0100781ARM/MAGICIAN MACHINE SUPPORT
782P: Philipp Zabel
783M: philipp.zabel@gmail.com
784S: Maintained
785
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200786ARM/MIOA701 MACHINE SUPPORT
787P: Robert Jarzmik
788M: robert.jarzmik@free.fr
789L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
790F: arch/arm/mach-pxa/mioa701.c
791S: Maintained
792
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100793ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
794P: Michael Petchkovsky
795M: mkpetch@internode.on.net
796S: Maintained
797
Andy Green9d762952009-05-19 06:41:42 -0300798ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
799P: Nelson Castillo
800M: arhuaco@freaks-unidos.net
801L: openmoko-kernel@lists.openmoko.org (subscribers-only)
802W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
803S: Supported
804
Dirk Opfer8459c152005-11-06 14:27:52 +0000805ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800806P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100807M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000808P: Dirk Opfer
809M: dirk@opfer-online.de
810S: Maintained
811
Marek Vasut54088bf2009-03-24 00:29:29 +0100812ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100813P: Marek Vasut
814M: marek.vasut@gmail.com
815W: http://hackndev.com
816S: Maintained
817
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200818ARM/PALM TREO 680 SUPPORT
819P: Tomas Cech
820M: sleep_walker@suse.cz
821W: http://hackndev.com
822S: Maintained
823
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100824ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700825P: Sergey Lapin
826M: slapin@ossfans.org
827W: http://hackndev.com
828S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830ARM/PLEB SUPPORT
831P: Peter Chubb
832M: pleb@gelato.unsw.edu.au
833W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
834S: Maintained
835
836ARM/PT DIGITAL BOARD PORT
837P: Stefan Eletzhofer
838M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700839L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840W: http://www.arm.linux.org.uk/
841S: Maintained
842
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800843ARM/RADISYS ENP2611 MACHINE SUPPORT
844P: Lennert Buytenhek
845M: kernel@wantstofly.org
846L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
847S: Maintained
848
Russell Kingd4275352009-04-16 14:05:27 +0100849ARM/RISCPC ARCHITECTURE
850P: Russell King
851M: linux@arm.linux.org.uk
852L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
853W: http://www.arm.linux.org.uk/
854S: Maintained
855F: arch/arm/common/time-acorn.c
856F: arch/arm/include/asm/hardware/entry-macro-iomd.S
857F: arch/arm/include/asm/hardware/ioc.h
858F: arch/arm/include/asm/hardware/iomd.h
859F: arch/arm/include/asm/hardware/memc.h
860F: arch/arm/mach-rpc/
861F: drivers/net/arm/ether*
862F: drivers/scsi/arm/
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864ARM/SHARK MACHINE SUPPORT
865P: Alexander Schulz
866M: alex@shark-linux.de
867W: http://www.shark-linux.de/shark.html
868S: Maintained
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870ARM/S3C2410 ARM ARCHITECTURE
871P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800872M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700873L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874W: http://www.fluff.org/ben/linux/
875S: Maintained
876
877ARM/S3C2440 ARM ARCHITECTURE
878P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800879M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700880L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881W: http://www.fluff.org/ben/linux/
882S: Maintained
883
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800884ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
885P: Lennert Buytenhek
886M: kernel@wantstofly.org
887L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
888S: Maintained
889
890ARM/THECUS N2100 MACHINE SUPPORT
891P: Lennert Buytenhek
892M: kernel@wantstofly.org
893L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
894S: Maintained
895
wanzongshun98ad6e32009-02-13 06:04:32 +0100896ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700897P: Wan ZongShun
898M: mcuos.com@gmail.com
899L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
900W: http://www.mcuos.com
901S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100902
Russell Kingd4275352009-04-16 14:05:27 +0100903ARM/VFP SUPPORT
904P: Russell King
905M: linux@arm.linux.org.uk
906L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
907W: http://www.arm.linux.org.uk/
908S: Maintained
909F: arch/arm/vfp/
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911ARPD SUPPORT
912P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700913L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700915F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500918P: Corentin Chary
919M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920P: Karol Kozimor
921M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000923W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700925F: arch/x86/kernel/acpi/boot.c
926F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400928ASUS ASB100 HARDWARE MONITOR DRIVER
929P: Mark M. Hoffman
930M: mhoffman@lightlink.com
931L: lm-sensors@lm-sensors.org
932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700933F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400934
Corentin Chary85091b72007-01-26 14:04:30 +0100935ASUS LAPTOP EXTRAS DRIVER
936P: Corentin Chary
937M: corentincj@iksaif.net
938L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000939W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700941F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100942
Andrew Morton953a6472008-11-06 12:53:28 -0800943ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700944P: Dan Williams
945M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100946P: Maciej Sosnowski
947M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700948W: http://sourceforge.net/projects/xscaleiop
949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700950F: Documentation/crypto/async-tx-api.txt
951F: crypto/async_tx/
952F: drivers/dma/
953F: include/linux/dmaengine.h
954F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700955
Randy Dunlape7839f22008-10-12 16:11:45 -0700956ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957P: Ed L. Cashin
958M: ecashin@coraid.com
959W: http://www.coraid.com/support/linux
960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700961F: Documentation/aoe/
962F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200964ATHEROS ATH5K WIRELESS DRIVER
965P: Jiri Slaby
966M: jirislaby@gmail.com
967P: Nick Kossifidis
968M: mickflemm@gmail.com
969P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700970M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400971P: Bob Copeland
972M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200973L: linux-wireless@vger.kernel.org
974L: ath5k-devel@lists.ath5k.org
975S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700976F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200977
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700978ATHEROS ATH9K WIRELESS DRIVER
979P: Luis R. Rodriguez
980M: lrodriguez@atheros.com
981P: Jouni Malinen
982M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400983P: Sujith Manoharan
984M: Sujith.Manoharan@atheros.com
985P: Vasanthakumar Thiagarajan
986M: vasanth@atheros.com
987P: Senthil Balasubramanian
988M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700989L: linux-wireless@vger.kernel.org
990L: ath9k-devel@lists.ath9k.org
991S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700992F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700993
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100994ATHEROS AR9170 WIRELESS DRIVER
995P: Christian Lamparter
996M: chunkeey@web.de
997L: linux-wireless@vger.kernel.org
998W: http://wireless.kernel.org/en/users/Drivers/ar9170
999S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001000F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001001
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001002ATI_REMOTE2 DRIVER
1003P: Ville Syrjala
1004M: syrjala@sci.fi
1005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001006F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001007
Chris Snook7ae115b2008-09-09 03:26:57 -04001008ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001009P: Jay Cliburn
1010M: jcliburn@gmail.com
1011P: Chris Snook
1012M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -04001013P: Jie Yang
1014M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001015L: atl1-devel@lists.sourceforge.net
1016W: http://sourceforge.net/projects/atl1
1017W: http://atl1.sourceforge.net
1018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001019F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021ATM
1022P: Chas Williams
1023M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -07001024L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001025L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026W: http://linux-atm.sourceforge.net
1027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001028F: drivers/atm/
1029F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Pierre Ossman272f1332007-05-14 21:25:26 +02001031ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001032P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001033M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001034L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1035W: http://www.atmel.com/products/AT91/
1036W: http://www.at91.com/
1037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001038F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001039
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001040ATMEL AT91 / AT32 MCI DRIVER
1041P: Nicolas Ferre
1042M: nicolas.ferre@atmel.com
1043S: Maintained
1044F: drivers/mmc/host/atmel-mci.c
1045F: drivers/mmc/host/atmel-mci-regs.h
1046
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001047ATMEL AT91 / AT32 SERIAL DRIVER
1048P: Haavard Skinnemoen
1049M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001051F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001052
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001053ATMEL LCDFB DRIVER
1054P: Nicolas Ferre
1055M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001056L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001058F: drivers/video/atmel_lcdfb.c
1059F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001060
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001061ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001062P: Haavard Skinnemoen
1063M: hskinnemoen@atmel.com
1064S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001065F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001066
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001067ATMEL SPI DRIVER
1068P: Haavard Skinnemoen
1069M: hskinnemoen@atmel.com
1070S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001071F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001072
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001073ATMEL USBA UDC DRIVER
1074P: Haavard Skinnemoen
1075M: hskinnemoen@atmel.com
1076L: kernel@avr32linux.org
1077W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001079F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081ATMEL WIRELESS DRIVER
1082P: Simon Kelley
1083M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001084L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085W: http://www.thekelleys.org.uk/atmel
1086W: http://atmelwlandriver.sourceforge.net/
1087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001088F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Chris Wrighta92b7b82005-07-07 18:12:23 -07001090AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001091P: Al Viro
1092M: viro@zeniv.linux.org.uk
1093P: Eric Paris
1094M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001095L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001096W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001097T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001099F: include/linux/audit.h
1100F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001101
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001102AUXILIARY DISPLAY DRIVERS
1103P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001104M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001105W: http://miguelojeda.es/auxdisplay.htm
1106W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001108F: drivers/auxdisplay/
1109F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001110
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001111AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001112P: Haavard Skinnemoen
1113M: hskinnemoen@atmel.com
1114W: http://www.atmel.com/products/AVR32/
1115W: http://avr32linux.org/
1116W: http://avrfreaks.net/
1117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001118F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001119
1120AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001121P: Haavard Skinnemoen
1122M: hskinnemoen@atmel.com
1123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001124F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126AX.25 NETWORK LAYER
1127P: Ralf Baechle
1128M: ralf@linux-mips.org
1129L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001130W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001132F: include/linux/ax25.h
1133F: include/net/ax25.h
1134F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001136B43 WIRELESS DRIVER
1137P: Michael Buesch
1138M: mb@bu3sch.de
1139P: Stefano Brivio
1140M: stefano.brivio@polimi.it
1141L: linux-wireless@vger.kernel.org
1142W: http://linuxwireless.org/en/users/Drivers/b43
1143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001144F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001145
1146B43LEGACY WIRELESS DRIVER
1147P: Larry Finger
1148M: Larry.Finger@lwfinger.net
1149P: Stefano Brivio
1150M: stefano.brivio@polimi.it
1151L: linux-wireless@vger.kernel.org
1152W: http://linuxwireless.org/en/users/Drivers/b43
1153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001154F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001155
Richard Purdie300abeb2007-02-07 22:21:07 +00001156BACKLIGHT CLASS/SUBSYSTEM
1157P: Richard Purdie
1158M: rpurdie@rpsys.net
1159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001160F: drivers/video/backlight/
1161F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001162
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001163BAYCOM/HDLCDRV DRIVERS FOR AX.25
1164P: Thomas Sailer
1165M: t.sailer@alumni.ethz.ch
1166L: linux-hams@vger.kernel.org
1167W: http://www.baycom.org/~tom/ham/ham.html
1168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001169F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001170
1171BEFS FILE SYSTEM
1172P: Sergey S. Kostyliov
1173M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001175F: Documentation/filesystems/befs.txt
1176F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001177
1178BFS FILE SYSTEM
1179P: Tigran A. Aivazian
1180M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001182F: Documentation/filesystems/bfs.txt
1183F: fs/bfs/
1184F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001185
Bryan Wu1394f032007-05-06 14:50:22 -07001186BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001187P: Mike Frysinger
1188M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001189L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001190W: http://blackfin.uclinux.org
1191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001192F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001193
Bryan Wue190d6b2007-07-17 14:43:44 +08001194BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001195P: Michael Hennerich
1196M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001197L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001198W: http://blackfin.uclinux.org
1199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001200F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001201
Mike Frysinger566da5b2007-06-11 15:31:30 +08001202BLACKFIN RTC DRIVER
1203P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001204M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001205L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001206W: http://blackfin.uclinux.org
1207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001208F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001209
Bryan Wu1394f032007-05-06 14:50:22 -07001210BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001211P: Sonic Zhang
1212M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001213L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001214W: http://blackfin.uclinux.org
1215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001216F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001217
Bryan Wu1e6d3202007-07-15 02:50:02 +08001218BLACKFIN WATCHDOG DRIVER
1219P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001220M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001221L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001222W: http://blackfin.uclinux.org
1223S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001224F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001225
Bryan Wud24ecfc2007-05-01 23:26:32 +02001226BLACKFIN I2C TWI DRIVER
1227P: Sonic Zhang
1228M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001229L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001230W: http://blackfin.uclinux.org/
1231S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001232F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234BLOCK LAYER
1235P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001236M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001237T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001239F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Joern Engel2b54aae2008-02-06 01:38:02 -08001241BLOCK2MTD DRIVER
1242P: Joern Engel
1243M: joern@lazybastard.org
1244L: linux-mtd@lists.infradead.org
1245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001246F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001247
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001248BLUETOOTH DRIVERS
1249P: Marcel Holtmann
1250M: marcel@holtmann.org
1251L: linux-bluetooth@vger.kernel.org
1252W: http://www.bluez.org/
1253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001254F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256BLUETOOTH SUBSYSTEM
1257P: Marcel Holtmann
1258M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001259L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001260W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001261T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001263F: net/bluetooth/
1264F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001267P: Jay Vosburgh
1268M: fubar@us.ibm.com
1269L: bonding-devel@lists.sourceforge.net
1270W: http://sourceforge.net/projects/bonding/
1271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001272F: drivers/net/bonding/
1273F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Gary Zambrano39105892006-06-22 17:26:20 -07001275BROADCOM B44 10/100 ETHERNET DRIVER
1276P: Gary Zambrano
1277M: zambrano@broadcom.com
1278L: netdev@vger.kernel.org
1279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001280F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001281
Michael Chan948c51e2006-06-04 02:51:39 -07001282BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1283P: Michael Chan
1284M: mchan@broadcom.com
1285L: netdev@vger.kernel.org
1286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001287F: drivers/net/bnx2.*
1288F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001289
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001290BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001291P: Eilon Greenstein
1292M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001293L: netdev@vger.kernel.org
1294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001295F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001296
Michael Chan948c51e2006-06-04 02:51:39 -07001297BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001298P: Matt Carlson
1299M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001300P: Michael Chan
1301M: mchan@broadcom.com
1302L: netdev@vger.kernel.org
1303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001304F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001305
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001306BSG (block layer generic sg v4 driver)
1307P: FUJITA Tomonori
1308M: fujita.tomonori@lab.ntt.co.jp
1309L: linux-scsi@vger.kernel.org
1310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001311F: block/bsg.c
1312F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001313
Michael Bueschff1d5c22008-07-25 01:46:10 -07001314BT8XXGPIO DRIVER
1315P: Michael Buesch
1316M: mb@bu3sch.de
1317W: http://bu3sch.de/btgpio.php
1318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001319F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001320
Joe Percheseb1eb042009-01-21 10:49:16 -05001321BTRFS FILE SYSTEM
1322P: Chris Mason
1323M: chris.mason@oracle.com
1324L: linux-btrfs@vger.kernel.org
1325W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001326T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001328F: Documentation/filesystems/btrfs.txt
1329F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001332P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001333M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001334L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001335W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001336T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: Documentation/video4linux/bttv/
1339F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
David Howellsa5432f52009-04-20 15:46:45 +01001341CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1342P: David Howells
1343M: dhowells@redhat.com
1344L: linux-cachefs@redhat.com
1345S: Supported
1346F: Documentation/filesystems/caching/cachefiles.txt
1347F: fs/cachefiles/
1348
Jonathan Corbet77d51402007-03-22 19:44:17 -03001349CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001350P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001351M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001352L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001353T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001355F: Documentation/video4linux/cafe_ccic
1356F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001357
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001358CALGARY x86-64 IOMMU
1359P: Muli Ben-Yehuda
1360M: muli@il.ibm.com
1361P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001362M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001363L: discuss@x86-64.org
1364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001365F: arch/x86/kernel/pci-calgary_64.c
1366F: arch/x86/kernel/tce_64.c
1367F: arch/x86/include/asm/calgary.h
1368F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001369
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001370CAN NETWORK LAYER
1371P: Urs Thuermann
1372M: urs.thuermann@volkswagen.de
1373P: Oliver Hartkopp
1374M: oliver.hartkopp@volkswagen.de
1375L: socketcan-core@lists.berlios.de (subscribers-only)
1376W: http://developer.berlios.de/projects/socketcan/
1377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001378F: drivers/net/can/
1379F: include/linux/can/
1380F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001381
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001382CAN NETWORK DRIVERS
1383P: Wolfgang Grandegger
1384M: wg@grandegger.com
1385L: socketcan-core@lists.berlios.de (subscribers-only)
1386W: http://developer.berlios.de/projects/socketcan/
1387S: Maintained
1388
Arnd Bergmannb8154542008-05-16 11:10:59 +02001389CELL BROADBAND ENGINE ARCHITECTURE
1390P: Arnd Bergmann
1391M: arnd@arndb.de
1392L: linuxppc-dev@ozlabs.org
1393L: cbe-oss-dev@ozlabs.org
1394W: http://www.ibm.com/developerworks/power/cell/
1395S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001396F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001397F: arch/powerpc/include/asm/spu*.h
1398F: arch/powerpc/oprofile/*cell*
1399F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001400
David Vrabel18332a82008-09-17 16:34:44 +01001401CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1402P: David Vrabel
1403M: david.vrabel@csr.com
1404L: linux-usb@vger.kernel.org
1405S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001406F: Documentation/usb/WUSB-Design-overview.txt
1407F: Documentation/usb/wusb-cbaf
1408F: drivers/usb/wusbcore/
1409F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001410
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001411CFAG12864B LCD DRIVER
1412P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001413M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001414W: http://miguelojeda.es/auxdisplay.htm
1415W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001417F: drivers/auxdisplay/cfag12864b.c
1418F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001419
1420CFAG12864BFB LCD FRAMEBUFFER DRIVER
1421P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001422M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001423W: http://miguelojeda.es/auxdisplay.htm
1424W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001426F: drivers/auxdisplay/cfag12864bfb.c
1427F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001428
Johannes Berg704232c2007-04-23 12:20:05 -07001429CFG80211 and NL80211
1430P: Johannes Berg
1431M: johannes@sipsolutions.net
1432L: linux-wireless@vger.kernel.org
1433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001434F: include/linux/nl80211.h
1435F: include/net/cfg80211.h
1436F: net/wireless/*
1437X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001438
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001439CHECKPATCH
1440P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001441M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001443F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001444
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001445CISCO 10G ETHERNET DRIVER
1446P: Scott Feldman
1447M: scofeldm@cisco.com
1448P: Joe Eykholt
1449M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001451F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001452
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001453CIRRUS LOGIC EP93XX ETHERNET DRIVER
1454P: Lennert Buytenhek
1455M: kernel@wantstofly.org
1456L: netdev@vger.kernel.org
1457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001459
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001460CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1461P: Lennert Buytenhek
1462M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001463L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001465F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001466
Timur Tabid9e9d822008-04-24 08:45:26 +10001467CIRRUS LOGIC CS4270 SOUND DRIVER
1468P: Timur Tabi
1469M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001470L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001472F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1475P: Cirrus Logic Corporation (kernel 2.2 driver)
1476M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1477P: Nils Faerber (port to kernel 2.4)
1478M: Nils Faerber <nils@kernelconcepts.de>
1479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001480F: Documentation/input/cs461x.txt
1481F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Russell Kingd4275352009-04-16 14:05:27 +01001483CLK API
1484P: Russell King
1485M: linux@arm.linux.org.uk
1486F: include/linux/clk.h
1487
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001488CISCO FCOE HBA DRIVER
1489P: Abhijeet Joglekar
1490M: abjoglek@cisco.com
1491P: Joe Eykholt
1492M: jeykholt@cisco.com
1493L: linux-scsi@vger.kernel.org
1494S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001495F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497CODA FILE SYSTEM
1498P: Jan Harkes
1499M: jaharkes@cs.cmu.edu
1500M: coda@cs.cmu.edu
1501L: codalist@coda.cs.cmu.edu
1502W: http://www.coda.cs.cmu.edu/
1503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001504F: Documentation/filesystems/coda.txt
1505F: fs/coda/
1506F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001508COMMON INTERNET FILE SYSTEM (CIFS)
1509P: Steve French
1510M: sfrench@samba.org
1511L: linux-cifs-client@lists.samba.org
1512L: samba-technical@lists.samba.org
1513W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001514T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001515S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001516F: Documentation/filesystems/cifs.txt
1517F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519COMPACTPCI HOTPLUG CORE
1520P: Scott Murray
1521M: scottm@somanetworks.com
1522M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001523L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001525F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1528P: Scott Murray
1529M: scottm@somanetworks.com
1530M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001531L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001533F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535COMPACTPCI HOTPLUG GENERIC DRIVER
1536P: Scott Murray
1537M: scottm@somanetworks.com
1538M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001539L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001541F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001543COMPAL LAPTOP SUPPORT
1544P: Cezary Jackiewicz
1545M: cezary.jackiewicz@gmail.com
1546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001547F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549COMPUTONE INTELLIPORT MULTIPORT CARD
1550P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001551M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001554F: Documentation/serial/computone.txt
1555F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Simon Arlott949be0f2007-03-06 02:47:46 -08001557CONEXANT ACCESSRUNNER USB DRIVER
1558P: Simon Arlott
1559M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001560L: accessrunner-general@lists.sourceforge.net
1561W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001563F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001564
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001565CONFIGFS
1566P: Joel Becker
1567M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001569F: fs/configfs/
1570F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001571
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001572CONNECTOR
1573P: Evgeniy Polyakov
1574M: zbr@ioremap.net
1575L: netdev@vger.kernel.org
1576S: Maintained
1577F: drivers/connector/
1578
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001579CONTROL GROUPS (CGROUPS)
1580P: Paul Menage
1581M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001582P: Li Zefan
1583M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001584L: containers@lists.linux-foundation.org
1585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: include/linux/cgroup*
1587F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001588F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001589
Rudolf Marekbebe4672007-05-08 17:22:02 +02001590CORETEMP HARDWARE MONITORING DRIVER
1591P: Rudolf Marek
1592M: r.marek@assembler.cz
1593L: lm-sensors@lm-sensors.org
1594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001595F: Documentation/hwmon/coretemp
1596F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598COSA/SRP SYNC SERIAL DRIVER
1599P: Jan "Yenya" Kasprzak
1600M: kas@fi.muni.cz
1601W: http://www.fi.muni.cz/~kas/cosa/
1602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001603F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Florian Fainelli4371ee32009-06-01 02:43:17 -07001605CPMAC ETHERNET DRIVER
1606P: Florian Fainelli
1607M: florian@openwrt.org
1608L: netdev@vger.kernel.org
1609S: Maintained
1610F: drivers/net/cpmac.c
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612CPU FREQUENCY DRIVERS
1613P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001614M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001615L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001617T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001619F: arch/x86/kernel/cpu/cpufreq/
1620F: drivers/cpufreq/
1621F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623CPUID/MSR DRIVER
1624P: H. Peter Anvin
1625M: hpa@zytor.com
1626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: arch/x86/kernel/cpuid.c
1628F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Paul Jacksoned90fb42005-09-27 21:45:37 -07001630CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001631P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001632M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001633W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001634W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001635S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001636F: Documentation/cgroups/cpusets.txt
1637F: include/linux/cpuset.h
1638F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001641W: http://sourceforge.net/projects/cramfs/
1642S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001643F: Documentation/filesystems/cramfs.txt
1644F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646CRIS PORT
1647P: Mikael Starvik
1648M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001649P: Jesper Nilsson
1650M: jesper.nilsson@axis.com
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001651L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652W: http://developer.axis.com
1653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001654F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656CRYPTO API
1657P: Herbert Xu
1658M: herbert@gondor.apana.org.au
1659P: David S. Miller
1660M: davem@davemloft.net
1661L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001662T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: Documentation/crypto/
1665F: arch/*/crypto/
1666F: crypto/
1667F: drivers/crypto/
1668F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Neil Horman5b07bd52009-02-05 16:03:04 +11001670CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1671P: Neil Horman
1672M: nhorman@tuxdriver.com
1673L: linux-crypto@vger.kernel.org
1674S: Maintained
1675
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001676CS5535 Audio ALSA driver
1677P: Jaya Kumar
1678M: jayakumar.alsa@gmail.com
1679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001680F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001681
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001682CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001683P: Hans Verkuil
1684M: hverkuil@xs4all.nl
1685P: Andy Walls
1686M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001687L: ivtv-devel@ivtvdriver.org
1688L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001689L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001690T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001691W: http://linuxtv.org
1692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001693F: Documentation/video4linux/cx18.txt
1694F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001695
Steve Wisee5ec3782008-05-20 14:06:33 -07001696CXGB3 ETHERNET DRIVER (CXGB3)
1697P: Divy Le Ray
1698M: divy@chelsio.com
1699L: netdev@vger.kernel.org
1700W: http://www.chelsio.com
1701S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001702F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001703
1704CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1705P: Steve Wise
1706M: swise@chelsio.com
1707L: general@lists.openfabrics.org
1708W: http://www.openfabrics.org
1709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001710F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712CYBERPRO FB DRIVER
1713P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001714M: linux@arm.linux.org.uk
1715L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716W: http://www.arm.linux.org.uk/
1717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001718F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720CYCLADES 2X SYNC CARD DRIVER
1721P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001722M: acme@ghostprotocols.net
1723W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001725F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001729S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001730F: drivers/char/cyclades.c
1731F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001735S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001736F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738DAMA SLAVE for AX.25
1739P: Joerg Reuter
1740M: jreuter@yaina.de
1741W: http://yaina.de/jreuter/
1742W: http://www.qsl.net/dl1bke/
1743L: linux-hams@vger.kernel.org
1744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001745F: net/ax25/af_ax25.c
1746F: net/ax25/ax25_dev.c
1747F: net/ax25/ax25_ds_*
1748F: net/ax25/ax25_in.c
1749F: net/ax25/ax25_out.c
1750F: net/ax25/ax25_timer.c
1751F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001753DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1754P: Tobias Ringstrom
1755M: tori@unhappy.mine.nu
1756L: netdev@vger.kernel.org
1757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001758F: Documentation/networking/dmfe.txt
1759F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001760
1761DC390/AM53C974 SCSI driver
1762P: Kurt Garloff
1763M: garloff@suse.de
1764W: http://www.garloff.de/kurt/linux/dc390/
1765P: Guennadi Liakhovetski
1766M: g.liakhovetski@gmx.de
1767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001768F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770DC395x SCSI driver
1771P: Oliver Neukum
1772M: oliver@neukum.name
1773P: Ali Akcaagac
1774M: aliakc@web.de
1775P: Jamie Lenehan
1776M: lenehan@twibble.org
1777W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001778L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779L: http://lists.twibble.org/mailman/listinfo/dc395x/
1780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001781F: Documentation/scsi/dc395x.txt
1782F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001784DCCP PROTOCOL
1785P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001786M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001787L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001788W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001790F: include/linux/dccp.h
1791F: include/linux/tfrc.h
1792F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001795P: Christine Caulfield
1796M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797W: http://linux-decnet.sourceforge.net
1798L: linux-decnet-user@lists.sourceforge.net
1799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001800F: Documentation/networking/decnet.txt
1801F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803DEFXX FDDI NETWORK DRIVER
1804P: Maciej W. Rozycki
1805M: macro@linux-mips.org
1806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001807F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001809DELL LAPTOP DRIVER
1810P: Matthew Garrett
1811M: mjg59@srcf.ucam.org
1812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001813F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815DELL LAPTOP SMM DRIVER
1816P: Massimo Dal Zotto
1817M: dz@debian.org
1818W: http://www.debian.org/~dz/i8k/
1819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001820F: drivers/char/i8k.c
1821F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Doug Warzecha90563ec2005-09-06 15:17:15 -07001823DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1824P: Doug Warzecha
1825M: Douglas_Warzecha@dell.com
1826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001827F: Documentation/dcdbas.txt
1828F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001829
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001830DELL WMI EXTRAS DRIVER
1831P: Matthew Garrett
1832M: mjg59@srcf.ucam.org
1833S: Maintained
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835DEVICE NUMBER REGISTRY
1836P: Torben Mathiasen
1837M: device@lanana.org
1838W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839S: Maintained
1840
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001841DEVICE-MAPPER (LVM)
1842P: Alasdair Kergon
1843L: dm-devel@redhat.com
1844W: http://sources.redhat.com/dm
1845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001846F: Documentation/device-mapper/
1847F: drivers/md/dm*
1848F: include/linux/device-mapper.h
1849F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851DIGI INTL. EPCA DRIVER
1852P: Digi International, Inc
1853M: Eng.Linux@digi.com
1854L: Eng.Linux@digi.com
1855W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001856S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001857F: Documentation/serial/digiepca.txt
1858F: drivers/char/epca*
1859F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Randy Dunlape7839f22008-10-12 16:11:45 -07001861DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001862P: Eric Paris
1863M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001865F: Documentation/filesystems/dnotify.txt
1866F: fs/notify/dnotify/
1867F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869DISK GEOMETRY AND PARTITION HANDLING
1870P: Andries Brouwer
1871M: aeb@cwi.nl
1872W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1873W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1874W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1875S: Maintained
1876
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001877DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878P: Jan Kara
1879M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001881F: Documentation/filesystems/quota.txt
1882F: fs/quota/
1883F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Randy Dunlape7839f22008-10-12 16:11:45 -07001885DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001886P: Christine Caulfield
1887M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001888P: David Teigland
1889M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001890L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001891W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001892T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001894F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001895
Dan Williamsb3e5f262007-08-07 10:26:35 -07001896DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001897P: Maciej Sosnowski
1898M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001899P: Dan Williams
1900M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001901S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001902F: drivers/dma/
1903F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001904
Juerg Haefligerb8250372007-06-09 10:11:16 -04001905DME1737 HARDWARE MONITOR DRIVER
1906P: Juerg Haefliger
1907M: juergh@gmail.com
1908L: lm-sensors@lm-sensors.org
1909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001910F: Documentation/hwmon/dme1737
1911F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001912
Martin Waitzba483d52005-06-17 13:20:59 -07001913DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001914P: Randy Dunlap
1915M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001916S: Maintained
1917
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001918DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001919P: Shaohua Li
1920M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001921L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001922S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001923F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001924
Joe Perches7d2c86b2009-04-07 20:59:01 -07001925DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001926P: Randy Dunlap
1927M: rdunlap@xenotime.net
1928L: linux-doc@vger.kernel.org
1929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001930F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932DOUBLETALK DRIVER
1933P: James R. Van Zandt
1934M: jrv@vanzandt.mv.com
1935L: blinux-list@redhat.com
1936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001937F: drivers/char/dtlk.c
1938F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001940DPT_I2O SCSI RAID DRIVER
1941P: Adaptec OEM Raid Solutions
1942M: aacraid@adaptec.com
1943L: linux-scsi@vger.kernel.org
1944W: http://www.adaptec.com/
1945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001946F: drivers/scsi/dpt*
1947F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949DRIVER CORE, KOBJECTS, AND SYSFS
1950P: Greg Kroah-Hartman
1951M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001952T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001954F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001955F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001956F: fs/sysfs/
1957F: include/linux/kobj*
1958F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960DRM DRIVERS
1961P: David Airlie
1962M: airlied@linux.ie
1963L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001964T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001966F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001969P: Francois Romieu
1970M: romieu@fr.zoreil.com
1971L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001973F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001975DZ DECSTATION DZ11 SERIAL DRIVER
1976P: Maciej W. Rozycki
1977M: macro@linux-mips.org
1978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001979F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981EATA-DMA SCSI DRIVER
1982P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001983M: mike@i-Connect.Net
1984L: linux-eata@i-connect.net
1985L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989EATA ISA/EISA/PCI SCSI DRIVER
1990P: Dario Ballabio
1991M: ballabio_dario@emc.com
1992L: linux-scsi@vger.kernel.org
1993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996EATA-PIO SCSI DRIVER
1997P: Michael Neuffer
1998M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001999L: linux-eata@i-connect.net
2000L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002002F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004EBTABLES
2005P: Bart De Schuymer
2006M: bart.de.schuymer@pandora.be
2007L: ebtables-user@lists.sourceforge.net
2008L: ebtables-devel@lists.sourceforge.net
2009W: http://ebtables.sourceforge.net/
2010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: include/linux/netfilter_bridge/ebt_*.h
2012F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Michael Halcrow237fead2006-10-04 02:16:22 -07002014ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002015P: Tyler Hicks
2016M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07002017P: Dustin Kirkland
2018M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08002019L: ecryptfs-devel@lists.launchpad.net
2020W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002021S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002022F: Documentation/filesystems/ecryptfs.txt
2023F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002024
Alan Coxda9bb1d2006-01-18 17:44:13 -08002025EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002026P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002027M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002028L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002029W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002031F: Documentation/edac.txt
2032F: drivers/edac/edac_*
2033F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002034
Borislav Petkovc476c232009-05-20 20:31:58 +02002035EDAC-AMD64
2036P: Doug Thompson
2037M: dougthompson@xmission.com
2038P: Borislav Petkov
2039M: borislav.petkov@amd.com
2040L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2041W: bluesmoke.sourceforge.net
2042S: Supported
2043F: drivers/edac/amd64_edac*
2044
Dave Peterson0e438e32006-03-26 01:38:55 -08002045EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002046P: Mark Gross
2047M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002048P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002049M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002050L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002051W: bluesmoke.sourceforge.net
2052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002053F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002054
2055EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002056P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002057M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002058L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002059W: bluesmoke.sourceforge.net
2060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002062
Douglas Thompson6bc78402007-07-19 01:50:12 -07002063EDAC-I82443BXGX
2064P: Tim Small
2065M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002066L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002067W: bluesmoke.sourceforge.net
2068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002069F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002070
2071EDAC-I3000
2072P: Jason Uhlenkott
2073M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002074L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002075W: bluesmoke.sourceforge.net
2076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002077F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002078
2079EDAC-I5000
2080P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002081M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002082L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002083W: bluesmoke.sourceforge.net
2084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002086
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002087EDAC-I5400
2088P: Mauro Carvalho Chehab
2089M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002090L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002091W: bluesmoke.sourceforge.net
2092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002093F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002094
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002095EDAC-I82975X
2096P: Ranganathan Desikan
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002097M: rdesikan@jetzbroadband.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002098P: Arvind R.
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002099M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002100L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002101W: bluesmoke.sourceforge.net
2102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002103F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002104
2105EDAC-PASEMI
2106P: Egor Martovetsky
2107M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002108L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002109W: bluesmoke.sourceforge.net
2110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002111F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002112
Dave Peterson0e438e32006-03-26 01:38:55 -08002113EDAC-R82600
2114P: Tim Small
2115M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002116L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002117W: bluesmoke.sourceforge.net
2118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002119F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002120
Eric Coopere59f8792008-03-13 12:55:46 +01002121EEEPC LAPTOP EXTRAS DRIVER
2122P: Corentin Chary
2123M: corentincj@iksaif.net
2124L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00002125W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002128
Josh Triplett0bee8d22006-07-30 03:03:58 -07002129EFS FILESYSTEM
2130W: http://aeschi.ch.eu.org/efs/
2131S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002132F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002133
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002134EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002135P: Hoang-Nam Nguyen
2136M: hnguyen@de.ibm.com
2137P: Christoph Raisch
2138M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002139L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002141F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002142
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002143EMBEDDED LINUX
2144P: Paul Gortmaker
2145M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002146P: Matt Mackall
2147M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002148P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002149M: dwmw2@infradead.org
2150L: linux-embedded@vger.kernel.org
2151S: Maintained
2152
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002153EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002154P: James Smart
2155M: james.smart@emulex.com
2156L: linux-scsi@vger.kernel.org
2157W: http://sourceforge.net/projects/lpfcxxxx
2158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002159F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002160
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002161ENE CB710 FLASH CARD READER DRIVER
2162P: Michał Mirosław
2163M: mirq-linux@rere.qmqm.pl
2164L: linux-kernel@vger.kernel.org
2165S: Maintained
2166F: drivers/misc/cb710/
2167F: drivers/mmc/host/cb710-mmc.*
2168F: include/linux/cb710.h
2169
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170EPSON 1355 FRAMEBUFFER DRIVER
2171P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002172M: ch@murgatroid.com
2173P: Christopher Hoover
2174M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002178EPSON S1D13XXX FRAMEBUFFER DRIVER
2179P: Kristoffer Ericson
2180M: kristoffer.ericson@gmail.com
2181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002182F: drivers/video/s1d13xxxfb.c
2183F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185ETHEREXPRESS-16 NETWORK DRIVER
2186P: Philip Blundell
2187M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002188L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002190F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
2192ETHERNET BRIDGE
2193P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002194M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002195L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002196W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: include/linux/netfilter_bridge/
2199F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201ETHERTEAM 16I DRIVER
2202P: Mika Kuoppala
2203M: miku@iki.fi
2204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002208L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002210F: Documentation/filesystems/ext2.txt
2211F: fs/ext2/
2212F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002215P: Stephen Tweedie
2216M: sct@redhat.com
2217P: Andrew Morton
2218M: akpm@linux-foundation.org
2219P: Andreas Dilger
2220M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002221L: linux-ext4@vger.kernel.org
2222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002223F: Documentation/filesystems/ext3.txt
2224F: fs/ext3/
2225F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002226
2227EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002228P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002229M: tytso@mit.edu
2230P: Andreas Dilger
2231M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002232L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002233W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002235F: Documentation/filesystems/ext4.txt
2236F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Jean Delvaree53004e2006-01-09 23:26:14 +01002238F71805F HARDWARE MONITORING DRIVER
2239P: Jean Delvare
2240M: khali@linux-fr.org
2241L: lm-sensors@lm-sensors.org
2242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002243F: Documentation/hwmon/f71805f
2244F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002245
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246FARSYNC SYNCHRONOUS DRIVER
2247P: Kevin Curtis
2248M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249W: http://www.farsite.co.uk/
2250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002251F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Akinobu Mitac5408b82007-04-23 14:41:20 -07002253FAULT INJECTION SUPPORT
2254P: Akinobu Mita
2255M: akinobu.mita@gmail.com
2256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002257F: Documentation/fault-injection/
2258F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002259
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002260FILE LOCKING (flock() and fcntl()/lockf())
2261P: Matthew Wilcox
2262M: matthew@wil.cx
2263L: linux-fsdevel@vger.kernel.org
2264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002265F: include/linux/fcntl.h
2266F: include/linux/fs.h
2267F: fs/fcntl.c
2268F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002269
2270FILESYSTEMS (VFS and infrastructure)
2271P: Alexander Viro
2272M: viro@zeniv.linux.org.uk
2273L: linux-fsdevel@vger.kernel.org
2274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002276
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002277FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2278P: Riku Voipio
2279M: riku.vipio@iki.fi
2280L: lm-sensors@lm-sensors.org
2281S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002282F: drivers/hwmon/f75375s.c
2283F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002284
Joe Perches7d2c86b2009-04-07 20:59:01 -07002285FIREWIRE SUBSYSTEM
2286P: Kristian Hoegsberg
2287M: krh@redhat.com
2288P: Stefan Richter
2289M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002290L: linux1394-devel@lists.sourceforge.net
2291W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002292T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/firewire/
2295F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002296
2297FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002298S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/firmware_class/
2300F: drivers/base/firmware*.c
2301F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002302
2303FPU EMULATOR
2304P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002305M: billm@melbpc.org.au
2306W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002309
2310FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2311P: Mike McLagan
2312M: mike.mclagan@linux.org
2313L: netdev@vger.kernel.org
2314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002315F: drivers/net/wan/dlci.c
2316F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002319L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002321S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002322F: Documentation/fb/
2323F: drivers/video/fb*
2324F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Zhang Wei173acc72008-03-01 07:42:48 -07002326FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002327P: Li Yang
2328M: leoli@freescale.com
2329P: Zhang Wei
2330M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002331L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002333F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002334
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002335FREESCALE I2C CPM DRIVER
2336P: Jochen Friedrich
2337M: jochen@scram.de
2338L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002339L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002341F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002342
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002343FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2344P: Sascha Hauer
2345M: kernel@pengutronix.de
2346L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2347L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002349F: arch/arm/plat-mxc/include/mach/imxfb.h
2350F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002351
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002352FREESCALE SOC FS_ENET DRIVER
2353P: Pantelis Antoniou
2354M: pantelis.antoniou@gmail.com
2355P: Vitaly Bordug
2356M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002357L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002358L: netdev@vger.kernel.org
2359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: drivers/net/fs_enet/
2361F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002362
Timur Tabid9e9d822008-04-24 08:45:26 +10002363FREESCALE QUICC ENGINE LIBRARY
2364P: Timur Tabi
2365M: timur@freescale.com
2366L: linuxppc-dev@ozlabs.org
2367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002368F: arch/powerpc/sysdev/qe_lib/
2369F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002370
Li Yanga7205b32007-04-23 10:38:18 -07002371FREESCALE HIGHSPEED USB DEVICE DRIVER
2372P: Li Yang
2373M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002374L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002375L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002377F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002378
Li Yangbeaf53b2007-05-25 13:54:02 +08002379FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2380P: Li Yang
2381M: leoli@freescale.com
2382L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002383L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002385F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002386
Timur Tabid9e9d822008-04-24 08:45:26 +10002387FREESCALE QUICC ENGINE UCC UART DRIVER
2388P: Timur Tabi
2389M: timur@freescale.com
2390L: linuxppc-dev@ozlabs.org
2391S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002393
2394FREESCALE SOC SOUND DRIVERS
2395P: Timur Tabi
2396M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002397L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002398L: linuxppc-dev@ozlabs.org
2399S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002400F: sound/soc/fsl/fsl*
2401F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403FREEVXFS FILESYSTEM
2404P: Christoph Hellwig
2405M: hch@infradead.org
2406W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002408F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Pavel Machek71038f52009-01-15 13:51:02 -08002410FREEZER
2411P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002412M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002413P: Rafael J. Wysocki
2414M: rjw@sisk.pl
2415L: linux-pm@lists.linux-foundation.org
2416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002417F: Documentation/power/freezing-of-tasks.txt
2418F: include/linux/freezer.h
2419F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002420
David Howellsa5432f52009-04-20 15:46:45 +01002421FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2422P: David Howells
2423M: dhowells@redhat.com
2424L: linux-cachefs@redhat.com
2425S: Supported
2426F: Documentation/filesystems/caching/
2427F: fs/fscache/
2428F: include/linux/fscache*.h
2429
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002430FTRACE
2431P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002432M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002433S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002434F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002435F: arch/*/*/*/ftrace.h
2436F: arch/*/kernel/ftrace.c
2437F: include/*/ftrace.h
2438F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002439
David Howells5ab7ffe2007-04-10 15:10:45 +01002440FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441P: David Howells
2442M: dhowells@redhat.com
2443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Jonathan Woithe20b93732008-06-11 10:14:56 +09302446FUJITSU LAPTOP EXTRAS
2447P: Jonathan Woithe
2448M: jwoithe@physics.adelaide.edu.au
2449L: linux-acpi@vger.kernel.org
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302452
Miklos Szeredi04578f12005-09-09 13:10:22 -07002453FUSE: FILESYSTEM IN USERSPACE
2454P: Miklos Szeredi
2455M: miklos@szeredi.hu
2456L: fuse-devel@lists.sourceforge.net
2457W: http://fuse.sourceforge.net/
2458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002459F: fs/fuse/
2460F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2463P: Rik Faith
2464M: faith@cs.unc.edu
2465L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002466S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002467F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
2469GDT SCSI DISK ARRAY CONTROLLER DRIVER
2470P: Achim Leubner
2471M: achim_leubner@adaptec.com
2472L: linux-scsi@vger.kernel.org
2473W: http://www.icp-vortex.com/
2474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002475F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002477GENERIC GPIO I2C DRIVER
2478P: Haavard Skinnemoen
2479M: hskinnemoen@atmel.com
2480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002481F: drivers/i2c/busses/i2c-gpio.c
2482F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002483
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002484GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485P: Krzysztof Halasa
2486M: khc@pm.waw.pl
2487W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002489F: drivers/net/wan/c101.c
2490F: drivers/net/wan/hd6457*
2491F: drivers/net/wan/hdlc*
2492F: drivers/net/wan/n2.c
2493F: drivers/net/wan/pc300too.c
2494F: drivers/net/wan/pci200syn.c
2495F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002497GENERIC INCLUDE/ASM HEADER FILES
2498P: Arnd Bergmann
2499M: arnd@arndb.de
2500L: linux-arch@vger.kernel.org
2501T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2502S: Maintained
2503F: include/asm-generic
2504
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002505GFS2 FILE SYSTEM
2506P: Steven Whitehouse
2507M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002508L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002509W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002510T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2511T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002512S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002513F: Documentation/filesystems/gfs2*.txt
2514F: fs/gfs2/
2515F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002516
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002517GIGASET ISDN DRIVERS
2518P: Hansjoerg Lipp
2519M: hjlipp@web.de
2520P: Tilman Schmidt
2521M: tilman@imap.cc
2522L: gigaset307x-common@lists.sourceforge.net
2523W: http://gigaset307x.sourceforge.net/
2524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002525F: Documentation/isdn/README.gigaset
2526F: drivers/isdn/gigaset/
2527F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002528
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002529HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002530P: Frank Seidel
2531M: frank@f-seidel.de
2532L: lm-sensors@lm-sensors.org
2533W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002536
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002537HYPERVISOR VIRTUAL CONSOLE DRIVER
2538L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002539S: Odd Fixes
2540F: drivers/char/hvc_*
2541
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002542GSPCA FINEPIX SUBDRIVER
2543P: Frank Zago
2544M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002545L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002546T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002548F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002549
2550GSPCA M5602 SUBDRIVER
2551P: Erik Andren
2552M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002553L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002554T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002556F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002557
2558GSPCA PAC207 SONIXB SUBDRIVER
2559P: Hans de Goede
2560M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002561L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002562T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002564F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002565
2566GSPCA T613 SUBDRIVER
2567P: Leandro Costantino
2568M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002569L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002570T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002572F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002573
2574GSPCA USB WEBCAM DRIVER
2575P: Jean-Francois Moine
2576M: moinejf@free.fr
2577W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002578L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002579T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002582
Jean Delvare5b543962005-08-15 19:51:02 +02002583HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002584L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002585W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002586S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002587F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002588
Michael Buesch844dd052006-06-26 00:24:59 -07002589HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002590S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002591F: Documentation/hw_random.txt
2592F: drivers/char/hw_random/
2593F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002594
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595HARMONY SOUND DRIVER
2596P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002597M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002598L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002600F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602HAYES ESP SERIAL DRIVER
2603P: Andrew J. Robinson
2604M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605W: http://www.nyx.net/~arobinso
2606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002607F: Documentation/serial/hayes-esp.txt
2608F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002609
2610HEWLETT-PACKARD SMART2 RAID DRIVER
2611P: Chirag Kantharia
2612M: chirag.kantharia@hp.com
2613L: iss_storagedev@hp.com
2614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002615F: Documentation/blockdev/cpqarray.txt
2616F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002617
2618HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2619P: Mike Miller
2620M: mike.miller@hp.com
2621L: iss_storagedev@hp.com
2622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002623F: Documentation/blockdev/cciss.txt
2624F: drivers/block/cciss*
2625F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627HFS FILESYSTEM
2628P: Roman Zippel
2629M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: Documentation/filesystems/hfs.txt
2632F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634HGA FRAMEBUFFER DRIVER
2635P: Ferenc Bakonyi
2636M: fero@drama.obuda.kando.hu
2637L: linux-nvidia@lists.surfsouth.com
2638W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002640F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002642HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002643P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002644M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002645P: Rafael J. Wysocki
2646M: rjw@sisk.pl
2647L: linux-pm@lists.linux-foundation.org
2648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002649F: arch/x86/power/
2650F: drivers/base/power/
2651F: kernel/power/
2652F: include/linux/suspend.h
2653F: include/linux/freezer.h
2654F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002655F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002656
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002657HID CORE LAYER
2658P: Jiri Kosina
2659M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002660L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002661T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002663F: drivers/hid/
2664F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002665
Ingo Molnar38bed542007-02-22 09:09:34 +01002666HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2667P: Thomas Gleixner
2668M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: Documentation/timers/
2671F: kernel/hrtimer.c
2672F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674HIGH-SPEED SCC DRIVER FOR AX.25
2675P: Klaus Kudielka
2676M: klaus.kudielka@ieee.org
2677L: linux-hams@vger.kernel.org
2678W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002680F: drivers/net/hamradio/dmascc.c
2681F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002683HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2684P: HighPoint Linux Team
2685M: linux@highpoint-tech.com
2686W: http://www.highpoint-tech.com
2687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002688F: Documentation/scsi/hptiop.txt
2689F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691HIPPI
2692P: Jes Sorensen
2693M: jes@trained-monkey.org
2694L: linux-hippi@sunsite.dk
2695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002696F: include/linux/hippidevice.h
2697F: include/linux/if_hippi.h
2698F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Jouni Malinenff1d2762005-05-12 22:54:16 -04002700HOST AP DRIVER
2701P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002702M: j@w1.fi
2703L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002704L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002705W: http://hostap.epitest.fi/
2706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002707F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002708
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002709HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2710P: Carlos Corbacho
2711M: carlos@strangeworlds.co.uk
2712S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002713F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002714
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002715HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2716P: Jaroslav Kysela
2717M: perex@perex.cz
2718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002719F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002720
Joe Perches7d2c86b2009-04-07 20:59:01 -07002721HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002722P: Clemens Ladisch
2723M: clemens@ladisch.de
2724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002725F: Documentation/timers/hpet.txt
2726F: drivers/char/hpet.c
2727F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002728
2729HPET: i386
2730P: Venkatesh Pallipadi (Venki)
2731M: venkatesh.pallipadi@intel.com
2732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002733F: arch/x86/kernel/hpet.c
2734F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002735
2736HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002737P: Vojtech Pavlik
2738M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002739S: Maintained
2740
Joe Perches7d2c86b2009-04-07 20:59:01 -07002741HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002742P: Bob Picco
2743M: bob.picco@hp.com
2744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002745F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747HPFS FILESYSTEM
2748P: Mikulas Patocka
2749M: mikulas@artax.karlin.mff.cuni.cz
2750W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002752F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Joe Perches7d2c86b2009-04-07 20:59:01 -07002754HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002755P: Jan Dumon
2756M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002757W: http://www.pharscape.org
2758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002759F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002760
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002761HTCPEN TOUCHSCREEN DRIVER
2762P: Pau Oliva Fora
2763M: pof@eslack.org
2764L: linux-input@vger.kernel.org
2765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002766F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768HUGETLB FILESYSTEM
2769P: William Irwin
2770M: wli@holomorphy.com
2771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002772F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002774I2C/SMBUS STUB DRIVER
2775P: Mark M. Hoffman
2776M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002777L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002779F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002780
Jean Delvare5b543962005-08-15 19:51:02 +02002781I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002782P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002784P: Ben Dooks (embedded platforms)
2785M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002786L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002787W: http://i2c.wiki.kernel.org/
2788T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002790F: Documentation/i2c/
2791F: drivers/i2c/
2792F: include/linux/i2c.h
2793F: include/linux/i2c-dev.h
2794F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Till Harbaume8c76ee2007-05-01 23:26:35 +02002796I2C-TINY-USB DRIVER
2797P: Till Harbaum
2798M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002799L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002800W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002805P: H. Peter Anvin
2806M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002808F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811P: H. Peter Anvin
2812M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002813T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814S: Maintained
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816IA64 (Itanium) PLATFORM
2817P: Tony Luck
2818M: tony.luck@intel.com
2819L: linux-ia64@vger.kernel.org
2820W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002821T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825IBM MCA SCSI SUBSYSTEM DRIVER
2826P: Michael Lang
2827M: langa2@kph.uni-mainz.de
2828W: http://www.uni-mainz.de/~langm000/linux.html
2829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
2832IBM Power Linux RAID adapter
2833P: Brian King
2834M: brking@us.ibm.com
2835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002836F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838IBM ServeRAID RAID DRIVER
2839P: Jack Hammer
2840P: Dave Jeffery
2841M: ipslinux@adaptec.com
2842W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002843S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002844F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002846IDE SUBSYSTEM
David S. Miller920d44e2009-06-21 16:11:33 -07002847P: David S. Miller
2848M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002850T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002852F: Documentation/ide/
2853F: drivers/ide/
2854F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002856IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002857P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002858M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002859L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002861F: Documentation/cdrom/ide-cd
2862F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Andy Henroid27471fd2008-10-09 11:45:22 -07002864IDLE-I7300
2865P: Andy Henroid
2866M: andrew.d.henroid@intel.com
2867L: linux-pm@lists.linux-foundation.org
2868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002870
Joe Perches7d2c86b2009-04-07 20:59:01 -07002871IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002873M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002874P: Stefan Richter
2875M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876L: linux1394-devel@lists.sourceforge.net
2877W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002878T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002880F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Joe Perches7d2c86b2009-04-07 20:59:01 -07002882IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883P: Dan Dennedy
2884M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002885P: Stefan Richter
2886M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002890
Sergey Lapin02cf2282009-06-08 12:18:50 +00002891IEEE 802.15.4 SUBSYSTEM
2892P: Dmitry Eremin-Solenikov
2893M: dbaryshkov@gmail.com
2894P: Sergey Lapin
2895M: slapin@ossfans.org
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002896L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002897W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002898T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002899S: Maintained
2900F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002901F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002902
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002903INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2904P: Mimi Zohar
2905M: zohar@us.ibm.com
2906S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002907F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002910L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002911S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002912F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914INFINIBAND SUBSYSTEM
2915P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002916M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002918M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002920M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002921L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002923T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002925F: Documentation/infiniband/
2926F: drivers/infiniband/
2927F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Robert Lovec9f04f52005-07-15 12:21:07 -04002929INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002930P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002931M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002932P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002933M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002934P: Eric Paris
2935M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002937F: Documentation/filesystems/inotify.txt
2938F: fs/notify/inotify/
2939F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002940
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002941INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2942P: Dmitry Torokhov
2943M: dmitry.torokhov@gmail.com
2944M: dtor@mail.ru
2945L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002946T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002948F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002949
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002950INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002951P: Sylvain Meyer
2952M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002953L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002955F: Documentation/fb/intelfb.txt
2956F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002959P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002960M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002961L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302965INTEL MENLOW THERMAL DRIVER
2966P: Sujith Thomas
2967M: sujith.thomas@intel.com
2968L: linux-acpi@vger.kernel.org
2969W: http://www.lesswatts.org/projects/acpi/
2970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002971F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973INTEL IA32 MICROCODE UPDATE SUPPORT
2974P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002975M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002977F: arch/x86/kernel/microcode_core.c
2978F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002980INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002981P: Maciej Sosnowski
2982M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002984F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002985
David Woodhouse6c8909b2008-10-18 16:12:17 +01002986INTEL IOMMU (VT-d)
2987P: David Woodhouse
2988M: dwmw2@infradead.org
2989L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002990T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002992F: drivers/pci/intel-iommu.c
2993F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002994
Dan Williamsb3e5f262007-08-07 10:26:35 -07002995INTEL IOP-ADMA DMA DRIVER
2996P: Dan Williams
2997M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002999F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003000
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003001INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
3002P: Krzysztof Halasa
3003M: khc@pm.waw.pl
3004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003005F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3006F: arch/arm/mach-ixp4xx/include/mach/npe.h
3007F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3008F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3009F: drivers/net/arm/ixp4xx_eth.c
3010F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003011
Michael Buesch844dd052006-06-26 00:24:59 -07003012INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3013P: Deepak Saxena
3014M: dsaxena@plexity.net
3015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003016F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003017
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003018INTEL IXP2000 ETHERNET DRIVER
3019P: Lennert Buytenhek
3020M: kernel@wantstofly.org
3021L: netdev@vger.kernel.org
3022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003023F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003024
Auke Kokd94e6fe2008-03-03 14:37:47 -08003025INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003026P: Jeff Kirsher
3027M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003028P: Jesse Brandeburg
3029M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003030P: Bruce Allan
3031M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003032P: PJ Waskiewicz
3033M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003034P: John Ronciak
3035M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003036L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003037W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003039F: drivers/net/e100.c
3040F: drivers/net/e1000/
3041F: drivers/net/e1000e/
3042F: drivers/net/igb/
3043F: drivers/net/ixgb/
3044F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
James Ketrenos826d2ab2005-11-07 18:56:59 -06003046INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003047P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003048M: yi.zhu@intel.com
3049P: James Ketrenos
3050M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003051P: Reinette Chatre
3052M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003053L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003054L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003055W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003056W: http://ipw2100.sourceforge.net
3057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003058F: Documentation/networking/README.ipw2100
3059F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003060
3061INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003062P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003063M: yi.zhu@intel.com
3064P: James Ketrenos
3065M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003066P: Reinette Chatre
3067M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003068L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003069L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003070W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003071W: http://ipw2200.sourceforge.net
3072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003073F: Documentation/networking/README.ipw2200
3074F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003075
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003076INTEL WIRELESS WIMAX CONNECTION 2400
3077P: Inaky Perez-Gonzalez
3078M: inaky.perez-gonzalez@intel.com
3079M: linux-wimax@intel.com
3080L: wimax@linuxwimax.org
3081S: Supported
3082W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003083F: Documentation/wimax/README.i2400m
3084F: drivers/net/wimax/i2400m/
3085F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003086
Zhu Yib481de92007-09-25 17:54:57 -07003087INTEL WIRELESS WIFI LINK (iwlwifi)
3088P: Zhu Yi
3089M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003090P: Reinette Chatre
3091M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003092L: linux-wireless@vger.kernel.org
3093L: ipw3945-devel@lists.sourceforge.net
3094W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003095T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003097F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003098
Ralf Baechlecb109a02007-08-30 23:56:30 -07003099IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100P: Ralf Baechle
3101M: ralf@linux-mips.org
3102L: linux-mips@linux-mips.org
3103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Ralf Baechlecb109a02007-08-30 23:56:30 -07003106IOC3 SERIAL DRIVER
3107P: Pat Gefre
3108M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003109L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003111F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003112
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003113IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114P: Juanjo Ciarlante
3115M: jjciarla@raiz.uncu.edu.ar
3116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003117F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Francois Romieu1202d6f2007-09-17 17:13:55 -07003119IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3120P: Francois Romieu
3121M: romieu@fr.zoreil.com
3122P: Sorbica Shieh
3123M: sorbica@icplus.com.tw
3124P: Jesse Huang
3125M: jesse@icplus.com.tw
3126L: netdev@vger.kernel.org
3127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003128F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003129
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003130IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003131P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003132M: infinipath@qlogic.com
3133L: general@lists.openfabrics.org
3134T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003136F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003137
Corey Minyard4409ebe2006-04-20 02:43:12 -07003138IPMI SUBSYSTEM
3139P: Corey Minyard
3140M: minyard@acm.org
3141L: openipmi-developer@lists.sourceforge.net
3142W: http://openipmi.sourceforge.net/
3143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003144F: Documentation/IPMI.txt
3145F: drivers/char/ipmi/
3146F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003147
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003148IPS SCSI RAID DRIVER
3149P: Adaptec OEM Raid Solutions
3150M: aacraid@adaptec.com
3151L: linux-scsi@vger.kernel.org
3152W: http://www.adaptec.com/
3153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003155
3156IPVS
3157P: Wensong Zhang
3158M: wensong@linux-vs.org
3159P: Simon Horman
3160M: horms@verge.net.au
3161P: Julian Anastasov
3162M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003163L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003164L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003166F: Documentation/networking/ipvs-sysctl.txt
3167F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
Randy Dunlape7839f22008-10-12 16:11:45 -07003169IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003170P: Jiri Kosina
3171M: jkosina@suse.cz
3172P: David Sterba
3173M: dsterba@suse.cz
3174S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003175T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003176F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003177
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003178IPX NETWORK LAYER
3179P: Arnaldo Carvalho de Melo
3180M: acme@ghostprotocols.net
3181L: netdev@vger.kernel.org
3182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003183F: include/linux/ipx.h
3184F: include/net/ipx.h
3185F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003188P: Samuel Ortiz
3189M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003190L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003192S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003193T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003194F: Documentation/networking/irda.txt
3195F: drivers/net/irda/
3196F: include/net/irda/
3197F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003199ISAPNP
3200P: Jaroslav Kysela
3201M: perex@perex.cz
3202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003203F: Documentation/isapnp.txt
3204F: drivers/pnp/isapnp/
3205F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003206
Mike Christie14816b12007-11-28 16:22:06 -08003207ISCSI
3208P: Mike Christie
3209M: michaelc@cs.wisc.edu
3210L: open-iscsi@googlegroups.com
3211W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003212T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003214F: drivers/scsi/*iscsi*
3215F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217ISDN SUBSYSTEM
3218P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003219M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003220L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003222T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: Documentation/isdn/
3225F: drivers/isdn/
3226F: include/linux/isdn.h
3227F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229ISDN SUBSYSTEM (Eicon active card driver)
3230P: Armin Schindler
3231M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003232L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233W: http://www.melware.de
3234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003235F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
Hans Verkuil91821ff2007-12-02 09:35:33 -03003237IVTV VIDEO4LINUX DRIVER
3238P: Hans Verkuil
3239M: hverkuil@xs4all.nl
3240L: ivtv-devel@ivtvdriver.org
3241L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003242L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003243T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003244W: http://www.ivtvdriver.org
3245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003246F: Documentation/video4linux/*.ivtv
3247F: drivers/media/video/ivtv/
3248F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003249
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003250JFS FILESYSTEM
3251P: Dave Kleikamp
3252M: shaggy@austin.ibm.com
3253L: jfs-discussion@lists.sourceforge.net
3254W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003255T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003257F: Documentation/filesystems/jfs.txt
3258F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003259
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003260JME NETWORK DRIVER
3261P: Guo-Fu Tseng
3262M: cooldavid@cooldavid.org
3263L: netdev@vger.kernel.org
3264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003265F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3268P: David Woodhouse
3269M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003270L: linux-mtd@lists.infradead.org
3271W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003273F: fs/jffs2/
3274F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Josh Triplettde456d32006-07-30 03:04:00 -07003276JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003277P: Stephen Tweedie
3278M: sct@redhat.com
3279P: Andrew Morton
3280M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003281L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003283F: fs/jbd*/
3284F: include/linux/ext*jbd*.h
3285F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003286
Rudolf Marek4660cb32006-10-08 22:01:26 +02003287K8TEMP HARDWARE MONITORING DRIVER
3288P: Rudolf Marek
3289M: r.marek@assembler.cz
3290L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003292F: Documentation/hwmon/k8temp
3293F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295KCONFIG
3296P: Roman Zippel
3297M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003298L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003300F: Documentation/kbuild/kconfig-language.txt
3301F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Vivek Goyalea6c2082006-05-20 14:59:55 -07003303KDUMP
3304P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003305M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003306P: Haren Myneni
3307M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003308L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003309W: http://lse.sourceforge.net/kdump/
3310S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003311F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313KERNEL AUTOMOUNTER (AUTOFS)
3314P: H. Peter Anvin
3315M: hpa@zytor.com
3316L: autofs@linux.kernel.org
3317S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003318F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
3320KERNEL AUTOMOUNTER v4 (AUTOFS4)
3321P: Ian Kent
3322M: raven@themaw.net
3323L: autofs@linux.kernel.org
3324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003325F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Joe Perches7d2c86b2009-04-07 20:59:01 -07003327KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328P: Sam Ravnborg
3329M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003330T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3331T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003332L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003334F: Documentation/kbuild/
3335F: Makefile
3336F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
3338KERNEL JANITORS
3339P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003340L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342S: Maintained
3343
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003344KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003345P: J. Bruce Fields
3346M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003348M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003349L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003351S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003352F: fs/nfsd/
3353F: include/linux/nfsd/
3354F: fs/lockd/
3355F: fs/nfs_common/
3356F: net/sunrpc/
3357F: include/linux/lockd/
3358F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
Avi Kivity426d62e2006-12-13 00:34:03 -08003360KERNEL VIRTUAL MACHINE (KVM)
3361P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003362M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003363L: kvm@vger.kernel.org
3364W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003366F: Documentation/*/kvm.txt
3367F: arch/*/kvm/
3368F: arch/*/include/asm/kvm*
3369F: include/linux/kvm*
3370F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003371
Joerg Roedelad8003d2008-09-10 20:01:07 +02003372KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3373P: Joerg Roedel
3374M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003375L: kvm@vger.kernel.org
3376W: http://kvm.qumranet.com
3377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003378F: arch/x86/include/asm/svm.h
3379F: arch/x86/kvm/kvm_svm.h
3380F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003381
Hollis Blanchard513014b2008-04-16 23:28:08 -05003382KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3383P: Hollis Blanchard
3384M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003385L: kvm-ppc@vger.kernel.org
3386W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003388F: arch/powerpc/include/asm/kvm*
3389F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003390
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003391KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003392P: Xiantao Zhang
3393M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003394L: kvm-ia64@vger.kernel.org
3395W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003396S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003397F: Documentation/ia64/kvm.txt
3398F: arch/ia64/include/asm/kvm*
3399F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003400
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003401KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3402P: Carsten Otte
3403M: cotte@de.ibm.com
3404P: Christian Borntraeger
3405M: borntraeger@de.ibm.com
3406M: linux390@de.ibm.com
3407L: linux-s390@vger.kernel.org
3408W: http://www.ibm.com/developerworks/linux/linux390/
3409S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003410F: Documentation/s390/kvm.txt
3411F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003412F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003413
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003414KEXEC
3415P: Eric Biederman
3416M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003417W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003418L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003420F: include/linux/kexec.h
3421F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003422
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003423KGDB
3424P: Jason Wessel
3425M: jason.wessel@windriver.com
3426L: kgdb-bugreport@lists.sourceforge.net
3427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003428F: Documentation/DocBook/kgdb.tmpl
3429F: drivers/misc/kgdbts.c
3430F: drivers/serial/kgdboc.c
3431F: include/linux/kgdb.h
3432F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003433
Pekka Enberg456db8c2008-04-28 22:47:29 +03003434KMEMCHECK
3435P: Vegard Nossum
3436M: vegardno@ifi.uio.no
3437P Pekka Enberg
3438M: penberg@cs.helsinki.fi
3439L: linux-kernel@vger.kernel.org
3440S: Maintained
3441
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003442KMEMLEAK
3443P: Catalin Marinas
3444M: catalin.marinas@arm.com
3445L: linux-kernel@vger.kernel.org
3446S: Maintained
3447F: Documentation/kmemleak.txt
3448F: include/linux/kmemleak.h
3449F: mm/kmemleak.c
3450F: mm/kmemleak-test.c
3451
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003452KMEMTRACE
3453P: Eduard - Gabriel Munteanu
3454M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003455S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003456F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003457F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003458F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003459
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003460KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003461P: Ananth N Mavinakayanahalli
3462M: ananth@in.ibm.com
3463P: Anil S Keshavamurthy
3464M: anil.s.keshavamurthy@intel.com
3465P: David S. Miller
3466M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003467P: Masami Hiramatsu
3468M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003470F: Documentation/kprobes.txt
3471F: include/linux/kprobes.h
3472F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003473
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003474KS0108 LCD CONTROLLER DRIVER
3475P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003476M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003477W: http://miguelojeda.es/auxdisplay.htm
3478W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: Documentation/auxdisplay/ks0108
3481F: drivers/auxdisplay/ks0108.c
3482F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003486S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003487F: Documentation/networking/lapb-module.txt
3488F: include/*/lapb.h
3489F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491LASI 53c700 driver for PARISC
3492P: James E.J. Bottomley
3493M: James.Bottomley@HansenPartnership.com
3494L: linux-scsi@vger.kernel.org
3495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003496F: Documentation/scsi/53c700.txt
3497F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Richard Purdie263de9b2006-05-15 09:44:16 -07003499LED SUBSYSTEM
3500P: Richard Purdie
3501M: rpurdie@rpsys.net
3502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003503F: drivers/leds/
3504F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506LEGO USB Tower driver
3507P: Juergen Stuber
3508M: starblue@users.sourceforge.net
3509L: legousb-devel@lists.sourceforge.net
3510W: http://legousb.sourceforge.net/
3511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003512F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Rusty Russell568a17f2007-10-25 14:12:24 +10003514LGUEST
3515P: Rusty Russell
3516M: rusty@rustcorp.com.au
3517L: lguest@ozlabs.org
3518W: http://lguest.ozlabs.org/
3519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003520F: Documentation/lguest/
3521F: arch/x86/lguest/
3522F: drivers/lguest/
3523F: include/linux/lguest*.h
3524F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526LINUX FOR IBM pSERIES (RS/6000)
3527P: Paul Mackerras
3528M: paulus@au.ibm.com
3529W: http://www.ibm.com/linux/ltc/projects/ppc
3530S: Supported
3531
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003532LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003533P: Benjamin Herrenschmidt
3534M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003535P: Paul Mackerras
3536M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537W: http://www.penguinppc.org/
3538L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003539T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540S: Supported
3541
3542LINUX FOR POWER MACINTOSH
3543P: Benjamin Herrenschmidt
3544M: benh@kernel.crashing.org
3545W: http://www.penguinppc.org/
3546L: linuxppc-dev@ozlabs.org
3547S: Maintained
3548
Grant Likely77a76362008-07-12 12:11:43 -06003549LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003550P: Grant Likely
3551M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003553T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554S: Maintained
3555
3556LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003557P: Josh Boyer
3558M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559P: Matt Porter
3560M: mporter@kernel.crashing.org
3561W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003562L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003563T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564S: Maintained
3565
Grant Likely260c02a2007-10-02 12:15:34 +10003566LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3567P: Grant Likely
3568M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003569W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003570L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003571T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572S: Maintained
3573
Tom Rinie93adf12005-07-26 12:49:53 -07003574LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003575P: Vitaly Bordug
3576M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003577P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003578M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003579W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003580L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003581S: Maintained
3582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003584P: Kumar Gala
3585M: galak@kernel.crashing.org
3586W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003587L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003588S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Olof Johanssonab06ff32006-09-06 14:44:54 -05003590LINUX FOR POWERPC PA SEMI PWRFICIENT
3591P: Olof Johansson
3592M: olof@lixom.net
3593W: http://www.pasemi.com/
3594L: linuxppc-dev@ozlabs.org
3595S: Supported
3596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597LINUX SECURITY MODULE (LSM) FRAMEWORK
3598P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003599M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003600L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003601T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602S: Supported
3603
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003604LLC (802.2)
3605P: Arnaldo Carvalho de Melo
3606M: acme@ghostprotocols.net
3607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003608F: include/linux/llc.h
3609F: include/net/llc*
3610F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003611
Pavel Machek455fbdd2008-11-12 13:27:02 -08003612LIS3LV02D ACCELEROMETER DRIVER
3613P: Eric Piel
3614M: eric.piel@tremplin-utc.net
3615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003616F: Documentation/hwmon/lis3lv02d
3617F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619LM83 HARDWARE MONITOR DRIVER
3620P: Jean Delvare
3621M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003622L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003624F: Documentation/hwmon/lm83
3625F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
3627LM90 HARDWARE MONITOR DRIVER
3628P: Jean Delvare
3629M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003630L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003632F: Documentation/hwmon/lm90
3633F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003635LOCKDEP AND LOCKSTAT
3636P: Peter Zijlstra
3637M: peterz@infradead.org
3638P: Ingo Molnar
3639M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003640T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003642F: Documentation/lockdep*.txt
3643F: Documentation/lockstat.txt
3644F: include/linux/lockdep.h
3645F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003646
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003647LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648P: Richard Russon (FlatCap)
3649M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003650L: linux-ntfs-dev@lists.sourceforge.net
3651W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003653F: Documentation/ldm.txt
3654F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003656LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3657P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003658M: Eric.Moore@lsi.com
3659M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003660L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003661L: linux-scsi@vger.kernel.org
3662W: http://www.lsilogic.com/support
3663S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003664F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003665
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3667P: Matthew Wilcox
3668M: matthew@wil.cx
3669L: linux-scsi@vger.kernel.org
3670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003671F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Mike Frysinger81365c32008-10-29 14:01:12 -07003673LTP (Linux Test Project)
3674P: Subrata Modak
3675M: subrata@linux.vnet.ibm.com
3676P: Mike Frysinger
3677M: vapier@gentoo.org
3678L: ltp-list@lists.sourceforge.net (subscribers-only)
3679W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003680T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003681S: Maintained
3682
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003683M32R ARCHITECTURE
3684P: Hirokazu Takata
3685M: takata@linux-m32r.org
3686L: linux-m32r@ml.linux-m32r.org
3687L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3688W: http://www.linux-m32r.org/
3689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003690F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692M68K ARCHITECTURE
3693P: Geert Uytterhoeven
3694M: geert@linux-m68k.org
3695P: Roman Zippel
3696M: zippel@linux-m68k.org
3697L: linux-m68k@lists.linux-m68k.org
3698W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003699T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003702F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703
3704M68K ON APPLE MACINTOSH
3705P: Joshua Thompson
3706M: funaho@jurai.org
3707W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003708L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003710F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712M68K ON HP9000/300
3713P: Philip Blundell
3714M: philb@gnu.org
3715W: http://www.tazenda.demon.co.uk/phil/linux-hp
3716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003717F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
Jiri Benc64a327a2007-05-05 11:47:08 -07003719MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003720P: Johannes Berg
3721M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003722L: linux-wireless@vger.kernel.org
3723W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003724T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/networking/mac80211-injection.txt
3727F: include/net/mac80211.h
3728F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003729
Stefano Brivio1036d862007-12-23 04:46:27 +01003730MAC80211 PID RATE CONTROL
3731P: Stefano Brivio
3732M: stefano.brivio@polimi.it
3733P: Mattias Nissler
3734M: mattias.nissler@gmx.de
3735L: linux-wireless@vger.kernel.org
3736W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003737T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003739F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003740
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003741MACVLAN DRIVER
3742P: Patrick McHardy
3743M: kaber@trash.net
3744L: netdev@vger.kernel.org
3745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003746F: drivers/net/macvlan.c
3747F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003748
Michael Kerriskfaf16682005-07-31 22:34:47 -07003749MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003750P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003751M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003752W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003753L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003754S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003755
Stefano Brivio74cda162007-11-19 20:27:46 +01003756MARVELL LIBERTAS WIRELESS DRIVER
3757P: Dan Williams
3758M: dcbw@redhat.com
3759L: libertas-dev@lists.infradead.org
3760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003761F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003762
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003763MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003764P: Lennert Buytenhek
3765M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003766L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003768F: drivers/net/mv643xx_eth.*
3769F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Pierre Ossman2a695672009-03-16 19:52:26 +01003771MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3772P: Nicolas Pitre
3773M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003774S: Maintained
3775
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003776MARVELL YUKON / SYSKONNECT DRIVER
3777P: Mirko Lindner
3778M: mlindner@syskonnect.de
3779P: Ralph Roesler
3780M: rroesler@syskonnect.de
3781W: http://www.syskonnect.com
3782S: Supported
3783
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784MATROX FRAMEBUFFER DRIVER
3785P: Petr Vandrovec
3786M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003787L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003789F: drivers/video/matrox/matroxfb_*
3790F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003792MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3793P: Hans J. Koch
3794M: hjk@linutronix.de
3795L: lm-sensors@lm-sensors.org
3796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003797F: Documentation/hwmon/max6650
3798F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003799
Joe Perches127c49a2009-04-08 08:34:04 -07003800MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3801P: Mauro Carvalho Chehab
3802M: mchehab@infradead.org
3803P: LinuxTV.org Project
3804L: linux-media@vger.kernel.org
3805W: http://linuxtv.org
3806T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3807S: Maintained
3808F: Documentation/dvb/
3809F: Documentation/video4linux/
3810F: drivers/media/
3811F: include/media/
3812F: include/linux/dvb/
3813F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003814
3815MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003816P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003817M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003818L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003819W: http://megaraid.lsilogic.com
3820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003821F: Documentation/scsi/megaraid.txt
3822F: drivers/scsi/megaraid.*
3823F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825MEMORY MANAGEMENT
3826L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827W: http://www.linux-mm.org
3828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: include/linux/mm.h
3830F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003831
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003832MEMORY RESOURCE CONTROLLER
3833P: Balbir Singh
3834M: balbir@linux.vnet.ibm.com
3835P: Pavel Emelyanov
3836M: xemul@openvz.org
3837P: KAMEZAWA Hiroyuki
3838M: kamezawa.hiroyu@jp.fujitsu.com
3839L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003841F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843MEMORY TECHNOLOGY DEVICES (MTD)
3844P: David Woodhouse
3845M: dwmw2@infradead.org
3846W: http://www.linux-mtd.infradead.org/
3847L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003848T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003850F: drivers/mtd/
3851F: include/linux/mtd/
3852F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Michal Simekc6375b02009-03-27 14:25:52 +01003854MICROBLAZE ARCHITECTURE
3855P: Michal Simek
3856M: monstr@monstr.eu
3857L: microblaze-uclinux@itee.uq.edu.au
3858W: http://www.monstr.eu/fdt/
3859T: git git://git.monstr.eu/linux-2.6-microblaze.git
3860S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003861F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
3863MICROTEK X6 SCANNER
3864P: Oliver Neukum
3865M: oliver@neukum.name
3866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003867F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869MIPS
3870P: Ralf Baechle
3871M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003872W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003874T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003876F: Documentation/mips/
3877F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879MISCELLANEOUS MCA-SUPPORT
3880P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003881M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003883F: Documentation/ia64/mca.txt
3884F: Documentation/mca.txt
3885F: drivers/mca/
3886F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
3888MODULE SUPPORT
3889P: Rusty Russell
3890M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003892F: include/linux/module.h
3893F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
3895MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3896P: Stelian Pop
3897M: stelian@popies.net
3898W: http://popies.net/meye/
3899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: Documentation/video4linux/meye.txt
3901F: drivers/media/video/meye.*
3902F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
Pavel Pisac58ff042007-05-16 01:10:41 +02003904MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3905P: Pavel Pisa
3906M: ppisa@pikron.com
3907L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003910
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911MOUSE AND MISC DEVICES [GENERAL]
3912P: Alessandro Rubini
3913M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003915F: drivers/input/mouse/
3916F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Jiri Slabyb9705b62008-04-30 00:53:48 -07003918MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003919P: Jiri Slaby
3920M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003922F: Documentation/serial/moxa-smartio
3923F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003924
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003925MSI LAPTOP SUPPORT
3926P: Lennart Poettering
3927M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003928W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003929W: http://0pointer.de/lennart/tchibo.html
3930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003931F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003932
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003933MULTIFUNCTION DEVICES (MFD)
3934P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003935M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003936T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003938F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003939
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003940MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003941P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003942M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003944F: drivers/mmc/
3945F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003946
David Brownell15a05802007-08-08 09:12:54 -07003947MULTIMEDIA CARD (MMC) ETC. OVER SPI
3948P: David Brownell
3949M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003950S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003951F: drivers/mmc/host/mmc_spi.c
3952F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003953
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954MULTISOUND SOUND DRIVER
3955P: Andrew Veliath
3956M: andrewtv@usa.net
3957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003958F: Documentation/sound/oss/MultiSound
3959F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
Jiri Slabyd7354102006-12-08 02:38:35 -08003961MULTITECH MULTIPORT CARD (ISICOM)
3962P: Jiri Slaby
3963M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003965F: drivers/char/isicom.c
3966F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003967
Felipe Balbi550a7372008-07-24 12:27:36 +03003968MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003969P: Felipe Balbi
3970M: felipe.balbi@nokia.com
3971L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003972T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003975
Brice Goglin2d3cf582008-05-17 12:45:36 +02003976MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3977P: Andrew Gallatin
3978M: gallatin@myri.com
3979P: Brice Goglin
3980M: brice@myri.com
3981L: netdev@vger.kernel.org
3982W: http://www.myri.com/scs/download-Myri10GE.html
3983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003984F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003985
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003987P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988M: thockin@hockin.org
3989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992NCP FILESYSTEM
3993P: Petr Vandrovec
3994M: vandrove@vc.cvut.cz
3995L: linware@sh.cvut.cz
3996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003997F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
3999NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
4000P: James E.J. Bottomley
4001M: James.Bottomley@HansenPartnership.com
4002L: linux-scsi@vger.kernel.org
4003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004004F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004006NETEFFECT IWARP RNIC DRIVER (IW_NES)
4007P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07004008M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07004009P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07004010M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004011L: general@lists.openfabrics.org
4012W: http://www.neteffect.com
4013S: Supported
4014F: drivers/infiniband/hw/nes/
4015
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004016NETEM NETWORK EMULATOR
4017P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08004018M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004019L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004020S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004021F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004022
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004023NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004024P: Ramkrishna Vepa
4025M: ram.vepa@neterion.com
4026P: Rastapur Santosh
4027M: santosh.rastapur@neterion.com
4028P: Sivakumar Subramani
4029M: sivakumar.subramani@neterion.com
4030P: Sreenivasa Honnur
4031M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004032P: Anil Murthy
4033M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004034L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004035W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4036W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004038F: Documentation/networking/s2io.txt
4039F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041NETFILTER/IPTABLES/IPCHAINS
4042P: Rusty Russell
4043P: Marc Boucher
4044P: James Morris
4045P: Harald Welte
4046P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004047P: Patrick McHardy
4048M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004049L: netfilter-devel@vger.kernel.org
4050L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004051L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052W: http://www.netfilter.org/
4053W: http://www.iptables.org/
Joe Perches3f1f7cf2009-07-01 11:32:10 +02004054T: git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004056F: include/linux/netfilter*
4057F: include/linux/netfilter/
4058F: include/net/netfilter/
4059F: net/*/netfilter.c
4060F: net/*/netfilter/
4061F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
Paul Moore4cc67732006-09-25 15:57:13 -07004063NETLABEL
4064P: Paul Moore
4065M: paul.moore@hp.com
4066W: http://netlabel.sf.net
4067L: netdev@vger.kernel.org
4068S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004069F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004070F: include/net/netlabel.h
4071F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004072
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073NETROM NETWORK LAYER
4074P: Ralf Baechle
4075M: ralf@linux-mips.org
4076L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004077W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: include/linux/netrom.h
4080F: include/net/netrom.h
4081F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004083NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084P: Paul Clements
4085M: Paul.Clements@steeleye.com
4086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004087F: Documentation/blockdev/nbd.txt
4088F: drivers/block/nbd.c
4089F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
4091NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004092P: David S. Miller
4093M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004094L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004095W: http://www.linuxfoundation.org/en/Net
4096T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004098F: net/
4099F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100
4101NETWORKING [IPv4/IPv6]
4102P: David S. Miller
4103M: davem@davemloft.net
4104P: Alexey Kuznetsov
4105M: kuznet@ms2.inr.ac.ru
4106P: Pekka Savola (ipv6)
4107M: pekkas@netcore.fi
4108P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004109M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110P: Hideaki YOSHIFUJI
4111M: yoshfuji@linux-ipv6.org
4112P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004113M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004114L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004115T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: net/ipv4/
4118F: net/ipv6/
4119F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
James Morris10e2ff12007-08-25 14:41:28 -07004121NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4122P: Paul Moore
4123M: paul.moore@hp.com
4124L: netdev@vger.kernel.org
4125S: Maintained
4126
John W. Linville29f8f632006-01-18 14:52:48 -08004127NETWORKING [WIRELESS]
4128P: John W. Linville
4129M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004130L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004131T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: net/wireless/
4134F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004135F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004136
Joe Perches788873a2009-04-16 09:38:45 +00004137NETWORKING DRIVERS
4138L: netdev@vger.kernel.org
4139W: http://www.linuxfoundation.org/en/Net
4140T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4141S: Odd Fixes
4142F: drivers/net/
4143
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004144NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004145P: Dhananjay Phadke
4146M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004147L: netdev@vger.kernel.org
4148W: http://www.netxen.com
4149S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004150F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004151
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004152NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004154M: Trond.Myklebust@netapp.com
4155L: linux-nfs@vger.kernel.org
4156W: http://client.linux-nfs.org
4157T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004159F: fs/lockd/
4160F: fs/nfs/
4161F: fs/nfs_common/
4162F: net/sunrpc/
4163F: include/linux/lockd/
4164F: include/linux/nfs*
4165F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
4167NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004168P: Jan-Pascal van Best
4169M: janpascal@vanbest.org
4170P: Andreas Mohr
4171M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004172L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004174F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004176NILFS2 FILESYSTEM
4177P: KONISHI Ryusuke
4178M: konishi.ryusuke@lab.ntt.co.jp
4179L: users@nilfs.org
4180W: http://www.nilfs.org/en/
4181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004182F: Documentation/filesystems/nilfs2.txt
4183F: fs/nilfs2/
4184F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4187P: YOKOTA Hiroshi
4188M: yokota@netlab.is.tsukuba.ac.jp
4189W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: Documentation/scsi/NinjaSCSI.txt
4192F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
4194NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4195P: GOTO Masanori
4196M: gotom@debian.or.jp
4197P: YOKOTA Hiroshi
4198M: yokota@netlab.is.tsukuba.ac.jp
4199W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: Documentation/scsi/NinjaSCSI.txt
4202F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204NTFS FILESYSTEM
4205P: Anton Altaparmakov
4206M: aia21@cantab.net
4207L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004208W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004209T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004211F: Documentation/filesystems/ntfs.txt
4212F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004214NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004215P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004216M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004217L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004219F: drivers/video/riva/
4220F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Tony Lindgrenf5525782009-05-28 13:23:53 -07004222OMAP SUPPORT
4223P: Tony Lindgren <tony@atomide.com>
4224M: tony@atomide.com
4225L: linux-omap@vger.kernel.org
4226W: http://www.muru.com/linux/omap/
4227W: http://linux.omap.com/
4228T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4229S: Maintained
4230F: arch/arm/*omap*
4231
4232OMAP CLOCK FRAMEWORK SUPPORT
4233P: Paul Walmsley
4234M: paul@pwsan.com
4235L: linux-omap@vger.kernel.org
4236S: Maintained
4237F: arch/arm/*omap*/*clock*
4238
4239OMAP POWER MANAGEMENT SUPPORT
4240P: Kevin Hilman
4241M: khilman@deeprootsystems.com
4242L: linux-omap@vger.kernel.org
4243S: Maintained
4244F: arch/arm/*omap*/*pm*
4245
4246OMAP AUDIO SUPPORT
4247P: Jarkko Nikula
4248M: jhnikula@gmail.com
4249L: alsa-devel@alsa-project.org (subscribers-only)
4250L: linux-omap@vger.kernel.org
4251S: Maintained
4252F: sound/soc/omap/
4253
4254OMAP FRAMEBUFFER SUPPORT
4255P: Imre Deak
4256M: imre.deak@nokia.com
4257L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4258L: linux-omap@vger.kernel.org
4259S: Maintained
4260F: drivers/video/omap/
4261
4262OMAP MMC SUPPORT
4263P: Jarkko Lavinen
4264M: jarkko.lavinen@nokia.com
4265L: linux-kernel@vger.kernel.org
4266L: linux-omap@vger.kernel.org
4267S: Maintained
4268F: drivers/mmc/host/*omap*
4269
4270OMAP RANDOM NUMBER GENERATOR SUPPORT
4271P: Deepak Saxena
4272M: dsaxena@plexity.net
4273S: Maintained
4274F: drivers/char/hw_random/omap-rng.c
4275
4276OMAP USB SUPPORT
4277P: Felipe Balbi
4278M: felipe.balbi@nokia.com
4279P: David Brownell
4280M: dbrownell@users.sourceforge.net
4281L: linux-usb@vger.kernel.org
4282L: linux-omap@vger.kernel.org
4283S: Maintained
4284
Bob Copeland0ad122d2008-07-25 19:45:18 -07004285OMFS FILESYSTEM
4286P: Bob Copeland
4287M: me@bobcopeland.com
4288L: linux-karma-devel@lists.sourceforge.net
4289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004290F: Documentation/filesystems/omfs.txt
4291F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004292
Harald Weltec1986ee2005-11-13 16:06:29 -08004293OMNIKEY CARDMAN 4000 DRIVER
4294P: Harald Welte
4295M: laforge@gnumonks.org
4296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004297F: drivers/char/pcmcia/cm4000_cs.c
4298F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004299
Harald Welte77c44ab2005-11-13 16:06:26 -08004300OMNIKEY CARDMAN 4040 DRIVER
4301P: Harald Welte
4302M: laforge@gnumonks.org
4303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004304F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004305
Jonathan Corbet77d51402007-03-22 19:44:17 -03004306OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004307P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004308M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004309L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004310T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004312F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004313
Thomas Gleixner431bca72007-05-02 09:31:35 +02004314ONENAND FLASH DRIVER
4315P: Kyungmin Park
4316M: kyungmin.park@samsung.com
4317L: linux-mtd@lists.infradead.org
4318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: drivers/mtd/onenand/
4320F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322ONSTREAM SCSI TAPE DRIVER
4323P: Willem Riede
4324M: osst@riede.org
4325L: osst-users@lists.sourceforge.net
4326L: linux-scsi@vger.kernel.org
4327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004328F: drivers/scsi/osst*
4329F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004331OPENCORES I2C BUS DRIVER
4332P: Peter Korsgaard
4333M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004334L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/i2c/busses/i2c-ocores
4337F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004338
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004340P: Robert Richter
4341M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342L: oprofile-list@lists.sf.net
4343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004344F: arch/*/oprofile/
4345F: drivers/oprofile/
4346F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004348ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4349P: Mark Fasheh
4350M: mfasheh@suse.com
4351P: Joel Becker
4352M: joel.becker@oracle.com
4353L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4354W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004355T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004357F: Documentation/filesystems/ocfs2.txt
4358F: Documentation/filesystems/dlmfs.txt
4359F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004360
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361ORINOCO DRIVER
4362P: Pavel Roskin
4363M: proski@gnu.org
4364P: David Gibson
4365M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004366L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004367L: orinoco-users@lists.sourceforge.net
4368L: orinoco-devel@lists.sourceforge.net
4369W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004371F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Boaz Harrosh68274792009-01-25 17:24:14 +02004373OSD LIBRARY
4374P: Boaz Harrosh
4375M: bharrosh@panasas.com
4376P: Benny Halevy
4377M: bhalevy@panasas.com
4378L: osd-dev@open-osd.org
4379W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004380T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004381S: Maintained
4382
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004383P54 WIRELESS DRIVER
4384P: Michael Wu
4385M: flamingice@sourmilk.net
4386L: linux-wireless@vger.kernel.org
4387W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004388T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004391
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004392PA SEMI ETHERNET DRIVER
4393P: Olof Johansson
4394M: olof@lixom.net
4395L: netdev@vger.kernel.org
4396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004398
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004399PA SEMI SMBUS DRIVER
4400P: Olof Johansson
4401M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004402L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004404F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004405
Harald Welte709ee532008-09-23 17:46:57 +02004406PANASONIC LAPTOP ACPI EXTRAS DRIVER
4407P: Harald Welte
4408M: laforge@gnumonks.org
4409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004410F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004411
David Howells4fa97182008-10-13 10:42:44 +01004412PANASONIC MN10300/AM33 PORT
4413P: David Howells
4414M: dhowells@redhat.com
4415P: Koichi Yasutake
4416M: yasutake.koichi@jp.panasonic.com
4417L: linux-am33-list@redhat.com (moderated for non-subscribers)
4418W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4419S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004420F: Documentation/mn10300/
4421F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004422
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004424L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004425S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004426F: drivers/parport/
4427F: include/linux/parport*.h
4428F: drivers/char/ppdev.c
4429F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004431PARAVIRT_OPS INTERFACE
4432P: Jeremy Fitzhardinge
4433M: jeremy@xensource.com
4434P: Chris Wright
4435M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004436P: Alok Kataria
4437M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004438P: Rusty Russell
4439M: rusty@rustcorp.com.au
4440L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004442F: Documentation/ia64/paravirt_ops.txt
4443F: arch/*/kernel/paravirt*
4444F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004445
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4447P: Tim Waugh
4448M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004449L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450W: http://www.torque.net/linux-pp.html
4451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004452F: Documentation/blockdev/paride.txt
4453F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
4455PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004456P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004457M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004458P: Helge Deller
4459M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004460L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004462T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004464F: arch/parisc/
4465F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
Jim Cromie1662d322006-10-06 00:43:59 -07004467PC87360 HARDWARE MONITORING DRIVER
4468P: Jim Cromie
4469M: jim.cromie@gmail.com
4470L: lm-sensors@lm-sensors.org
4471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004472F: Documentation/hwmon/pc87360
4473F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004474
4475PC8736x GPIO DRIVER
4476P: Jim Cromie
4477M: jim.cromie@gmail.com
4478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004479F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004480
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004481PCA9532 LED DRIVER
4482P: Riku Voipio
4483M: riku.voipio@iki.fi
4484S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004485F: drivers/leds/leds-pca9532.c
4486F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004487
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004488PCI ERROR RECOVERY
4489P: Linas Vepstas
4490M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004491L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004493F: Documentation/PCI/pci-error-recovery.txt
4494F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004495
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004497P: Jesse Barnes
4498M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004499L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004500T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004502F: Documentation/PCI/
4503F: drivers/pci/
4504F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004506PCIE HOTPLUG DRIVER
4507P: Kristen Carlson Accardi
4508M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004509L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004511F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004514P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004515L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004516W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004517T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004519F: Documentation/pcmcia/
4520F: drivers/pcmcia/
4521F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004524P: Don Fry
4525M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004526L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004528F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004530PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004531P: Balbir Singh
4532M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004534F: include/linux/delayacct.h
4535F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004536
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004537PERFORMANCE COUNTER SUBSYSTEM
4538P: Peter Zijlstra
4539M: a.p.zijlstra@chello.nl
4540P: Paul Mackerras
4541M: paulus@samba.org
4542P: Ingo Molnar
4543M: mingo@elte.hu
4544L: linux-kernel@vger.kernel.org
4545S: Supported
4546
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004547PERSONALITY HANDLING
4548P: Christoph Hellwig
4549M: hch@infradead.org
4550L: linux-abi-devel@lists.sourceforge.net
4551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004552F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004555P: Joern Engel
4556M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557L: linux-mtd@lists.infradead.org
4558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004559F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
Peter Osterlund249a6772005-09-27 21:45:30 -07004561PKTCDVD DRIVER
4562P: Peter Osterlund
4563M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: drivers/block/pktcdvd.c
4566F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004569P: Thomas Gleixner
4570M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004572F: fs/timerfd.c
4573F: include/linux/timer*
4574F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Anton Vorontsov3be86142007-07-15 04:43:36 +04004576POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4577P: Anton Vorontsov
4578M: cbou@mail.ru
4579P: David Woodhouse
4580M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004581T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004583F: include/linux/power_supply.h
4584F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004585
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586PNP SUPPORT
4587P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004588M: abelay@mit.edu
4589P: Bjorn Helgaas
4590M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Vitaly Wool999445d2007-01-04 13:07:03 +01004594PNXxxxx I2C DRIVER
4595P: Vitaly Wool
4596M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004597L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004600
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601PPP PROTOCOL DRIVERS AND COMPRESSORS
4602P: Paul Mackerras
4603M: paulus@samba.org
4604L: linux-ppp@vger.kernel.org
4605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004606F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
4608PPP OVER ATM (RFC 2364)
4609P: Mitchell Blank Jr
4610M: mitch@sfgoth.com
4611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004612F: net/atm/pppoatm.c
4613F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
4615PPP OVER ETHERNET
4616P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004617M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: drivers/net/pppoe.c
4620F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
James Chapmana6d23702007-06-27 15:53:17 -07004622PPP OVER L2TP
4623P: James Chapman
4624M: jchapman@katalix.com
4625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004626F: drivers/net/pppol2tp.c
4627F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004628
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004629PPS SUPPORT
4630P: Rodolfo Giometti
4631M: giometti@enneenne.com
4632W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4633L: linuxpps@ml.enneenne.com (subscribers-only)
4634S: Maintained
4635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636PREEMPTIBLE KERNEL
4637P: Robert Love
4638M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639L: kpreempt-tech@lists.sourceforge.net
4640W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4641S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004642F: Documentation/preempt-locking.txt
4643F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644
4645PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004646P: Luis R. Rodriguez
4647M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004648L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649W: http://prism54.org
4650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004651F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652
4653PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4654P: Peter Denison
4655M: promise@pnd-pc.demon.co.uk
4656W: http://www.pnd-pc.demon.co.uk/promise/
4657S: Maintained
4658
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004659PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4660P: Mikael Pettersson
4661M: mikpe@it.uu.se
4662L: linux-ide@vger.kernel.org
4663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004664F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004665
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004666PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004667P: Geoff Levand
4668M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004669L: netdev@vger.kernel.org
4670L: cbe-oss-dev@ozlabs.org
4671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004672F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004673
Geoff Levandf58a9d12006-11-23 00:46:51 +01004674PS3 PLATFORM SUPPORT
4675P: Geoff Levand
4676M: geoffrey.levand@am.sony.com
4677L: linuxppc-dev@ozlabs.org
4678L: cbe-oss-dev@ozlabs.org
4679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004680F: arch/powerpc/boot/ps3*
4681F: arch/powerpc/include/asm/lv1call.h
4682F: arch/powerpc/include/asm/ps3*.h
4683F: arch/powerpc/platforms/ps3/
4684F: drivers/*/ps3*
4685F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004686F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004687F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004688F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004689
Jim Pariscffb4add2009-01-06 11:32:10 +00004690PS3VRAM DRIVER
4691P: Jim Paris
4692M: jim@jtan.com
4693L: cbe-oss-dev@ozlabs.org
4694S: Maintained
4695
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004696PTRACE SUPPORT
4697P: Roland McGrath
4698M: roland@redhat.com
4699P: Oleg Nesterov
4700M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004701S: Maintained
4702F: include/asm-generic/syscall.h
4703F: include/linux/ptrace.h
4704F: include/linux/regset.h
4705F: include/linux/tracehook.h
4706F: kernel/ptrace.c
4707
Michael Krufky83202042006-07-03 00:24:18 -07004708PVRUSB2 VIDEO4LINUX DRIVER
4709P: Mike Isely
4710M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004711L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004712L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004713W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004714T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: Documentation/video4linux/README.pvrusb2
4717F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004718
Eric Miao30ec2612008-06-12 15:21:41 -07004719PXA2xx/PXA3xx SUPPORT
4720P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004721M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004722P: Russell King
4723M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004724L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004726F: arch/arm/mach-pxa/
4727F: drivers/pcmcia/pxa2xx*
4728F: drivers/spi/pxa2xx*
4729F: drivers/usb/gadget/pxa2*
4730F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004731F: sound/arm/pxa*
4732F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004734PXA168 SUPPORT
4735P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004736M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004737P: Jason Chagas
4738M: jason.chagas@marvell.com
4739L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004740T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004741S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004742
Eric Miao5fa82eb2009-03-20 12:52:24 +08004743PXA910 SUPPORT
4744P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004745M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004746L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004747T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004748S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004749
Pierre Ossman272f1332007-05-14 21:25:26 +02004750PXA MMCI DRIVER
4751S: Orphan
4752
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004753PXA RTC DRIVER
4754P: Robert Jarzmik
4755M: robert.jarzmik@free.fr
4756L: rtc-linux@googlegroups.com
4757S: Maintained
4758
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759QLOGIC QLA2XXX FC-SCSI DRIVER
4760P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004761M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762L: linux-scsi@vger.kernel.org
4763S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004764F: Documentation/scsi/LICENSE.qla2xxx
4765F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Ron Mercer5a4faa82006-07-25 00:40:21 -07004767QLOGIC QLA3XXX NETWORK DRIVER
4768P: Ron Mercer
4769M: linux-driver@qlogic.com
4770L: netdev@vger.kernel.org
4771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004772F: Documentation/networking/LICENSE.qla3xxx
4773F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004774
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004775QLOGIC QLGE 10Gb ETHERNET DRIVER
4776P: Ron Mercer
4777M: linux-driver@qlogic.com
4778M: ron.mercer@qlogic.com
4779L: netdev@vger.kernel.org
4780S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783QNX4 FILESYSTEM
4784P: Anders Larsen
4785M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786W: http://www.alarsen.net/linux/qnx4fs/
4787S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004788F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004789F: include/linux/qnx4_fs.h
4790F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004793P: Benjamin Herrenschmidt
4794M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004795L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004797F: drivers/video/aty/radeon*
4798F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799
4800RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004801P: Paul Mackerras
4802M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004803L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
Randy Dunlape7839f22008-10-12 16:11:45 -07004807RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004808P: rt2x00 project
4809L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004810L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004811W: http://rt2x00.serialmonkey.com/
4812S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004813T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004814F: drivers/net/wireless/rt2x00/
4815
Nick Piggin9db55792008-02-08 04:19:49 -08004816RAMDISK RAM BLOCK DEVICE DRIVER
4817P: Nick Piggin
4818M: npiggin@suse.de
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: Documentation/blockdev/ramdisk.txt
4821F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004822
Matt Mackall9e95ce22005-04-16 15:25:56 -07004823RANDOM NUMBER DRIVER
4824P: Matt Mackall
4825M: mpm@selenic.com
4826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004828
Matt Porter394b7012005-11-07 01:00:15 -08004829RAPIDIO SUBSYSTEM
4830P: Matt Porter
4831M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004833F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004834
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004835RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4836P: Corey Thomas
4837M: coreythomas@charter.net
4838L: linux-wireless@vger.kernel.org
4839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004841
4842RCUTORTURE MODULE
4843P: Josh Triplett
4844M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004845P: Paul E. McKenney
4846M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004848F: Documentation/RCU/torture.txt
4849F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004850
Florian Fainellic1f766b2008-02-06 22:39:44 +01004851RDC R-321X SoC
4852P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004853M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004854S: Maintained
4855
Florian Fainellidb17f392007-12-19 11:30:30 +01004856RDC R6040 FAST ETHERNET DRIVER
4857P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004858M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004859L: netdev@vger.kernel.org
4860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004861F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004862
Andy Grovera09ed662009-02-24 15:30:41 +00004863RDS - RELIABLE DATAGRAM SOCKETS
4864P: Andy Grover
4865M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004866L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004868F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004869
Josh Triplett595182b2006-10-04 02:17:21 -07004870READ-COPY UPDATE (RCU)
4871P: Dipankar Sarma
4872M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004873P: Paul E. McKenney
4874M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004875W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004877F: Documentation/RCU/rcu.txt
4878F: Documentation/RCU/rcuref.txt
4879F: include/linux/rcupdate.h
4880F: include/linux/srcu.h
4881F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004882
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883REAL TIME CLOCK DRIVER
4884P: Paul Gortmaker
4885M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004887F: Documentation/rtc.txt
4888F: drivers/rtc/
4889F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004891REAL TIME CLOCK (RTC) SUBSYSTEM
4892P: Alessandro Zummo
4893M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004894L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004896F: Documentation/rtc.txt
4897F: drivers/rtc/
4898F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004901L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004903F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Ivo van Doorne08976452008-04-12 19:23:55 +02004905RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004906P: Johannes Berg
4907M: johannes@sipsolutions.net
4908L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004909S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004910F Documentation/rfkill.txt
4911F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004912
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004913RISCOM8 DRIVER
4914S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004915F: Documentation/serial/riscom8.txt
4916F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004917
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918ROCKETPORT DRIVER
4919P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920W: http://www.comtrol.com
4921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004922F: Documentation/serial/rocket.txt
4923F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
4925ROSE NETWORK LAYER
4926P: Ralf Baechle
4927M: ralf@linux-mips.org
4928L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004929W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004931F: include/linux/rose.h
4932F: include/net/rose.h
4933F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
Larry Finger59840482008-11-12 17:13:09 -06004935RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004936P: John W. Linville
4937M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004938L: linux-wireless@vger.kernel.org
4939W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004940T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004942F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004943
Larry Finger59840482008-11-12 17:13:09 -06004944RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004945P: Herton Ronaldo Krzesinski
4946M: herton@mandriva.com.br
4947P: Hin-Tak Leung
4948M: htl10@users.sourceforge.net
4949P: Larry Finger
4950M: Larry.Finger@lwfinger.net
4951L: linux-wireless@vger.kernel.org
4952W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004953T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004955F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004956
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004957S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004958P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004959M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004960L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004962F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964S390
4965P: Martin Schwidefsky
4966M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004967P: Heiko Carstens
4968M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004970L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004971W: http://www.ibm.com/developerworks/linux/linux390/
4972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004973F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004974
4975S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004976P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004977M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004978P: Frank Blaschka
4979M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004980M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004981L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004982W: http://www.ibm.com/developerworks/linux/linux390/
4983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004984F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004985
Felix Beckfeed9b62009-03-26 15:24:23 +01004986S390 ZCRYPT DRIVER
4987P: Felix Beck
4988M: felix.beck@de.ibm.com
4989P: Ralph Wuerthner
4990M: ralph.wuerthner@de.ibm.com
4991M: linux390@de.ibm.com
4992L: linux-s390@vger.kernel.org
4993S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004994F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004995
Heiko Carstens5238da42006-02-11 17:56:01 -08004996S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004997P: Christof Schmitt
4998M: christof.schmitt@de.ibm.com
4999P: Martin Peschke
5000M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005001M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005002L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005003W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005005F: Documentation/s390/zfcpdump.txt
5006F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
Ursula Braundd96df22007-09-19 13:09:02 +02005008S390 IUCV NETWORK LAYER
5009P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005010M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02005011M: linux390@de.ibm.com
5012L: linux-s390@vger.kernel.org
5013W: http://www.ibm.com/developerworks/linux/linux390/
5014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005015F: drivers/s390/net/*iucv*
5016F: include/net/iucv/
5017F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005018
Ben Dooks4dde7f72008-06-30 22:40:38 +01005019S3C24XX SD/MMC Driver
5020P: Ben Dooks
5021M: ben-linux@fluff.org
5022L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005024F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005025
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026SAA7146 VIDEO4LINUX-2 DRIVER
5027P: Michael Hunold
5028M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005029L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005030T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031W: http://www.mihu.de/linux/saa7146
5032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005033F: drivers/media/common/saa7146*
5034F: drivers/media/video/*7146*
5035F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037SC1200 WDT DRIVER
5038P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005039M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005041F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
5043SCHEDULER
5044P: Ingo Molnar
5045M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005046P: Peter Zijlstra
5047M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005049F: kernel/sched*
5050F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
5052SCSI CDROM DRIVER
5053P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005054M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055L: linux-scsi@vger.kernel.org
5056W: http://www.kernel.dk
5057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
5060SCSI SG DRIVER
5061P: Doug Gilbert
5062M: dgilbert@interlog.com
5063L: linux-scsi@vger.kernel.org
5064W: http://www.torque.net/sg
5065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: drivers/scsi/sg.c
5067F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
5069SCSI SUBSYSTEM
5070P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005071M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005073T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5074T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5075T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005077F: drivers/scsi/
5078F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005081P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082M: Kai.Makisara@kolumbus.fi
5083L: linux-scsi@vger.kernel.org
5084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: Documentation/scsi/st.txt
5086F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005089P: Vlad Yasevich
5090M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005091P: Sridhar Samudrala
5092M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005093L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005094W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005096F: Documentation/networking/sctp.txt
5097F: include/linux/sctp.h
5098F: include/net/sctp/
5099F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100
5101SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005102P: Jim Cromie
5103M: jim.cromie@gmail.com
5104S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005105F: Documentation/i2c/busses/scx200_acb
5106F: arch/x86/kernel/scx200_32.c
5107F: drivers/watchdog/scx200_wdt.c
5108F: drivers/i2c/busses/scx200*
5109F: drivers/mtd/maps/scx200_docflash.c
5110F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005111
5112SCx200 GPIO DRIVER
5113P: Jim Cromie
5114M: jim.cromie@gmail.com
5115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005116F: drivers/char/scx200_gpio.c
5117F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005118
5119SCx200 HRT CLOCKSOURCE DRIVER
5120P: Jim Cromie
5121M: jim.cromie@gmail.com
5122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005123F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Sascha Sommer6a369132008-07-15 14:21:29 +02005125SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5126P: Sascha Sommer
5127M: saschasommer@freenet.de
5128L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005130F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005131
Randy Dunlape7839f22008-10-12 16:11:45 -07005132SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005133P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005134M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005135L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005136S: Maintained
5137
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005138SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5139P: Anton Vorontsov
5140M: avorontsov@ru.mvista.com
5141L: linuxppc-dev@ozlabs.org
5142L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Ben Dooks0d1bb412009-06-14 13:52:37 +01005146SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5147P: Ben Dooks
5148M: ben-linux@fluff.org
5149L: sdhci-devel@lists.ossman.eu
5150S: Maintained
5151F: drivers/mmc/host/sdhci-s3c.c
5152
James Morris8711cca2008-12-04 03:19:45 +11005153SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005154P: James Morris
5155M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005156L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005157T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005158W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005159S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005160F: security/
James Morris8711cca2008-12-04 03:19:45 +11005161
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162SECURITY CONTACT
5163P: Security Officers
5164M: security@kernel.org
5165S: Supported
5166
5167SELINUX SECURITY MODULE
5168P: Stephen Smalley
5169M: sds@tycho.nsa.gov
5170P: James Morris
5171M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005172P: Eric Paris
5173M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005174L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005175W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005176T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005178F: include/linux/selinux*
5179F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
Jiri Slabycef2cf02007-05-08 00:31:45 -07005181SENSABLE PHANTOM
5182P: Jiri Slaby
5183M: jirislaby@gmail.com
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: drivers/misc/phantom.c
5186F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005187
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005188SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189P: Jeff Garzik
5190M: jgarzik@pobox.com
5191L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005192T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005194F: drivers/ata/
5195F: include/linux/ata.h
5196F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005198SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5199P: Sathya Perla
5200M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005201P: Subbu Seetharaman
5202M: subbus@serverengines.com
5203L: netdev@vger.kernel.org
5204W: http://www.serverengines.com
5205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005206F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005207
Ben Hutchings8ceee662008-04-27 12:55:59 +01005208SFC NETWORK DRIVER
5209P: Steve Hodgson
5210P: Ben Hutchings
5211P: Robert Stonehouse
5212M: linux-net-drivers@solarflare.com
5213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005214F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005215
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005216SGI GRU DRIVER
5217P: Jack Steiner
5218M: steiner@sgi.com
5219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005220F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005221
5222SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5223P: Pat Gefre
5224M: pfg@sgi.com
5225L: linux-ia64@vger.kernel.org
5226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005227F: Documentation/ia64/serial.txt
5228F: drivers/serial/ioc?_serial.c
5229F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005230
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231SGI VISUAL WORKSTATION 320 AND 540
5232P: Andrey Panin
5233M: pazke@donpac.ru
5234L: linux-visws-devel@lists.sf.net
5235W: http://linux-visws.sf.net
5236S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005237F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Jack Steiner75312612008-08-15 00:40:42 -07005239SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005240P: Robin Holt
5241M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005243F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005244
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005245SHARP LH SUPPORT (LH7952X & LH7A40X)
5246P: Marc Singer
5247M: elf@buici.com
5248W: http://projects.buici.com/arm
5249L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005251F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5252F: arch/arm/mach-lh7a40x/
5253F: drivers/serial/serial_lh7a40x.c
5254F: drivers/usb/gadget/lh7a40*
5255F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005256
5257SHPC HOTPLUG DRIVER
5258P: Kristen Carlson Accardi
5259M: kristen.c.accardi@intel.com
5260L: linux-pci@vger.kernel.org
5261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005262F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005263
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264SIMTEC EB110ATX (Chalice CATS)
5265P: Ben Dooks
5266P: Vincent Sanders
5267M: support@simtec.co.uk
5268W: http://www.simtec.co.uk/products/EB110ATX/
5269S: Supported
5270
5271SIMTEC EB2410ITX (BAST)
5272P: Ben Dooks
5273P: Vincent Sanders
5274M: support@simtec.co.uk
5275W: http://www.simtec.co.uk/products/EB2410ITX/
5276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005277F: arch/arm/mach-s3c2410/
5278F: drivers/*/*s3c2410*
5279F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
Francois Romieu92aab3c2005-07-30 13:11:18 +02005281SIS 190 ETHERNET DRIVER
5282P: Francois Romieu
5283M: romieu@fr.zoreil.com
5284L: netdev@vger.kernel.org
5285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005287
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288SIS 900/7016 FAST ETHERNET DRIVER
5289P: Daniele Venzano
5290M: venza@brownhat.org
5291W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005292L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005294F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005296SIS 96X I2C/SMBUS DRIVER
5297P: Mark M. Hoffman
5298M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005299L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005301F: Documentation/i2c/busses/i2c-sis96x
5302F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005303
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304SIS FRAMEBUFFER DRIVER
5305P: Thomas Winischhofer
5306M: thomas@winischhofer.net
5307W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005309F: Documentation/fb/sisfb.txt
5310F: drivers/video/sis/
5311F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
5313SIS USB2VGA DRIVER
5314P: Thomas Winischhofer
5315M: thomas@winischhofer.net
5316W: http://www.winischhofer.at/linuxsisusbvga.shtml
5317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005318F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005320SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5321P: Stephen Hemminger
5322M: shemminger@linux-foundation.org
5323L: netdev@vger.kernel.org
5324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005325F: drivers/net/skge.*
5326F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005327
Christoph Lameter415ad262007-07-26 10:40:56 -07005328SLAB ALLOCATOR
5329P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005330M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005331P: Pekka Enberg
5332M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005333P: Matt Mackall
5334M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005335L: linux-mm@kvack.org
5336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005337F: include/linux/sl?b*.h
5338F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005339
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340SMC91x ETHERNET DRIVER
5341P: Nicolas Pitre
5342M: nico@cam.org
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005346SMSC47B397 HARDWARE MONITOR DRIVER
5347P: Mark M. Hoffman
5348M: mhoffman@lightlink.com
5349L: lm-sensors@lm-sensors.org
5350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005351F: Documentation/hwmon/smsc47b397
5352F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005353
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005354SMSC911x ETHERNET DRIVER
5355P: Steve Glendinning
5356M: steve.glendinning@smsc.com
5357L: netdev@vger.kernel.org
5358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005359F: include/linux/smsc911x.h
5360F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005361
Steve Glendinning2cb37722008-12-11 20:54:30 -08005362SMSC9420 PCI ETHERNET DRIVER
5363P: Steve Glendinning
5364M: steve.glendinning@smsc.com
5365L: netdev@vger.kernel.org
5366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005367F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005368
Ben Nizetteb54f2862008-03-13 22:27:30 +11005369SMX UIO Interface
5370P: Ben Nizette
5371M: bn@niasdigital.com
5372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005373F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005374
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005375SN-IA64 (Itanium) SUB-PLATFORM
5376P: Jes Sorensen
5377M: jes@sgi.com
5378L: linux-altix@sgi.com
5379L: linux-ia64@vger.kernel.org
5380W: http://www.sgi.com/altix
5381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005382F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005383
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005384SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005385P: Guennadi Liakhovetski
5386M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005387L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005388T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005390F: include/media/v4l2*
5391F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005392
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005393SOEKRIS NET48XX LED SUPPORT
5394P: Chris Boot
5395M: bootc@bootc.net
5396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005397F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005398
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005401M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005404F: drivers/md/
5405F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407SONIC NETWORK DRIVER
5408P: Thomas Bogendoerfer
5409M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005410L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
Michael Buesch61e115a2007-09-18 15:12:50 -04005414SONICS SILICON BACKPLANE DRIVER (SSB)
5415P: Michael Buesch
5416M: mb@bu3sch.de
5417L: netdev@vger.kernel.org
5418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005419F: drivers/ssb/
5420F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005421
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005423P: Mattia Dongili
5424M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005425L: linux-acpi@vger.kernel.org
5426W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005428F: Documentation/laptops/sony-laptop.txt
5429F: drivers/char/sonypi.c
5430F: drivers/platform/x86/sony-laptop.c
5431F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Alex Dubovbaf85322008-02-09 10:20:54 -08005433SONY MEMORYSTICK CARD SUPPORT
5434P: Alex Dubov
5435M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005436W: http://tifmxx.berlios.de/
5437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005438F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005439
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440SOUND
5441P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005442M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005443P: Takashi Iwai
5444M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005445L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005446W: http://www.alsa-project.org/
5447T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5448T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005450F: Documentation/sound/
5451F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005452F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Mark Brownbd903bd2008-11-19 19:16:05 +00005454SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005455P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005456M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005457P: Mark Brown
5458M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005459T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005460L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005461W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005463F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005464F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005465
Sam Ravnborg473321f2009-01-04 15:47:49 -08005466SPARC + UltraSPARC (sparc/sparc64)
5467P: David S. Miller
5468M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005470T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5471T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
5475SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5476P: Roger Wolff
5477M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/serial/specialix.txt
5480F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005482SPI SUBSYSTEM
5483P: David Brownell
5484M: dbrownell@users.sourceforge.net
5485L: spi-devel-general@lists.sourceforge.net
5486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005487F: Documentation/spi/
5488F: drivers/spi/
5489F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005490
Jim Lewis2752e402006-09-29 02:01:19 -07005491SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005492P: Ishizaki Kou
5493M: kou.ishizaki@toshiba.co.jp
5494P: Jens Osterkamp
5495M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005496L: netdev@vger.kernel.org
5497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005498F: Documentation/networking/spider_net.txt
5499F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005500
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005501SPU FILE SYSTEM
5502P: Jeremy Kerr
5503M: jk@ozlabs.org
5504L: linuxppc-dev@ozlabs.org
5505L: cbe-oss-dev@ozlabs.org
5506W: http://www.ibm.com/developerworks/power/cell/
5507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005508F: Documentation/filesystems/spufs.txt
5509F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005510
Phillip Lougherfc555842009-01-05 08:46:29 +00005511SQUASHFS FILE SYSTEM
5512P: Phillip Lougher
5513M: phillip@lougher.demon.co.uk
5514L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5515W: http://squashfs.org.uk
5516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005517F: Documentation/filesystems/squashfs.txt
5518F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005519
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520SRM (Alpha) environment access
5521P: Jan-Benedict Glaw
5522M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005524F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525
Linus Torvalds26e9a392008-10-17 09:50:12 -07005526STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005527P: Greg Kroah-Hartman
5528M: greg@kroah.com
5529P: Chris Wright
5530M: chrisw@sous-sol.org
5531L: stable@kernel.org
5532S: Maintained
5533
Linus Torvalds26e9a392008-10-17 09:50:12 -07005534STAGING SUBSYSTEM
5535P: Greg Kroah-Hartman
5536M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005537T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005538L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005540F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005541
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542STARFIRE/DURALAN NETWORK DRIVER
5543P: Ion Badulescu
5544M: ionut@cs.columbia.edu
5545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
5548STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005549S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005550F: drivers/net/wireless/strip.c
5551F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552
5553STRADIS MPEG-2 DECODER DRIVER
5554P: Nathan Laredo
5555M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556W: http://www.stradis.com/
5557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005558F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005560SUN3/3X
5561P: Sam Creasey
5562M: sammy@sammy.net
5563W: http://sammy.net/sun3/
5564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005565F: arch/m68k/kernel/*sun3*
5566F: arch/m68k/sun3*/
5567F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005568
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005569SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570P: Paul Mundt
5571M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005572L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005574T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005575S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005576F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005577F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005578F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005580SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005581P: Len Brown
5582M: len.brown@intel.com
5583P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005584M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005585P: Rafael J. Wysocki
5586M: rjw@sisk.pl
5587L: linux-pm@lists.linux-foundation.org
5588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005589F: Documentation/power/
5590F: arch/x86/kernel/acpi/
5591F: drivers/base/power/
5592F: kernel/power/
5593F: include/linux/suspend.h
5594F: include/linux/freezer.h
5595F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
5597SVGA HANDLING
5598P: Martin Mares
5599M: mj@ucw.cz
5600L: linux-video@atrey.karlin.mff.cuni.cz
5601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005602F: Documentation/svga.txt
5603F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605SYSV FILESYSTEM
5606P: Christoph Hellwig
5607M: hch@infradead.org
5608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005609F: Documentation/filesystems/sysv-fs.txt
5610F: fs/sysv/
5611F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Alan Cox4e688522008-04-30 00:52:11 -07005613TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005614P: Balbir Singh
5615M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005617F: Documentation/accounting/taskstats*
5618F: include/linux/taskstats*
5619F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005620
Stephen Hemminger781b4562006-07-10 20:25:29 -07005621TC CLASSIFIER
5622P: Jamal Hadi Salim
5623M: hadi@cyberus.ca
5624L: netdev@vger.kernel.org
5625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005626F: include/linux/pkt_cls.h
5627F: include/net/pkt_cls.h
5628F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005629
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005630TCP LOW PRIORITY MODULE
5631P: Wong Hoi Sing, Edison
5632M: hswong3i@gmail.com
5633P: Hung Hing Lun, Mike
5634M: hlhung3i@gmail.com
5635W: http://tcp-lp-mod.sourceforge.net/
5636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005637F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005638
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005639TEHUTI ETHERNET DRIVER
5640P: Alexander Indenbaum
5641M: baum@tehutinetworks.net
5642P: Andy Gospodarek
5643M: andy@greyhouse.net
5644L: netdev@vger.kernel.org
5645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005646F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005647
Alan Cox4e688522008-04-30 00:52:11 -07005648Telecom Clock Driver for MCPL0010
5649P: Mark Gross
5650M: mark.gross@intel.com
5651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005652F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005653
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005654TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005655P: Chris Zankel
5656M: chris@zankel.net
5657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005658F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005659
5660THINKPAD ACPI EXTRAS DRIVER
5661P: Henrique de Moraes Holschuh
5662M: ibm-acpi@hmh.eng.br
5663L: ibm-acpi-devel@lists.sourceforge.net
5664W: http://ibm-acpi.sourceforge.net
5665W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005666T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005669
Alex Dubov4020f2d2006-10-04 02:15:37 -07005670TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005671P: Alex Dubov
5672M: oakad@yahoo.com
5673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005674F: drivers/misc/tifm*
5675F: drivers/mmc/host/tifm_sd.c
5676F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005677
Per Lidene86eaa32006-01-12 16:45:18 +01005678TIPC NETWORK LAYER
5679P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005680M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005681P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005682M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005683P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005684M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005685L: tipc-discussion@lists.sourceforge.net
5686W: http://tipc.sourceforge.net/
5687W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005688T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005690F: include/linux/tipc*.h
5691F: include/net/tipc/
5692F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005693
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694TLAN NETWORK DRIVER
5695P: Samuel Chessman
5696M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005697L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698W: http://sourceforge.net/projects/tlan/
5699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005700F: Documentation/networking/tlan.txt
5701F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005703TOMOYO SECURITY MODULE
5704P: Kentaro Takeda
5705M: takedakn@nttdata.co.jp
5706P: Tetsuo Handa
5707M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005708L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5709L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5710L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5711W: http://tomoyo.sourceforge.jp/
5712T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005715
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005717S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005718F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
5720TOSHIBA SMM DRIVER
5721P: Jonathan Buzzard
5722M: jonathan@buzzard.org.uk
5723L: tlinux-users@tce.toshiba-dme.co.jp
5724W: http://www.buzzard.org.uk/toshiba/
5725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: drivers/char/toshiba.c
5727F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Pierre Ossmand719f902009-03-24 21:06:09 +01005729TMIO MMC DRIVER
5730P: Ian Molton
5731M: ian@mnementh.co.uk
5732S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005733F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005734
Hugh Dickins98f32602009-05-21 20:33:58 +01005735TMPFS (SHMEM FILESYSTEM)
5736P: Hugh Dickins
5737M: hugh.dickins@tiscali.co.uk
5738L: linux-mm@kvack.org
5739S: Maintained
5740F: include/linux/shmem_fs.h
5741F: mm/shmem.c
5742
Alan Cox4e688522008-04-30 00:52:11 -07005743TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005744P: Debora Velarde
5745M: debora@linux.vnet.ibm.com
5746P: Rajiv Andrade
5747M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005748W: http://tpmdd.sourceforge.net
5749P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005750M: m.selhorst@sirrix.com
5751W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005752L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005754F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005755
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005757P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005758M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005759T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005761F: drivers/char/tty_*
5762F: drivers/serial/serial_core.c
5763F: include/linux/serial_core.h
5764F: include/linux/serial.h
5765F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Alan Cox4e688522008-04-30 00:52:11 -07005767TTY LAYER
5768P: Alan Cox
5769M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005770S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005771T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005772
Grant Grundler740db6d2008-02-17 11:53:49 -07005773TULIP NETWORK DRIVERS
5774P: Grant Grundler
5775M: grundler@parisc-linux.org
5776P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005777M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005778L: netdev@vger.kernel.org
5779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005780F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781
5782TUN/TAP driver
5783P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005784M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785L: vtun@office.satix.net
5786W: http://vtun.sourceforge.net/tun
5787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: Documentation/networking/tuntap.txt
5789F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005791TURBOCHANNEL SUBSYSTEM
5792P: Maciej W. Rozycki
5793M: macro@linux-mips.org
5794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: drivers/tc/
5796F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005797
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798U14-34F SCSI DRIVER
5799P: Dario Ballabio
5800M: ballabio_dario@emc.com
5801L: linux-scsi@vger.kernel.org
5802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005803F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005805UBI FILE SYSTEM (UBIFS)
5806P: Artem Bityutskiy
5807M: dedekind@infradead.org
5808P: Adrian Hunter
5809M: ext-adrian.hunter@nokia.com
5810L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005811T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005812W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005814F: Documentation/filesystems/ubifs.txt
5815F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005816
Alan Coxcc2020e2008-05-19 14:21:51 +01005817UCLINUX (AND M68KNOMMU)
5818P: Greg Ungerer
5819M: gerg@uclinux.org
5820W: http://www.uclinux.org/
5821L: uclinux-dev@uclinux.org (subscribers-only)
5822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005824
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005825UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005826P: Yoshinori Sato
5827M: ysato@users.sourceforge.jp
5828W: http://uclinux-h8.sourceforge.jp/
5829S: Supported
5830
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005832P: Jan Kara
5833M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834W: http://linux-udf.sourceforge.net
5835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: Documentation/filesystems/udf.txt
5837F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838
Alan Coxcc2020e2008-05-19 14:21:51 +01005839UFS FILESYSTEM
5840P: Evgeniy Dushistov
5841M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005843F: Documentation/filesystems/ufs.txt
5844F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005845
David Vrabel18332a82008-09-17 16:34:44 +01005846ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5847P: David Vrabel
5848M: david.vrabel@csr.com
5849L: linux-usb@vger.kernel.org
5850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005851F: drivers/uwb/*
5852F: include/linux/uwb.h
5853F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005854
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855UNIFORM CDROM DRIVER
5856P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005857M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858W: http://www.kernel.dk
5859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005860F: Documentation/cdrom/
5861F: drivers/cdrom/cdrom.c
5862F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005864UNSORTED BLOCK IMAGES (UBI)
5865P: Artem Bityutskiy
5866M: dedekind@infradead.org
5867W: http://www.linux-mtd.infradead.org/
5868L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005869T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005870S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005871F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005872F: include/linux/mtd/ubi.h
5873F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875USB ACM DRIVER
5876P: Oliver Neukum
5877M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005878L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005880F: Documentation/usb/acm.txt
5881F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
5883USB BLOCK DRIVER (UB ub)
5884P: Pete Zaitcev
5885M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005886L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005888F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
Linus Torvalds1da177e2005-04-16 15:20:36 -07005890USB CDC ETHERNET DRIVER
5891P: Greg Kroah-Hartman
5892M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005893L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894S: Maintained
5895W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005896F: drivers/net/usb/cdc_*.c
5897F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005899USB CYPRESS C67X00 DRIVER
5900P: Peter Korsgaard
5901M: jacmet@sunsite.dk
5902L: linux-usb@vger.kernel.org
5903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005904F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005905
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005906USB DAVICOM DM9601 DRIVER
5907P: Peter Korsgaard
5908M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005909L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005910W: http://www.linux-usb.org/usbnet
5911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005912F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005913
Alan Coxcc2020e2008-05-19 14:21:51 +01005914USB DIAMOND RIO500 DRIVER
5915P: Cesar Miquel
5916M: miquel@df.uba.ar
5917L: rio500-users@lists.sourceforge.net
5918W: http://rio500.sourceforge.net
5919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005921
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922USB EHCI DRIVER
5923P: David Brownell
5924M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005925L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005926S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005927F: Documentation/usb/ehci.txt
5928F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
Luca Risolia7ce08c92006-01-11 02:06:59 +00005930USB ET61X[12]51 DRIVER
5931P: Luca Risolia
5932M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005933L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005934L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005935T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005936W: http://www.linux-projects.org
5937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005938F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005939
David Brownell69ae9e32006-11-14 02:03:31 -08005940USB GADGET/PERIPHERAL SUBSYSTEM
5941P: David Brownell
5942M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005943L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005944W: http://www.linux-usb.org/gadget
5945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005946F: drivers/usb/gadget/
5947F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005948
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005949USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005950P: Jiri Kosina
5951M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005952L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005953T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005955F: Documentation/usb/hiddev.txt
5956F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957
Olav Kongas959eea22005-11-03 17:38:14 +02005958USB ISP116X DRIVER
5959P: Olav Kongas
5960M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005961L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005963F: drivers/usb/host/isp116x*
5964F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005965
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966USB KAWASAKI LSI DRIVER
5967P: Oliver Neukum
5968M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005969L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005971F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
5973USB MASS STORAGE DRIVER
5974P: Matthew Dharm
5975M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005976L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005977L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978S: Maintained
5979W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005983P: David Brownell
5984M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005985L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005986S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005987F: Documentation/usb/ohci.txt
5988F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
Matthias Urlichsba460e42005-07-14 00:33:47 -07005990USB OPTION-CARD DRIVER
5991P: Matthias Urlichs
5992M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005993L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005995F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005996
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997USB OV511 DRIVER
5998P: Mark McClelland
5999M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006000L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001W: http://alpha.dyndns.org/ov511/
6002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
6005USB PEGASUS DRIVER
6006P: Petko Manolov
6007M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006008L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006009L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010W: http://pegasus2.sourceforge.net/
6011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006014USB PRINTER DRIVER (usblp)
6015P: Pete Zaitcev
6016M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006017L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
6021USB RTL8150 DRIVER
6022P: Petko Manolov
6023M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006024L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006025L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026W: http://pegasus2.sourceforge.net/
6027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006028F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
6030USB SE401 DRIVER
6031P: Jeroen Vreeken
6032M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006033L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034W: http://www.chello.nl/~j.vreeken/se401/
6035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006036F: Documentation/video4linux/se401.txt
6037F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
Alan Cox4e688522008-04-30 00:52:11 -07006039USB SERIAL BELKIN F5U103 DRIVER
6040P: William Greathouse
6041M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006042L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006044F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006045
6046USB SERIAL CYPRESS M8 DRIVER
6047P: Lonnie Mendez
6048M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006049L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006050S: Maintained
6051W: http://geocities.com/i0xox0i
6052W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006053F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006054
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055USB SERIAL CYBERJACK DRIVER
6056P: Matthias Bruestle and Harald Welte
6057M: support@reiner-sct.com
6058W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6059S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006060F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061
6062USB SERIAL DIGI ACCELEPORT DRIVER
6063P: Peter Berger and Al Borchers
6064M: pberger@brimson.com
6065M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006066L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006068F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069
6070USB SERIAL DRIVER
6071P: Greg Kroah-Hartman
6072M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006073L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006075F: Documentation/usb/usb-serial.txt
6076F: drivers/usb/serial/generic.c
6077F: drivers/usb/serial/usb-serial.c
6078F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6081P: Gary Brubaker
6082M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006083L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006085F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086
6087USB SERIAL KEYSPAN DRIVER
6088P: Greg Kroah-Hartman
6089M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006090L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091W: http://www.kroah.com/linux/
6092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006093F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094
6095USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006096P: Support Department
6097M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006098L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099W: http://www.connecttech.com
6100S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006101F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006103USB SMSC95XX ETHERNET DRIVER
6104P: Steve Glendinning
6105M: steve.glendinning@smsc.com
6106L: netdev@vger.kernel.org
6107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006108F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006109
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006110USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111P: Luca Risolia
6112M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006113L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006114L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006115T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116W: http://www.linux-projects.org
6117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006118F: Documentation/video4linux/sn9c102.txt
6119F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
6121USB SUBSYSTEM
6122P: Greg Kroah-Hartman
6123M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006124L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006126T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006128F: Documentation/usb/
6129F: drivers/net/usb/
6130F: drivers/usb/
6131F: include/linux/usb.h
6132F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
6134USB UHCI DRIVER
6135P: Alan Stern
6136M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006137L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006139F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
David Brownell69ae9e32006-11-14 02:03:31 -08006141USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006142P: David Brownell
6143M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006144L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006145W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006147F: drivers/net/usb/usbnet.c
6148F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006150USB VIDEO CLASS
6151P: Laurent Pinchart
6152M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006153L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006154L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006155T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006156W: http://linux-uvc.berlios.de
6157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006158F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006159
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160USB W996[87]CF DRIVER
6161P: Luca Risolia
6162M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006163L: linux-usb@vger.kernel.org
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07006166W: http://www.linux-projects.org
6167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006168F: Documentation/video4linux/w9968cf.txt
6169F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006171USB WIRELESS RNDIS DRIVER (rndis_wlan)
6172P: Jussi Kivilinna
6173M: jussi.kivilinna@mbnet.fi
6174L: linux-wireless@vger.kernel.org
6175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006176F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006177
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006178USB XHCI DRIVER
6179P: Sarah Sharp
6180M: sarah.a.sharp@intel.com
6181L: linux-usb@vger.kernel.org
6182S: Supported
6183
Luca Risolia60f78052006-02-06 16:29:35 +00006184USB ZC0301 DRIVER
6185P: Luca Risolia
6186M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006187L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006188L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006189T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006190W: http://www.linux-projects.org
6191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006192F: Documentation/video4linux/zc0301.txt
6193F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006194
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195USB ZD1201 DRIVER
6196P: Jeroen Vreeken
6197M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006198L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199W: http://linux-lc100020.sourceforge.net
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006203USB ZR364XX DRIVER
6204P: Antoine Jacquet
6205M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006206L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006207L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006208T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006209W: http://royale.zerezo.com/zr364xx/
6210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: Documentation/video4linux/zr364xx.txt
6212F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006213
Randy Dunlape7839f22008-10-12 16:11:45 -07006214USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006216M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217L: user-mode-linux-devel@lists.sourceforge.net
6218L: user-mode-linux-user@lists.sourceforge.net
6219W: http://user-mode-linux.sourceforge.net
6220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: Documentation/uml/
6222F: arch/um/
6223F: fs/hostfs/
6224F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006225
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006226USERSPACE I/O (UIO)
6227P: Hans J. Koch
6228M: hjk@linutronix.de
6229P: Greg Kroah-Hartman
6230M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006232F: Documentation/DocBook/uio-howto.tmpl
6233F: drivers/uio/
6234F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006235
Karel Zakf899b0a2008-05-23 13:04:21 -07006236UTIL-LINUX-NG PACKAGE
6237P: Karel Zak
6238M: kzak@redhat.com
6239L: util-linux-ng@vger.kernel.org
6240W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006241T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006242S: Maintained
6243
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006244UVESAFB DRIVER
6245P: Michal Januszewski
6246M: spock@gentoo.org
6247L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6248W: http://dev.gentoo.org/~spock/projects/uvesafb/
6249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006250F: Documentation/fb/uvesafb.txt
6251F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006252
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006253VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254P: OGAWA Hirofumi
6255M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006257F: Documentation/filesystems/vfat.txt
6258F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260VIA RHINE NETWORK DRIVER
6261P: Roger Luethi
6262M: rl@hellgate.ch
6263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006264F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265
Jean Delvare32c0a522005-09-22 21:47:58 +02006266VIAPRO SMBUS DRIVER
6267P: Jean Delvare
6268M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006269L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006271F: Documentation/i2c/busses/i2c-viapro
6272F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006273
Harald Weltef0bf7f62009-06-17 20:22:39 +02006274VIA SD/MMC CARD CONTROLLER DRIVER
6275P: Joseph Chan
6276M: JosephChan@via.com.tw
6277P: Harald Welte
6278M: HaraldWelte@viatech.com
6279S: Maintained
6280F: drivers/mmc/host/via-sdmmc.c
6281
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006282VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6283P: Joseph Chan
6284M: JosephChan@via.com.tw
6285P: Scott Fang
6286M: ScottFang@viatech.com.cn
6287L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006290
Francois Romieu01f20732007-01-26 00:57:17 -08006291VIA VELOCITY NETWORK DRIVER
6292P: Francois Romieu
6293M: romieu@fr.zoreil.com
6294L: netdev@vger.kernel.org
6295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297
Patrick McHardybe7f8272007-10-23 20:26:36 -07006298VLAN (802.1Q)
6299P: Patrick McHardy
6300M: kaber@trash.net
6301L: netdev@vger.kernel.org
6302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006303F: drivers/net/macvlan.c
6304F: include/linux/if_*vlan.h
6305F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006306
Florian Fainelli55e331c2009-06-16 15:33:53 -07006307VLYNQ BUS
6308P: Florian Fainelli
6309M: florian@openwrt.org
6310L: openwrt-devel@lists.openwrt.org
6311S: Maintained
6312F: drivers/vlynq/vlynq.c
6313F: include/linux/vlynq.h
6314
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006315VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6316P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006317M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006318P: Mark Brown
6319M: broonie@opensource.wolfsonmicro.com
6320W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006321W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006322T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006324F: drivers/regulator/
6325F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006326
Juerg Haefligerab413192006-09-24 20:54:04 +02006327VT1211 HARDWARE MONITOR DRIVER
6328P: Juerg Haefliger
6329M: juergh@gmail.com
6330L: lm-sensors@lm-sensors.org
6331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006332F: Documentation/hwmon/vt1211
6333F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006334
Roger Lucas1de9e372005-11-26 20:20:05 +01006335VT8231 HARDWARE MONITOR DRIVER
6336P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006337M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006338L: lm-sensors@lm-sensors.org
6339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006340F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006341
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342W1 DALLAS'S 1-WIRE BUS
6343P: Evgeniy Polyakov
6344M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006346F: Documentation/w1/
6347F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348
Charles Spirakis13927072006-07-05 18:05:15 +02006349W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006350P: Marc Hulsman
6351M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006352L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006354F: Documentation/hwmon/w83791d
6355F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006356
Rudolf Marek61db0112006-12-12 18:18:30 +01006357W83793 HARDWARE MONITORING DRIVER
6358P: Rudolf Marek
6359M: r.marek@assembler.cz
6360L: lm-sensors@lm-sensors.org
6361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: Documentation/hwmon/w83793
6363F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006364
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365W83L51xD SD/MMC CARD INTERFACE DRIVER
6366P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006367M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006371WATCHDOG DEVICE DRIVERS
6372P: Wim Van Sebroeck
6373M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006374T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006376F: Documentation/watchdog/
6377F: drivers/watchdog/
6378F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006379
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6381P: Jean Tourrilhes
6382M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006383L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/networking/wavelan.txt
6387F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388
6389WD7000 SCSI DRIVER
6390P: Miroslav Zagorac
6391M: zaga@fly.cc.fer.hr
6392L: linux-scsi@vger.kernel.org
6393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006394F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006396WIMAX STACK
6397P: Inaky Perez-Gonzalez
6398M: inaky.perez-gonzalez@intel.com
6399M: linux-wimax@intel.com
6400L: wimax@linuxwimax.org
6401S: Supported
6402W: http://linuxwimax.org
6403
David Vrabel18332a82008-09-17 16:34:44 +01006404WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6405P: David Vrabel
6406M: david.vrabel@csr.com
6407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006408F: include/linux/wlp.h
6409F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006410
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006411WISTRON LAPTOP BUTTON DRIVER
6412P: Miloslav Trmac
6413M: mitr@volny.cz
6414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006415F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417WL3501 WIRELESS PCMCIA CARD DRIVER
6418P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006419M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006420L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006421W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006423F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424
Mark Brownfebf1df2008-04-02 00:51:09 -04006425WM97XX TOUCHSCREEN DRIVERS
6426P: Mark Brown
6427M: broonie@opensource.wolfsonmicro.com
6428P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006429M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006430L: linux-input@vger.kernel.org
6431T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6432W: http://opensource.wolfsonmicro.com/node/7
6433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006434F: drivers/input/touchscreen/*wm97*
6435F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006436
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437X.25 NETWORK LAYER
6438P: Henner Eisen
6439M: eis@baty.hanse.de
6440L: linux-x25@vger.kernel.org
6441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006442F: Documentation/networking/x25*
6443F: include/net/x25*
6444F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006446X86 ARCHITECTURE (32-BIT AND 64-BIT)
6447P: Thomas Gleixner
6448M: tglx@linutronix.de
6449P: Ingo Molnar
6450M: mingo@redhat.com
6451P: H. Peter Anvin
6452M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006453M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006454T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006456F: Documentation/x86/
6457F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006458
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006459XEN HYPERVISOR INTERFACE
6460P: Jeremy Fitzhardinge
6461M: jeremy@xensource.com
6462P: Chris Wright
6463M: chrisw@sous-sol.org
6464L: virtualization@lists.osdl.org
6465L: xen-devel@lists.xensource.com
6466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006467F: arch/x86/xen/
6468F: drivers/*/xen-*front.c
6469F: drivers/xen/
6470F: arch/x86/include/asm/xen/
6471F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006472
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473XFS FILESYSTEM
6474P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006475P: Felix Blyakher
6476M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006478L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006480T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006482F: Documentation/filesystems/xfs.txt
6483F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006485XILINX SYSTEMACE DRIVER
6486P: Grant Likely
6487M: grant.likely@secretlab.ca
6488W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006490F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006491
Peter Korsgaard238b8722006-12-06 20:35:17 -08006492XILINX UARTLITE SERIAL DRIVER
6493P: Peter Korsgaard
6494M: jacmet@sunsite.dk
6495L: linux-serial@vger.kernel.org
6496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006497F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006498
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499YAM DRIVER FOR AX.25
6500P: Jean-Paul Roubelat
6501M: jpr@f6fbb.org
6502L: linux-hams@vger.kernel.org
6503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006504F: drivers/net/hamradio/yam*
6505F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506
Henkaf64a5e2005-10-12 15:02:56 +02006507YEALINK PHONE DRIVER
6508P: Henk Vergonet
6509M: Henk.Vergonet@gmail.com
6510L: usbb2k-api-dev@nongnu.org
6511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006512F: Documentation/input/yealink.txt
6513F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006514
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515Z8530 DRIVER FOR AX.25
6516P: Joerg Reuter
6517M: jreuter@yaina.de
6518W: http://yaina.de/jreuter/
6519W: http://www.qsl.net/dl1bke/
6520L: linux-hams@vger.kernel.org
6521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006522F: Documentation/networking/z8530drv.txt
6523F: drivers/net/hamradio/*scc.c
6524F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006526ZD1211RW WIRELESS DRIVER
6527P: Daniel Drake
6528M: dsd@gentoo.org
6529P: Ulrich Kunitz
6530M: kune@deine-taler.de
6531W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006532L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006533L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006535F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006536
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006539L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006540W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006541T: Mercurial http://linuxtv.org/hg/v4l-dvb
6542S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006543F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006545ZS DECSTATION Z85C30 SERIAL DRIVER
6546P: Maciej W. Rozycki
6547M: macro@linux-mips.org
6548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006549F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006550
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551THE REST
6552P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006553M: torvalds@linux-foundation.org
6554L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006555T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006557F: *
6558F: */