blob: 7b91c6e69d559bdf7f29b99c5f430c146b5def8c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
76P: Person
77M: Mail patches to
78L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
107P: Philip Blundell
108M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700109L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700111F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Steffen Klasserta6d89912007-08-10 14:05:27 -07001133C59X NETWORK DRIVER
114P: Steffen Klassert
115M: klassert@mathematik.tu-chemnitz.de
116L: netdev@vger.kernel.org
117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: Documentation/networking/vortex.txt
119F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213CR990 NETWORK DRIVER
122P: David Dillow
123M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129P: Adam Radford
130M: linuxraid@amcc.com
131L: linux-scsi@vger.kernel.org
132W: http://www.amcc.com
133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700134F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001363W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137P: Adam Radford
138M: linuxraid@amcc.com
139L: linux-scsi@vger.kernel.org
140W: http://www.amcc.com
141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700142F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
14453C700 AND 53C700-66 SCSI DRIVER
145P: James E.J. Bottomley
146M: James.Bottomley@HansenPartnership.com
147L: linux-scsi@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1516PACK NETWORK DRIVER FOR AX.25
152P: Andreas Koensgen
153M: ajk@iehk.rwth-aachen.de
154L: linux-hams@vger.kernel.org
155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700156F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588169 10/100/1000 GIGABIT ETHERNET DRIVER
159P: Francois Romieu
160M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Joe Perchesdc987922009-06-16 17:01:52 +0100166P: Alan Cox
167M: alan@lxorguk.ukuu.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168L: linux-serial@vger.kernel.org
169W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100170S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/serial/8250*
172F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
1748390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
175P: Paul Gortmaker
176M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700177L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: drivers/net/*8390*
180F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001829P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100183P: Eric Van Hensbergen
184M: ericvh@gmail.com
185P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500186M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100187P: Latchesar Ionkov
188M: lucho@ionkov.net
189L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500190W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700191T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700193F: Documentation/filesystems/9p.txt
194F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196A2232 SERIAL BOARD DRIVER
197P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198M: A2232@gmx.net
199L: linux-m68k@lists.linux-m68k.org
200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700201F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700203AACRAID SCSI RAID DRIVER
204P: Adaptec OEM Raid Solutions
205M: aacraid@adaptec.com
206L: linux-scsi@vger.kernel.org
207W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700209F: Documentation/scsi/aacraid.txt
210F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200213P: Hans de Goede
214M: j.w.r.degoede@hhs.nl
215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200218
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700219ABIT UGURU 3 HARDWARE MONITOR DRIVER
220P: Alistair John Strachan
221M: alistair@devzero.co.uk
222L: lm-sensors@lm-sensors.org
223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226ACENIC DRIVER
227P: Jes Sorensen
228M: jes@trained-monkey.org
229L: linux-acenic@sunsite.dk
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Peter Feuerere86435e2009-06-21 18:53:03 +0200233ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
234P: Peter Feuerer
235M: peter@piie.net
236W: http://piie.net/?section=acerhdf
237S: Maintained
238F: drivers/platform/x86/acerhdf.c
239
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000240ACER WMI LAPTOP EXTRAS
241P: Carlos Corbacho
242M: carlos@strangeworlds.co.uk
243L: aceracpi@googlegroups.com (subscribers-only)
244W: http://code.google.com/p/aceracpi
245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700246F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200249P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500250M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500251L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400252W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700253T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500254S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700255F: drivers/acpi/
256F: drivers/pnp/pnpacpi/
257F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500258
259ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400260P: Alexey Starikovskiy
261M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500262L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300263W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500264S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700265F: drivers/acpi/battery.c
266F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500267
268ACPI EC DRIVER
269P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400270M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500271L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300272W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700274F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500275
276ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400277P: Zhang Rui
278M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500279L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300280W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700284ACPI PCI HOTPLUG DRIVER
285P: Kristen Carlson Accardi
286M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700287L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700289F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500290
291ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400292P: Zhang Rui
293M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500294L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300295W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500296S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700297F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700298
Len Brown359acec2007-02-10 01:59:24 -0500299ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400300P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400301M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500302L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300303W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500304S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700305F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500306
Carlos Corbachobff431e2008-02-05 02:17:04 +0000307ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200308P: Carlos Corbacho
309M: carlos@strangeworlds.co.uk
310L: linux-acpi@vger.kernel.org
311W: http://www.lesswatts.org/projects/acpi/
312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000314
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100315AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200316P: Kyle McMartin
317M: kyle@mcmartin.ca
318P: Thibaut Varene
319M: T-Bone@parisc-linux.org
320W: http://wiki.parisc-linux.org/AD1889
321L: linux-parisc@vger.kernel.org
322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325ADM1025 HARDWARE MONITOR DRIVER
326P: Jean Delvare
327M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200328L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: Documentation/hwmon/adm1025
331F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Corentin Labbecae2caa2007-02-14 21:15:04 +0100333ADM1029 HARDWARE MONITOR DRIVER
334P: Corentin Labbe
335M: corentin.labbe@geomatys.fr
336L: lm-sensors@lm-sensors.org
337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100339
Michael Wucc0b88c2007-08-31 01:15:25 -0400340ADM8211 WIRELESS DRIVER
341P: Michael Wu
342M: flamingice@sourmilk.net
343L: linux-wireless@vger.kernel.org
344W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700347F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349ADT746X FAN DRIVER
350P: Colin Leroy
351M: colin@colino.net
352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700353F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400355ADVANSYS SCSI DRIVER
356P: Matthew Wilcox
357M: matthew@wil.cx
358L: linux-scsi@vger.kernel.org
359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700360F: Documentation/scsi/advansys.txt
361F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363AEDSP16 DRIVER
364P: Riccardo Facchetti
365M: fizban@tin.it
366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700367F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369AFFS FILE SYSTEM
370P: Roman Zippel
371M: zippel@linux-m68k.org
372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700373F: Documentation/filesystems/affs.txt
374F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700376AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
377P: David Howells
378M: dhowells@redhat.com
379L: linux-afs@lists.infradead.org
380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700381F: fs/afs/
382F: include/net/af_rxrpc.h
383F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400386P: David Airlie
387M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700388T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700390F: drivers/char/agp/
391F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393AHA152X SCSI DRIVER
394P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700395M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396L: linux-scsi@vger.kernel.org
397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/scsi/aha152x*
399F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Hannes Reinecke64624d42007-10-19 10:32:29 +0200401AIC7XXX / AIC79XX SCSI DRIVER
402P: Hannes Reinecke
403M: hare@suse.de
404L: linux-scsi@vger.kernel.org
405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700406F: drivers/scsi/aic7xxx/
407F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200408
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700409AIO
410P: Benjamin LaHaise
411M: bcrl@kvack.org
412L: linux-aio@kvack.org
413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700414F: fs/aio.c
415F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417ALCATEL SPEEDTOUCH USB DRIVER
418P: Duncan Sands
419M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700420L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421W: http://www.linux-usb.org/SpeedTouch/
422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700423F: drivers/usb/atm/speedtch.c
424F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Pierre Ossman272f1332007-05-14 21:25:26 +0200426ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200427P: Manuel Lauss
428M: manuel.lauss@gmail.com
429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700430F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200431
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000432ALI1563 I2C DRIVER
433P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100434M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100435L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700437F: Documentation/i2c/busses/i2c-ali1563
438F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440ALPHA PORT
441P: Richard Henderson
442M: rth@twiddle.net
443S: Odd Fixes for 2.4; Maintained for 2.6.
444P: Ivan Kokshaysky
445M: ink@jurassic.park.msu.ru
446S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700447L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700448F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700450AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
451P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700452M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700453L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700456
Jordan Crousef90b8112006-01-06 00:12:14 -0800457AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100458P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700459L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800460W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700462F: arch/x86/kernel/geode_32.c
463F: drivers/char/hw_random/geode-rng.c
464F: drivers/crypto/geode*
465F: drivers/video/geode/
466F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800467
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200468AMD IOMMU (AMD-VI)
469P: Joerg Roedel
470M: joerg.roedel@amd.com
471L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700472T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700474F: arch/x86/kernel/amd_iommu*.c
475F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200476
Peter Orubae7f5b302008-07-28 18:44:11 +0200477AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700478P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700479M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700480L: amd64-microcode@amd64.org
481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700482F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200483
Stelian Pop284f42b2006-12-12 18:18:31 +0100484AMS (Apple Motion Sensor) DRIVER
485P: Stelian Pop
486M: stelian@popies.net
487P: Michael Hanselmann
488M: linux-kernel@hansmi.ch
489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700490F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100491
Tom Tuckerf94b5332006-09-22 15:22:48 -0700492AMSO1100 RNIC DRIVER
493P: Tom Tucker
494M: tom@opengridcomputing.com
495P: Steve Wise
496M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700497L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700500
Johannes Berg42269062006-07-25 16:15:50 +0200501AOA (Apple Onboard Audio) ALSA DRIVER
502P: Johannes Berg
503M: johannes@sipsolutions.net
504L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700505L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700507F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509APM DRIVER
510P: Stephen Rothwell
511M: sfr@canb.auug.org.au
512L: linux-laptop@vger.kernel.org
513W: http://www.canb.auug.org.au/~sfr/
514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700515F: arch/x86/kernel/apm_32.c
516F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700518APPLE BCM5974 MULTITOUCH DRIVER
519P: Henrik Rydberg
520M: rydberg@euromail.se
521L: linux-input@vger.kernel.org
522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700524
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700525APPLE SMC DRIVER
526P: Nicolas Boichat
527M: nicolas@boichat.ch
528L: mactel-linux-devel@lists.sourceforge.net
529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700530F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532APPLETALK NETWORK LAYER
533P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300534M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/net/appletalk/
537F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400539APPLETOUCH TOUCHPAD DRIVER
540P: Johannes Berg
541M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400542L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: Documentation/input/appletouch.txt
545F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400546
Jaya Kumar1154ea72005-06-21 17:17:04 -0700547ARC FRAMEBUFFER DRIVER
548P: Jaya Kumar
549M: jayalk@intworks.biz
550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: drivers/video/arcfb.c
552F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554ARM MFM AND FLOPPY DRIVERS
555P: Ian Molton
556M: spyro@f2s.com
557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700558F: arch/arm/lib/floppydma.S
559F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Russell Kingd4275352009-04-16 14:05:27 +0100561ARM PORT
562P: Russell King
563M: linux@arm.linux.org.uk
564L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
565W: http://www.arm.linux.org.uk/
566S: Maintained
567F: arch/arm/
568
Russell King2761f5c2007-05-24 06:56:08 +0200569ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200570S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700571F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200572
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800573ARM/ADI ROADRUNNER MACHINE SUPPORT
574P: Lennert Buytenhek
575M: kernel@wantstofly.org
576L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700578F: arch/arm/mach-ixp23xx/
579F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800580
581ARM/ADS SPHERE MACHINE SUPPORT
582P: Lennert Buytenhek
583M: kernel@wantstofly.org
584L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
585S: Maintained
586
Sergey Lapin9c784f92008-08-03 02:29:48 +0100587ARM/AFEB9260 MACHINE SUPPORT
588P: Sergey Lapin
589M: slapin@ossfans.org
590L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
591S: Maintained
592
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800593ARM/AJECO 1ARM MACHINE SUPPORT
594P: Lennert Buytenhek
595M: kernel@wantstofly.org
596L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
597S: Maintained
598
Andrew Victord4a89c72006-12-04 13:56:21 +0100599ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200600P: Andrew Victor
601M: linux@maxim.org.za
602L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
603W: http://maxim.org.za/at91_26.html
604S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100605
Leo Chen57a473f2009-08-12 22:08:48 +0100606ARM/BCMRING ARM ARCHITECTURE
607P: Leo Chen <leochen@broadcom.com>
608P: Scott Branden <sbranden@broadcom.com>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800609L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
610S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100611F: arch/arm/mach-bcmring
612
613ARM/BCMRING MTD NAND DRIVER
614P: Leo Chen <leochen@broadcom.com>
615P: Scott Branden <sbranden@broadcom.com>
616L: linux-mtd@lists.infradead.org
617S: Maintained
618F: drivers/mtd/nand/bcm_umi_nand.c
619F: drivers/mtd/nand/bcm_umi_bch.c
620F: drivers/mtd/nand/bcm_umi_hamming.c
621F: drivers/mtd/nand/nand_bcm_umi.h
622
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800623ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Hartley Sweetend19d3662009-07-10 23:02:59 +0100624P: Hartley Sweeten
625M: hsweeten@visionengravers.com
626P: Ryan Mallon
627M: ryan@bluewatersys.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800628L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
629S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100630F: arch/arm/mach-ep93xx/
631F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800632
633ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
634P: Lennert Buytenhek
635M: kernel@wantstofly.org
636L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
637S: Maintained
638
Russell Kingd4275352009-04-16 14:05:27 +0100639ARM/CLKDEV SUPPORT
640P: Russell King
641M: linux@arm.linux.org.uk
642L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
643F: arch/arm/common/clkdev.c
644F: arch/arm/include/asm/clkdev.h
645
Mike Rapoportd48134e2008-08-20 09:03:26 +0100646ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100647P: Mike Rapoport
648M: mike@compulab.co.il
649L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
650S: Maintained
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652ARM/CORGI MACHINE SUPPORT
653P: Richard Purdie
654M: rpurdie@rpsys.net
655S: Maintained
656
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200657ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
658P: Paulius Zaleckas
659M: paulius.zaleckas@teltonika.lt
660L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700661T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200662S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300663F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200664
Russell Kingd4275352009-04-16 14:05:27 +0100665ARM/EBSA110 MACHINE SUPPORT
666P: Russell King
667M: linux@arm.linux.org.uk
668L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
669W: http://www.arm.linux.org.uk/
670S: Maintained
671F: arch/arm/mach-ebsa110/
672F: drivers/net/arm/am79c961a.*
673
Russell Kinga9da4f72008-07-12 21:42:04 +0100674ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
675P: Daniel Ribeiro
676M: drwyrm@gmail.com
677P: Stefan Schmidt
678M: stefan@openezx.org
679P: Harald Welte
680M: laforge@openezx.org
681L: openezx-devel@lists.openezx.org (subscribers-only)
682W: http://www.openezx.org/
683S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200684T: topgit git://git.openezx.org/openezx.git
685F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100686
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200687ARM/FARADAY FA526 PORT
688P: Paulius Zaleckas
689M: paulius.zaleckas@teltonika.lt
690L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
691S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300692F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200693
Russell Kingd4275352009-04-16 14:05:27 +0100694ARM/FOOTBRIDGE ARCHITECTURE
695P: Russell King
696M: linux@arm.linux.org.uk
697L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
698W: http://www.arm.linux.org.uk/
699S: Maintained
700F: arch/arm/include/asm/hardware/dec21285.h
701F: arch/arm/mach-footbridge/
702
Sascha Hauer86183a52008-07-24 23:50:35 +0200703ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
704P: Sascha Hauer
705M: kernel@pengutronix.de
706L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
707S: Maintained
708
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
710P: Lennert Buytenhek
711M: kernel@wantstofly.org
712L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
713S: Maintained
714
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100715ARM/GUMSTIX MACHINE SUPPORT
716P: Steve Sakoman
717M: sakoman@gmail.com
718L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
719S: Maintained
720
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200721ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
722P: Philipp Zabel
723M: philipp.zabel@gmail.com
724S: Maintained
725F: arch/arm/mach-pxa/hx4700.c
726F: arch/arm/mach-pxa/include/mach/hx4700.h
727
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100728ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200729P: Kristoffer Ericson
730M: kristoffer.ericson@gmail.com
731W: www.jlime.com
732S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100733
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800734ARM/INTEL IOP32X ARM ARCHITECTURE
735P: Lennert Buytenhek
736M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100737P: Dan Williams
738M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800739L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100740S: Supported
741
742ARM/INTEL IOP33X ARM ARCHITECTURE
743P: Dan Williams
744M: dan.j.williams@intel.com
745L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
746S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800747
748ARM/INTEL IOP13XX ARM ARCHITECTURE
749P: Lennert Buytenhek
750M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100751P: Dan Williams
752M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800753L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100754S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800755
756ARM/INTEL IQ81342EX MACHINE SUPPORT
757P: Lennert Buytenhek
758M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100759P: Dan Williams
760M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100762S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763
764ARM/INTEL IXP2000 ARM ARCHITECTURE
765P: Lennert Buytenhek
766M: kernel@wantstofly.org
767L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
768S: Maintained
769
770ARM/INTEL IXDP2850 MACHINE SUPPORT
771P: Lennert Buytenhek
772M: kernel@wantstofly.org
773L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
774S: Maintained
775
776ARM/INTEL IXP23XX ARM ARCHITECTURE
777P: Lennert Buytenhek
778M: kernel@wantstofly.org
779L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
780S: Maintained
781
782ARM/INTEL XSC3 (MANZANO) ARM CORE
783P: Lennert Buytenhek
784M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100785P: Dan Williams
786M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800787L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100788S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800789
790ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
791P: Lennert Buytenhek
792M: kernel@wantstofly.org
793L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
794S: Maintained
795
796ARM/LOGICPD PXA270 MACHINE SUPPORT
797P: Lennert Buytenhek
798M: kernel@wantstofly.org
799L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
800S: Maintained
801
Philipp Zabel3b8861712008-07-09 21:27:15 +0100802ARM/MAGICIAN MACHINE SUPPORT
803P: Philipp Zabel
804M: philipp.zabel@gmail.com
805S: Maintained
806
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200807ARM/MIOA701 MACHINE SUPPORT
808P: Robert Jarzmik
809M: robert.jarzmik@free.fr
810L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
811F: arch/arm/mach-pxa/mioa701.c
812S: Maintained
813
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100814ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
815P: Michael Petchkovsky
816M: mkpetch@internode.on.net
817S: Maintained
818
Andy Green9d762952009-05-19 06:41:42 -0300819ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
820P: Nelson Castillo
821M: arhuaco@freaks-unidos.net
822L: openmoko-kernel@lists.openmoko.org (subscribers-only)
823W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
824S: Supported
825
Dirk Opfer8459c152005-11-06 14:27:52 +0000826ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800827P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100828M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000829P: Dirk Opfer
830M: dirk@opfer-online.de
831S: Maintained
832
Marek Vasut54088bf2009-03-24 00:29:29 +0100833ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100834P: Marek Vasut
835M: marek.vasut@gmail.com
836W: http://hackndev.com
837S: Maintained
838
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200839ARM/PALM TREO 680 SUPPORT
840P: Tomas Cech
841M: sleep_walker@suse.cz
842W: http://hackndev.com
843S: Maintained
844
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100845ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700846P: Sergey Lapin
847M: slapin@ossfans.org
848W: http://hackndev.com
849S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851ARM/PLEB SUPPORT
852P: Peter Chubb
853M: pleb@gelato.unsw.edu.au
854W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
855S: Maintained
856
857ARM/PT DIGITAL BOARD PORT
858P: Stefan Eletzhofer
859M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700860L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861W: http://www.arm.linux.org.uk/
862S: Maintained
863
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800864ARM/RADISYS ENP2611 MACHINE SUPPORT
865P: Lennert Buytenhek
866M: kernel@wantstofly.org
867L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
868S: Maintained
869
Russell Kingd4275352009-04-16 14:05:27 +0100870ARM/RISCPC ARCHITECTURE
871P: Russell King
872M: linux@arm.linux.org.uk
873L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
874W: http://www.arm.linux.org.uk/
875S: Maintained
876F: arch/arm/common/time-acorn.c
877F: arch/arm/include/asm/hardware/entry-macro-iomd.S
878F: arch/arm/include/asm/hardware/ioc.h
879F: arch/arm/include/asm/hardware/iomd.h
880F: arch/arm/include/asm/hardware/memc.h
881F: arch/arm/mach-rpc/
882F: drivers/net/arm/ether*
883F: drivers/scsi/arm/
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885ARM/SHARK MACHINE SUPPORT
886P: Alexander Schulz
887M: alex@shark-linux.de
888W: http://www.shark-linux.de/shark.html
889S: Maintained
890
Ben Dooksb21477f2009-06-13 10:46:34 +0100891ARM/SAMSUNG ARM ARCHITECTURES
892P: Ben Dooks
893M: ben-linux@fluff.org
894L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
895W: http://www.fluff.org/ben/linux/
896S: Maintained
897F: arch/arm/plat-s3c/
898F: arch/arm/plat-s3c24xx/
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900ARM/S3C2410 ARM ARCHITECTURE
901P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800902M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700903L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904W: http://www.fluff.org/ben/linux/
905S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100906F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908ARM/S3C2440 ARM ARCHITECTURE
909P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800910M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700911L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912W: http://www.fluff.org/ben/linux/
913S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100914F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Ben Dooksb21477f2009-06-13 10:46:34 +0100916ARM/S3C2442 ARM ARCHITECTURE
917P: Ben Dooks
918M: ben-linux@fluff.org
919L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
920W: http://www.fluff.org/ben/linux/
921S: Maintained
922F: arch/arm/mach-s3c2442/
923
924ARM/S3C2443 ARM ARCHITECTURE
925P: Ben Dooks
926M: ben-linux@fluff.org
927L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
928W: http://www.fluff.org/ben/linux/
929S: Maintained
930F: arch/arm/mach-s3c2443/
931
932ARM/S3C6400 ARM ARCHITECTURE
933P: Ben Dooks
934M: ben-linux@fluff.org
935L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
936W: http://www.fluff.org/ben/linux/
937S: Maintained
938F: arch/arm/mach-s3c6400/
939
940ARM/S3C6410 ARM ARCHITECTURE
941P: Ben Dooks
942M: ben-linux@fluff.org
943L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
944W: http://www.fluff.org/ben/linux/
945S: Maintained
946F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
949P: Lennert Buytenhek
950M: kernel@wantstofly.org
951L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
952S: Maintained
953
954ARM/THECUS N2100 MACHINE SUPPORT
955P: Lennert Buytenhek
956M: kernel@wantstofly.org
957L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
958S: Maintained
959
wanzongshun98ad6e32009-02-13 06:04:32 +0100960ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700961P: Wan ZongShun
962M: mcuos.com@gmail.com
963L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
964W: http://www.mcuos.com
965S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100966
Russell Kingd4275352009-04-16 14:05:27 +0100967ARM/VFP SUPPORT
968P: Russell King
969M: linux@arm.linux.org.uk
970L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
971W: http://www.arm.linux.org.uk/
972S: Maintained
973F: arch/arm/vfp/
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975ARPD SUPPORT
976P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700977L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700979F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500982P: Corentin Chary
983M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984P: Karol Kozimor
985M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +0000987W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700989F: arch/x86/kernel/acpi/boot.c
990F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400992ASUS ASB100 HARDWARE MONITOR DRIVER
993P: Mark M. Hoffman
994M: mhoffman@lightlink.com
995L: lm-sensors@lm-sensors.org
996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700997F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400998
Corentin Chary85091b72007-01-26 14:04:30 +0100999ASUS LAPTOP EXTRAS DRIVER
1000P: Corentin Chary
1001M: corentincj@iksaif.net
1002L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00001003W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +01001004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001005F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +01001006
Andrew Morton953a6472008-11-06 12:53:28 -08001007ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -07001008P: Dan Williams
1009M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001010P: Maciej Sosnowski
1011M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001012W: http://sourceforge.net/projects/xscaleiop
1013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001014F: Documentation/crypto/async-tx-api.txt
1015F: crypto/async_tx/
1016F: drivers/dma/
1017F: include/linux/dmaengine.h
1018F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001019
Randy Dunlape7839f22008-10-12 16:11:45 -07001020ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021P: Ed L. Cashin
1022M: ecashin@coraid.com
1023W: http://www.coraid.com/support/linux
1024S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001025F: Documentation/aoe/
1026F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001028ATHEROS ATH5K WIRELESS DRIVER
1029P: Jiri Slaby
1030M: jirislaby@gmail.com
1031P: Nick Kossifidis
1032M: mickflemm@gmail.com
1033P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -07001034M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -04001035P: Bob Copeland
1036M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001037L: linux-wireless@vger.kernel.org
1038L: ath5k-devel@lists.ath5k.org
1039S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001040F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001041
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001042ATHEROS ATH9K WIRELESS DRIVER
1043P: Luis R. Rodriguez
1044M: lrodriguez@atheros.com
1045P: Jouni Malinen
1046M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -04001047P: Sujith Manoharan
1048M: Sujith.Manoharan@atheros.com
1049P: Vasanthakumar Thiagarajan
1050M: vasanth@atheros.com
1051P: Senthil Balasubramanian
1052M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001053L: linux-wireless@vger.kernel.org
1054L: ath9k-devel@lists.ath9k.org
1055S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001056F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001057
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001058ATHEROS AR9170 WIRELESS DRIVER
1059P: Christian Lamparter
1060M: chunkeey@web.de
1061L: linux-wireless@vger.kernel.org
1062W: http://wireless.kernel.org/en/users/Drivers/ar9170
1063S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001064F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001065
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001066ATI_REMOTE2 DRIVER
1067P: Ville Syrjala
1068M: syrjala@sci.fi
1069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001070F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001071
Chris Snook7ae115b2008-09-09 03:26:57 -04001072ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001073P: Jay Cliburn
1074M: jcliburn@gmail.com
1075P: Chris Snook
1076M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -04001077P: Jie Yang
1078M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001079L: atl1-devel@lists.sourceforge.net
1080W: http://sourceforge.net/projects/atl1
1081W: http://atl1.sourceforge.net
1082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001083F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085ATM
1086P: Chas Williams
1087M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -07001088L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001089L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090W: http://linux-atm.sourceforge.net
1091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001092F: drivers/atm/
1093F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Pierre Ossman272f1332007-05-14 21:25:26 +02001095ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001096P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001097M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001098L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1099W: http://www.atmel.com/products/AT91/
1100W: http://www.at91.com/
1101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001102F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001103
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001104ATMEL AT91 / AT32 MCI DRIVER
1105P: Nicolas Ferre
1106M: nicolas.ferre@atmel.com
1107S: Maintained
1108F: drivers/mmc/host/atmel-mci.c
1109F: drivers/mmc/host/atmel-mci-regs.h
1110
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001111ATMEL AT91 / AT32 SERIAL DRIVER
1112P: Haavard Skinnemoen
1113M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001115F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001116
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001117ATMEL LCDFB DRIVER
1118P: Nicolas Ferre
1119M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001120L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001122F: drivers/video/atmel_lcdfb.c
1123F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001124
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001125ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001126P: Haavard Skinnemoen
1127M: hskinnemoen@atmel.com
1128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001129F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001130
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001131ATMEL SPI DRIVER
1132P: Haavard Skinnemoen
1133M: hskinnemoen@atmel.com
1134S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001135F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001136
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001137ATMEL USBA UDC DRIVER
1138P: Haavard Skinnemoen
1139M: hskinnemoen@atmel.com
1140L: kernel@avr32linux.org
1141W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001143F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145ATMEL WIRELESS DRIVER
1146P: Simon Kelley
1147M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001148L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149W: http://www.thekelleys.org.uk/atmel
1150W: http://atmelwlandriver.sourceforge.net/
1151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001152F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Chris Wrighta92b7b82005-07-07 18:12:23 -07001154AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001155P: Al Viro
1156M: viro@zeniv.linux.org.uk
1157P: Eric Paris
1158M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001159L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001160W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001161T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001163F: include/linux/audit.h
1164F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001165
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001166AUXILIARY DISPLAY DRIVERS
1167P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001168M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001169W: http://miguelojeda.es/auxdisplay.htm
1170W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001172F: drivers/auxdisplay/
1173F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001174
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001175AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001176P: Haavard Skinnemoen
1177M: hskinnemoen@atmel.com
1178W: http://www.atmel.com/products/AVR32/
1179W: http://avr32linux.org/
1180W: http://avrfreaks.net/
1181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001182F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001183
1184AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001185P: Haavard Skinnemoen
1186M: hskinnemoen@atmel.com
1187S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001188F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190AX.25 NETWORK LAYER
1191P: Ralf Baechle
1192M: ralf@linux-mips.org
1193L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001194W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001196F: include/linux/ax25.h
1197F: include/net/ax25.h
1198F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001200B43 WIRELESS DRIVER
1201P: Michael Buesch
1202M: mb@bu3sch.de
1203P: Stefano Brivio
1204M: stefano.brivio@polimi.it
1205L: linux-wireless@vger.kernel.org
1206W: http://linuxwireless.org/en/users/Drivers/b43
1207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001208F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001209
1210B43LEGACY WIRELESS DRIVER
1211P: Larry Finger
1212M: Larry.Finger@lwfinger.net
1213P: Stefano Brivio
1214M: stefano.brivio@polimi.it
1215L: linux-wireless@vger.kernel.org
1216W: http://linuxwireless.org/en/users/Drivers/b43
1217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001218F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001219
Richard Purdie300abeb2007-02-07 22:21:07 +00001220BACKLIGHT CLASS/SUBSYSTEM
1221P: Richard Purdie
1222M: rpurdie@rpsys.net
1223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001224F: drivers/video/backlight/
1225F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001226
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001227BAYCOM/HDLCDRV DRIVERS FOR AX.25
1228P: Thomas Sailer
1229M: t.sailer@alumni.ethz.ch
1230L: linux-hams@vger.kernel.org
1231W: http://www.baycom.org/~tom/ham/ham.html
1232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001233F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001234
1235BEFS FILE SYSTEM
1236P: Sergey S. Kostyliov
1237M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001239F: Documentation/filesystems/befs.txt
1240F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001241
1242BFS FILE SYSTEM
1243P: Tigran A. Aivazian
1244M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001246F: Documentation/filesystems/bfs.txt
1247F: fs/bfs/
1248F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001249
Bryan Wu1394f032007-05-06 14:50:22 -07001250BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001251P: Mike Frysinger
1252M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001253L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001254W: http://blackfin.uclinux.org
1255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001256F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001257
Bryan Wue190d6b2007-07-17 14:43:44 +08001258BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001259P: Michael Hennerich
1260M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001261L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001262W: http://blackfin.uclinux.org
1263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001264F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001265
Mike Frysinger566da5b2007-06-11 15:31:30 +08001266BLACKFIN RTC DRIVER
1267P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001268M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001269L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001270W: http://blackfin.uclinux.org
1271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001272F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001273
Bryan Wu1394f032007-05-06 14:50:22 -07001274BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001275P: Sonic Zhang
1276M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001277L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001278W: http://blackfin.uclinux.org
1279S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001280F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001281
Bryan Wu1e6d3202007-07-15 02:50:02 +08001282BLACKFIN WATCHDOG DRIVER
1283P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001284M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001285L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001286W: http://blackfin.uclinux.org
1287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001288F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001289
Bryan Wud24ecfc2007-05-01 23:26:32 +02001290BLACKFIN I2C TWI DRIVER
1291P: Sonic Zhang
1292M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001293L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001294W: http://blackfin.uclinux.org/
1295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001296F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298BLOCK LAYER
1299P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001300M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001301T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001303F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Joern Engel2b54aae2008-02-06 01:38:02 -08001305BLOCK2MTD DRIVER
1306P: Joern Engel
1307M: joern@lazybastard.org
1308L: linux-mtd@lists.infradead.org
1309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001310F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001311
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001312BLUETOOTH DRIVERS
1313P: Marcel Holtmann
1314M: marcel@holtmann.org
1315L: linux-bluetooth@vger.kernel.org
1316W: http://www.bluez.org/
1317S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001318F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320BLUETOOTH SUBSYSTEM
1321P: Marcel Holtmann
1322M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001323L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001324W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001325T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001327F: net/bluetooth/
1328F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001331P: Jay Vosburgh
1332M: fubar@us.ibm.com
1333L: bonding-devel@lists.sourceforge.net
1334W: http://sourceforge.net/projects/bonding/
1335S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001336F: drivers/net/bonding/
1337F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Gary Zambrano39105892006-06-22 17:26:20 -07001339BROADCOM B44 10/100 ETHERNET DRIVER
1340P: Gary Zambrano
1341M: zambrano@broadcom.com
1342L: netdev@vger.kernel.org
1343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001344F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001345
Michael Chan948c51e2006-06-04 02:51:39 -07001346BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1347P: Michael Chan
1348M: mchan@broadcom.com
1349L: netdev@vger.kernel.org
1350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001351F: drivers/net/bnx2.*
1352F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001353
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001354BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001355P: Eilon Greenstein
1356M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001357L: netdev@vger.kernel.org
1358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001359F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001360
Michael Chan948c51e2006-06-04 02:51:39 -07001361BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001362P: Matt Carlson
1363M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001364P: Michael Chan
1365M: mchan@broadcom.com
1366L: netdev@vger.kernel.org
1367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001368F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001369
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001370BSG (block layer generic sg v4 driver)
1371P: FUJITA Tomonori
1372M: fujita.tomonori@lab.ntt.co.jp
1373L: linux-scsi@vger.kernel.org
1374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001375F: block/bsg.c
1376F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001377
Michael Bueschff1d5c22008-07-25 01:46:10 -07001378BT8XXGPIO DRIVER
1379P: Michael Buesch
1380M: mb@bu3sch.de
1381W: http://bu3sch.de/btgpio.php
1382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001383F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001384
Joe Percheseb1eb042009-01-21 10:49:16 -05001385BTRFS FILE SYSTEM
1386P: Chris Mason
1387M: chris.mason@oracle.com
1388L: linux-btrfs@vger.kernel.org
1389W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001390T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001392F: Documentation/filesystems/btrfs.txt
1393F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001396P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001397M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001398L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001399W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001400T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001402F: Documentation/video4linux/bttv/
1403F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
David Howellsa5432f52009-04-20 15:46:45 +01001405CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1406P: David Howells
1407M: dhowells@redhat.com
1408L: linux-cachefs@redhat.com
1409S: Supported
1410F: Documentation/filesystems/caching/cachefiles.txt
1411F: fs/cachefiles/
1412
Jonathan Corbet77d51402007-03-22 19:44:17 -03001413CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001414P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001415M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001416L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001417T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001419F: Documentation/video4linux/cafe_ccic
1420F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001421
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001422CALGARY x86-64 IOMMU
1423P: Muli Ben-Yehuda
1424M: muli@il.ibm.com
1425P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001426M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001427L: discuss@x86-64.org
1428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: arch/x86/kernel/pci-calgary_64.c
1430F: arch/x86/kernel/tce_64.c
1431F: arch/x86/include/asm/calgary.h
1432F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001434CAN NETWORK LAYER
1435P: Urs Thuermann
1436M: urs.thuermann@volkswagen.de
1437P: Oliver Hartkopp
1438M: oliver.hartkopp@volkswagen.de
1439L: socketcan-core@lists.berlios.de (subscribers-only)
1440W: http://developer.berlios.de/projects/socketcan/
1441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001442F: drivers/net/can/
1443F: include/linux/can/
1444F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001445
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001446CAN NETWORK DRIVERS
1447P: Wolfgang Grandegger
1448M: wg@grandegger.com
1449L: socketcan-core@lists.berlios.de (subscribers-only)
1450W: http://developer.berlios.de/projects/socketcan/
1451S: Maintained
1452
Arnd Bergmannb8154542008-05-16 11:10:59 +02001453CELL BROADBAND ENGINE ARCHITECTURE
1454P: Arnd Bergmann
1455M: arnd@arndb.de
1456L: linuxppc-dev@ozlabs.org
1457L: cbe-oss-dev@ozlabs.org
1458W: http://www.ibm.com/developerworks/power/cell/
1459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001460F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001461F: arch/powerpc/include/asm/spu*.h
1462F: arch/powerpc/oprofile/*cell*
1463F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001464
David Vrabel18332a82008-09-17 16:34:44 +01001465CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1466P: David Vrabel
1467M: david.vrabel@csr.com
1468L: linux-usb@vger.kernel.org
1469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001470F: Documentation/usb/WUSB-Design-overview.txt
1471F: Documentation/usb/wusb-cbaf
1472F: drivers/usb/wusbcore/
1473F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001474
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001475CFAG12864B LCD DRIVER
1476P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001477M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001478W: http://miguelojeda.es/auxdisplay.htm
1479W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/auxdisplay/cfag12864b.c
1482F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001483
1484CFAG12864BFB LCD FRAMEBUFFER DRIVER
1485P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001486M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001487W: http://miguelojeda.es/auxdisplay.htm
1488W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: drivers/auxdisplay/cfag12864bfb.c
1491F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001492
Johannes Berg704232c2007-04-23 12:20:05 -07001493CFG80211 and NL80211
1494P: Johannes Berg
1495M: johannes@sipsolutions.net
1496L: linux-wireless@vger.kernel.org
1497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001498F: include/linux/nl80211.h
1499F: include/net/cfg80211.h
1500F: net/wireless/*
1501X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001502
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001503CHECKPATCH
1504P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001505M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001507F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001508
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001509CISCO 10G ETHERNET DRIVER
1510P: Scott Feldman
1511M: scofeldm@cisco.com
1512P: Joe Eykholt
1513M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001515F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001516
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001517CIRRUS LOGIC EP93XX ETHERNET DRIVER
1518P: Lennert Buytenhek
1519M: kernel@wantstofly.org
1520L: netdev@vger.kernel.org
1521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001522F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001523
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001524CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1525P: Lennert Buytenhek
1526M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001527L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001529F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001530
Timur Tabid9e9d822008-04-24 08:45:26 +10001531CIRRUS LOGIC CS4270 SOUND DRIVER
1532P: Timur Tabi
1533M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001534L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001536F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001537
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1539P: Cirrus Logic Corporation (kernel 2.2 driver)
1540M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1541P: Nils Faerber (port to kernel 2.4)
1542M: Nils Faerber <nils@kernelconcepts.de>
1543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001544F: Documentation/input/cs461x.txt
1545F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Russell Kingd4275352009-04-16 14:05:27 +01001547CLK API
1548P: Russell King
1549M: linux@arm.linux.org.uk
1550F: include/linux/clk.h
1551
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001552CISCO FCOE HBA DRIVER
1553P: Abhijeet Joglekar
1554M: abjoglek@cisco.com
1555P: Joe Eykholt
1556M: jeykholt@cisco.com
1557L: linux-scsi@vger.kernel.org
1558S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001559F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561CODA FILE SYSTEM
1562P: Jan Harkes
1563M: jaharkes@cs.cmu.edu
1564M: coda@cs.cmu.edu
1565L: codalist@coda.cs.cmu.edu
1566W: http://www.coda.cs.cmu.edu/
1567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001568F: Documentation/filesystems/coda.txt
1569F: fs/coda/
1570F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001572COMMON INTERNET FILE SYSTEM (CIFS)
1573P: Steve French
1574M: sfrench@samba.org
1575L: linux-cifs-client@lists.samba.org
1576L: samba-technical@lists.samba.org
1577W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001578T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001579S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001580F: Documentation/filesystems/cifs.txt
1581F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583COMPACTPCI HOTPLUG CORE
1584P: Scott Murray
1585M: scottm@somanetworks.com
1586M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001587L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1592P: Scott Murray
1593M: scottm@somanetworks.com
1594M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001595L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001597F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599COMPACTPCI HOTPLUG GENERIC DRIVER
1600P: Scott Murray
1601M: scottm@somanetworks.com
1602M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001603L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001605F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001607COMPAL LAPTOP SUPPORT
1608P: Cezary Jackiewicz
1609M: cezary.jackiewicz@gmail.com
1610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001611F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613COMPUTONE INTELLIPORT MULTIPORT CARD
1614P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001615M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001618F: Documentation/serial/computone.txt
1619F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Simon Arlott949be0f2007-03-06 02:47:46 -08001621CONEXANT ACCESSRUNNER USB DRIVER
1622P: Simon Arlott
1623M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001624L: accessrunner-general@lists.sourceforge.net
1625W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001628
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001629CONFIGFS
1630P: Joel Becker
1631M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001633F: fs/configfs/
1634F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001635
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001636CONTROL GROUPS (CGROUPS)
1637P: Paul Menage
1638M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001639P: Li Zefan
1640M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001641L: containers@lists.linux-foundation.org
1642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001643F: include/linux/cgroup*
1644F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001645F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001646
Rudolf Marekbebe4672007-05-08 17:22:02 +02001647CORETEMP HARDWARE MONITORING DRIVER
1648P: Rudolf Marek
1649M: r.marek@assembler.cz
1650L: lm-sensors@lm-sensors.org
1651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001652F: Documentation/hwmon/coretemp
1653F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655COSA/SRP SYNC SERIAL DRIVER
1656P: Jan "Yenya" Kasprzak
1657M: kas@fi.muni.cz
1658W: http://www.fi.muni.cz/~kas/cosa/
1659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001660F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Florian Fainelli4371ee32009-06-01 02:43:17 -07001662CPMAC ETHERNET DRIVER
1663P: Florian Fainelli
1664M: florian@openwrt.org
1665L: netdev@vger.kernel.org
1666S: Maintained
1667F: drivers/net/cpmac.c
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669CPU FREQUENCY DRIVERS
1670P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001671M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001672L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001674T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001676F: arch/x86/kernel/cpu/cpufreq/
1677F: drivers/cpufreq/
1678F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680CPUID/MSR DRIVER
1681P: H. Peter Anvin
1682M: hpa@zytor.com
1683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: arch/x86/kernel/cpuid.c
1685F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Paul Jacksoned90fb42005-09-27 21:45:37 -07001687CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001688P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001689M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001690W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001691W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001693F: Documentation/cgroups/cpusets.txt
1694F: include/linux/cpuset.h
1695F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001698W: http://sourceforge.net/projects/cramfs/
1699S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001700F: Documentation/filesystems/cramfs.txt
1701F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703CRIS PORT
1704P: Mikael Starvik
1705M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001706P: Jesper Nilsson
1707M: jesper.nilsson@axis.com
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001708L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709W: http://developer.axis.com
1710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001711F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713CRYPTO API
1714P: Herbert Xu
1715M: herbert@gondor.apana.org.au
1716P: David S. Miller
1717M: davem@davemloft.net
1718L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001719T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001721F: Documentation/crypto/
1722F: arch/*/crypto/
1723F: crypto/
1724F: drivers/crypto/
1725F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Neil Horman5b07bd52009-02-05 16:03:04 +11001727CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1728P: Neil Horman
1729M: nhorman@tuxdriver.com
1730L: linux-crypto@vger.kernel.org
1731S: Maintained
1732
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001733CS5535 Audio ALSA driver
1734P: Jaya Kumar
1735M: jayakumar.alsa@gmail.com
1736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001737F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001738
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001739CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001740P: Hans Verkuil
1741M: hverkuil@xs4all.nl
1742P: Andy Walls
1743M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001744L: ivtv-devel@ivtvdriver.org
1745L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001746L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001747T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001748W: http://linuxtv.org
1749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001750F: Documentation/video4linux/cx18.txt
1751F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001752
Steve Wisee5ec3782008-05-20 14:06:33 -07001753CXGB3 ETHERNET DRIVER (CXGB3)
1754P: Divy Le Ray
1755M: divy@chelsio.com
1756L: netdev@vger.kernel.org
1757W: http://www.chelsio.com
1758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001759F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001760
1761CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1762P: Steve Wise
1763M: swise@chelsio.com
1764L: general@lists.openfabrics.org
1765W: http://www.openfabrics.org
1766S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001767F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769CYBERPRO FB DRIVER
1770P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001771M: linux@arm.linux.org.uk
1772L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773W: http://www.arm.linux.org.uk/
1774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001775F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777CYCLADES 2X SYNC CARD DRIVER
1778P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001779M: acme@ghostprotocols.net
1780W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001782F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001786S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001787F: drivers/char/cyclades.c
1788F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001792S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001793F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795DAMA SLAVE for AX.25
1796P: Joerg Reuter
1797M: jreuter@yaina.de
1798W: http://yaina.de/jreuter/
1799W: http://www.qsl.net/dl1bke/
1800L: linux-hams@vger.kernel.org
1801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001802F: net/ax25/af_ax25.c
1803F: net/ax25/ax25_dev.c
1804F: net/ax25/ax25_ds_*
1805F: net/ax25/ax25_in.c
1806F: net/ax25/ax25_out.c
1807F: net/ax25/ax25_timer.c
1808F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001810DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1811P: Tobias Ringstrom
1812M: tori@unhappy.mine.nu
1813L: netdev@vger.kernel.org
1814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001815F: Documentation/networking/dmfe.txt
1816F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001817
1818DC390/AM53C974 SCSI driver
1819P: Kurt Garloff
1820M: garloff@suse.de
1821W: http://www.garloff.de/kurt/linux/dc390/
1822P: Guennadi Liakhovetski
1823M: g.liakhovetski@gmx.de
1824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001825F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827DC395x SCSI driver
1828P: Oliver Neukum
1829M: oliver@neukum.name
1830P: Ali Akcaagac
1831M: aliakc@web.de
1832P: Jamie Lenehan
1833M: lenehan@twibble.org
1834W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001835L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836L: http://lists.twibble.org/mailman/listinfo/dc395x/
1837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/scsi/dc395x.txt
1839F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001841DCCP PROTOCOL
1842P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001843M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001844L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001845W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: include/linux/dccp.h
1848F: include/linux/tfrc.h
1849F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001852P: Christine Caulfield
1853M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854W: http://linux-decnet.sourceforge.net
1855L: linux-decnet-user@lists.sourceforge.net
1856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: Documentation/networking/decnet.txt
1858F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860DEFXX FDDI NETWORK DRIVER
1861P: Maciej W. Rozycki
1862M: macro@linux-mips.org
1863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001864F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001866DELL LAPTOP DRIVER
1867P: Matthew Garrett
1868M: mjg59@srcf.ucam.org
1869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001870F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872DELL LAPTOP SMM DRIVER
1873P: Massimo Dal Zotto
1874M: dz@debian.org
1875W: http://www.debian.org/~dz/i8k/
1876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001877F: drivers/char/i8k.c
1878F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Doug Warzecha90563ec2005-09-06 15:17:15 -07001880DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1881P: Doug Warzecha
1882M: Douglas_Warzecha@dell.com
1883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: Documentation/dcdbas.txt
1885F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001886
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001887DELL WMI EXTRAS DRIVER
1888P: Matthew Garrett
1889M: mjg59@srcf.ucam.org
1890S: Maintained
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892DEVICE NUMBER REGISTRY
1893P: Torben Mathiasen
1894M: device@lanana.org
1895W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896S: Maintained
1897
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001898DEVICE-MAPPER (LVM)
1899P: Alasdair Kergon
1900L: dm-devel@redhat.com
1901W: http://sources.redhat.com/dm
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: Documentation/device-mapper/
1904F: drivers/md/dm*
1905F: include/linux/device-mapper.h
1906F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908DIGI INTL. EPCA DRIVER
1909P: Digi International, Inc
1910M: Eng.Linux@digi.com
1911L: Eng.Linux@digi.com
1912W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001913S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001914F: Documentation/serial/digiepca.txt
1915F: drivers/char/epca*
1916F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Randy Dunlape7839f22008-10-12 16:11:45 -07001918DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001919P: Eric Paris
1920M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001922F: Documentation/filesystems/dnotify.txt
1923F: fs/notify/dnotify/
1924F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926DISK GEOMETRY AND PARTITION HANDLING
1927P: Andries Brouwer
1928M: aeb@cwi.nl
1929W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1930W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1931W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1932S: Maintained
1933
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001934DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935P: Jan Kara
1936M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001938F: Documentation/filesystems/quota.txt
1939F: fs/quota/
1940F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Randy Dunlape7839f22008-10-12 16:11:45 -07001942DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001943P: Christine Caulfield
1944M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001945P: David Teigland
1946M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001947L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001948W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001949T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001951F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001952
Dan Williamsb3e5f262007-08-07 10:26:35 -07001953DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001954P: Maciej Sosnowski
1955M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001956P: Dan Williams
1957M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001959F: drivers/dma/
1960F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001961
Juerg Haefligerb8250372007-06-09 10:11:16 -04001962DME1737 HARDWARE MONITOR DRIVER
1963P: Juerg Haefliger
1964M: juergh@gmail.com
1965L: lm-sensors@lm-sensors.org
1966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001967F: Documentation/hwmon/dme1737
1968F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001969
Martin Waitzba483d52005-06-17 13:20:59 -07001970DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001971P: Randy Dunlap
1972M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001973S: Maintained
1974
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001975DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001976P: Shaohua Li
1977M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001978L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001980F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001981
Joe Perches7d2c86b2009-04-07 20:59:01 -07001982DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001983P: Randy Dunlap
1984M: rdunlap@xenotime.net
1985L: linux-doc@vger.kernel.org
1986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989DOUBLETALK DRIVER
1990P: James R. Van Zandt
1991M: jrv@vanzandt.mv.com
1992L: blinux-list@redhat.com
1993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001994F: drivers/char/dtlk.c
1995F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001997DPT_I2O SCSI RAID DRIVER
1998P: Adaptec OEM Raid Solutions
1999M: aacraid@adaptec.com
2000L: linux-scsi@vger.kernel.org
2001W: http://www.adaptec.com/
2002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002003F: drivers/scsi/dpt*
2004F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006DRIVER CORE, KOBJECTS, AND SYSFS
2007P: Greg Kroah-Hartman
2008M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08002009T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002011F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002012F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002013F: fs/sysfs/
2014F: include/linux/kobj*
2015F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
2017DRM DRIVERS
2018P: David Airlie
2019M: airlied@linux.ie
2020L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07002021T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002023F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08002026P: Francois Romieu
2027M: romieu@fr.zoreil.com
2028L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002032DZ DECSTATION DZ11 SERIAL DRIVER
2033P: Maciej W. Rozycki
2034M: macro@linux-mips.org
2035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002036F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038EATA-DMA SCSI DRIVER
2039P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07002040M: mike@i-Connect.Net
2041L: linux-eata@i-connect.net
2042L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002044F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046EATA ISA/EISA/PCI SCSI DRIVER
2047P: Dario Ballabio
2048M: ballabio_dario@emc.com
2049L: linux-scsi@vger.kernel.org
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053EATA-PIO SCSI DRIVER
2054P: Michael Neuffer
2055M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07002056L: linux-eata@i-connect.net
2057L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061EBTABLES
2062P: Bart De Schuymer
2063M: bart.de.schuymer@pandora.be
2064L: ebtables-user@lists.sourceforge.net
2065L: ebtables-devel@lists.sourceforge.net
2066W: http://ebtables.sourceforge.net/
2067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002068F: include/linux/netfilter_bridge/ebt_*.h
2069F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Michael Halcrow237fead2006-10-04 02:16:22 -07002071ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002072P: Tyler Hicks
2073M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07002074P: Dustin Kirkland
2075M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08002076L: ecryptfs-devel@lists.launchpad.net
2077W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002078S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002079F: Documentation/filesystems/ecryptfs.txt
2080F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002081
Alan Coxda9bb1d2006-01-18 17:44:13 -08002082EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002083P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002084M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002085L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002086W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002088F: Documentation/edac.txt
2089F: drivers/edac/edac_*
2090F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002091
Borislav Petkovc476c232009-05-20 20:31:58 +02002092EDAC-AMD64
2093P: Doug Thompson
2094M: dougthompson@xmission.com
2095P: Borislav Petkov
2096M: borislav.petkov@amd.com
2097L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2098W: bluesmoke.sourceforge.net
2099S: Supported
2100F: drivers/edac/amd64_edac*
2101
Dave Peterson0e438e32006-03-26 01:38:55 -08002102EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002103P: Mark Gross
2104M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002105P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002106M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002107L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002108W: bluesmoke.sourceforge.net
2109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002110F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002111
2112EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002113P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002114M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002115L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002116W: bluesmoke.sourceforge.net
2117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002118F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002119
Douglas Thompson6bc78402007-07-19 01:50:12 -07002120EDAC-I82443BXGX
2121P: Tim Small
2122M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002123L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002124W: bluesmoke.sourceforge.net
2125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002126F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002127
2128EDAC-I3000
2129P: Jason Uhlenkott
2130M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002131L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002132W: bluesmoke.sourceforge.net
2133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002135
2136EDAC-I5000
2137P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002138M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002139L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002140W: bluesmoke.sourceforge.net
2141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002143
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002144EDAC-I5400
2145P: Mauro Carvalho Chehab
2146M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002147L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002148W: bluesmoke.sourceforge.net
2149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002150F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002151
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002152EDAC-I82975X
2153P: Ranganathan Desikan
Joe Perchesc15e5042009-06-30 11:41:13 -07002154M: ravi@jetztechnologies.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002155P: Arvind R.
Joe Perchesc15e5042009-06-30 11:41:13 -07002156M: arvind@jetztechnologies.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002157L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002158W: bluesmoke.sourceforge.net
2159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002160F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002161
2162EDAC-PASEMI
2163P: Egor Martovetsky
2164M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002165L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002166W: bluesmoke.sourceforge.net
2167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002168F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002169
Dave Peterson0e438e32006-03-26 01:38:55 -08002170EDAC-R82600
2171P: Tim Small
2172M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002173L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002174W: bluesmoke.sourceforge.net
2175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002177
Eric Coopere59f8792008-03-13 12:55:46 +01002178EEEPC LAPTOP EXTRAS DRIVER
2179P: Corentin Chary
2180M: corentincj@iksaif.net
2181L: acpi4asus-user@lists.sourceforge.net
Corentin Chary76593d62009-06-16 19:28:47 +00002182W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002185
Josh Triplett0bee8d22006-07-30 03:03:58 -07002186EFS FILESYSTEM
2187W: http://aeschi.ch.eu.org/efs/
2188S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002189F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002190
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002191EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002192P: Hoang-Nam Nguyen
2193M: hnguyen@de.ibm.com
2194P: Christoph Raisch
2195M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002196L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002198F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002199
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002200EMBEDDED LINUX
2201P: Paul Gortmaker
2202M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002203P: Matt Mackall
2204M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002205P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002206M: dwmw2@infradead.org
2207L: linux-embedded@vger.kernel.org
2208S: Maintained
2209
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002210EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002211P: James Smart
2212M: james.smart@emulex.com
2213L: linux-scsi@vger.kernel.org
2214W: http://sourceforge.net/projects/lpfcxxxx
2215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002216F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002217
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002218ENE CB710 FLASH CARD READER DRIVER
2219P: Michał Mirosław
2220M: mirq-linux@rere.qmqm.pl
2221L: linux-kernel@vger.kernel.org
2222S: Maintained
2223F: drivers/misc/cb710/
2224F: drivers/mmc/host/cb710-mmc.*
2225F: include/linux/cb710.h
2226
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227EPSON 1355 FRAMEBUFFER DRIVER
2228P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002229M: ch@murgatroid.com
2230P: Christopher Hoover
2231M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002233F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002235EPSON S1D13XXX FRAMEBUFFER DRIVER
2236P: Kristoffer Ericson
2237M: kristoffer.ericson@gmail.com
2238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002239F: drivers/video/s1d13xxxfb.c
2240F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242ETHEREXPRESS-16 NETWORK DRIVER
2243P: Philip Blundell
2244M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002245L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002247F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249ETHERNET BRIDGE
2250P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002251M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002252L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002253W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002255F: include/linux/netfilter_bridge/
2256F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258ETHERTEAM 16I DRIVER
2259P: Mika Kuoppala
2260M: miku@iki.fi
2261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002262F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002265L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: Documentation/filesystems/ext2.txt
2268F: fs/ext2/
2269F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002272P: Stephen Tweedie
2273M: sct@redhat.com
2274P: Andrew Morton
2275M: akpm@linux-foundation.org
2276P: Andreas Dilger
2277M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002278L: linux-ext4@vger.kernel.org
2279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002280F: Documentation/filesystems/ext3.txt
2281F: fs/ext3/
2282F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002283
2284EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002285P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002286M: tytso@mit.edu
2287P: Andreas Dilger
2288M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002289L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002290W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: Documentation/filesystems/ext4.txt
2293F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Jean Delvaree53004e2006-01-09 23:26:14 +01002295F71805F HARDWARE MONITORING DRIVER
2296P: Jean Delvare
2297M: khali@linux-fr.org
2298L: lm-sensors@lm-sensors.org
2299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: Documentation/hwmon/f71805f
2301F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303FARSYNC SYNCHRONOUS DRIVER
2304P: Kevin Curtis
2305M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306W: http://www.farsite.co.uk/
2307S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002308F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Akinobu Mitac5408b82007-04-23 14:41:20 -07002310FAULT INJECTION SUPPORT
2311P: Akinobu Mita
2312M: akinobu.mita@gmail.com
2313S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002314F: Documentation/fault-injection/
2315F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002316
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002317FILE LOCKING (flock() and fcntl()/lockf())
2318P: Matthew Wilcox
2319M: matthew@wil.cx
2320L: linux-fsdevel@vger.kernel.org
2321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002322F: include/linux/fcntl.h
2323F: include/linux/fs.h
2324F: fs/fcntl.c
2325F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002326
2327FILESYSTEMS (VFS and infrastructure)
2328P: Alexander Viro
2329M: viro@zeniv.linux.org.uk
2330L: linux-fsdevel@vger.kernel.org
2331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002332F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002333
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002334FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2335P: Riku Voipio
2336M: riku.vipio@iki.fi
2337L: lm-sensors@lm-sensors.org
2338S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002339F: drivers/hwmon/f75375s.c
2340F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002341
Joe Perches7d2c86b2009-04-07 20:59:01 -07002342FIREWIRE SUBSYSTEM
2343P: Kristian Hoegsberg
2344M: krh@redhat.com
2345P: Stefan Richter
2346M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002347L: linux1394-devel@lists.sourceforge.net
2348W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002349T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/firewire/
2352F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353
2354FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002356F: Documentation/firmware_class/
2357F: drivers/base/firmware*.c
2358F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002359
2360FPU EMULATOR
2361P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002362M: billm@melbpc.org.au
2363W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002366
2367FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2368P: Mike McLagan
2369M: mike.mclagan@linux.org
2370L: netdev@vger.kernel.org
2371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002372F: drivers/net/wan/dlci.c
2373F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002376L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002378S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002379F: Documentation/fb/
2380F: drivers/video/fb*
2381F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Zhang Wei173acc72008-03-01 07:42:48 -07002383FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002384P: Li Yang
2385M: leoli@freescale.com
2386P: Zhang Wei
2387M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002388L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002390F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002391
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002392FREESCALE I2C CPM DRIVER
2393P: Jochen Friedrich
2394M: jochen@scram.de
2395L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002396L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002398F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002399
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002400FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2401P: Sascha Hauer
2402M: kernel@pengutronix.de
2403L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2404L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002406F: arch/arm/plat-mxc/include/mach/imxfb.h
2407F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002408
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002409FREESCALE SOC FS_ENET DRIVER
2410P: Pantelis Antoniou
2411M: pantelis.antoniou@gmail.com
2412P: Vitaly Bordug
2413M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002414L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002415L: netdev@vger.kernel.org
2416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: drivers/net/fs_enet/
2418F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002419
Timur Tabid9e9d822008-04-24 08:45:26 +10002420FREESCALE QUICC ENGINE LIBRARY
2421P: Timur Tabi
2422M: timur@freescale.com
2423L: linuxppc-dev@ozlabs.org
2424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002425F: arch/powerpc/sysdev/qe_lib/
2426F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002427
Li Yanga7205b32007-04-23 10:38:18 -07002428FREESCALE HIGHSPEED USB DEVICE DRIVER
2429P: Li Yang
2430M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002431L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002432L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002434F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002435
Li Yangbeaf53b2007-05-25 13:54:02 +08002436FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2437P: Li Yang
2438M: leoli@freescale.com
2439L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002440L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002442F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002443
Timur Tabid9e9d822008-04-24 08:45:26 +10002444FREESCALE QUICC ENGINE UCC UART DRIVER
2445P: Timur Tabi
2446M: timur@freescale.com
2447L: linuxppc-dev@ozlabs.org
2448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002449F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002450
2451FREESCALE SOC SOUND DRIVERS
2452P: Timur Tabi
2453M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002454L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002455L: linuxppc-dev@ozlabs.org
2456S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002457F: sound/soc/fsl/fsl*
2458F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460FREEVXFS FILESYSTEM
2461P: Christoph Hellwig
2462M: hch@infradead.org
2463W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002465F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Pavel Machek71038f52009-01-15 13:51:02 -08002467FREEZER
2468P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002469M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002470P: Rafael J. Wysocki
2471M: rjw@sisk.pl
2472L: linux-pm@lists.linux-foundation.org
2473S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002474F: Documentation/power/freezing-of-tasks.txt
2475F: include/linux/freezer.h
2476F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002477
David Howellsa5432f52009-04-20 15:46:45 +01002478FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2479P: David Howells
2480M: dhowells@redhat.com
2481L: linux-cachefs@redhat.com
2482S: Supported
2483F: Documentation/filesystems/caching/
2484F: fs/fscache/
2485F: include/linux/fscache*.h
2486
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002487FTRACE
2488P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002489M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002490S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002491F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002492F: arch/*/*/*/ftrace.h
2493F: arch/*/kernel/ftrace.c
2494F: include/*/ftrace.h
2495F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002496
David Howells5ab7ffe2007-04-10 15:10:45 +01002497FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498P: David Howells
2499M: dhowells@redhat.com
2500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002501F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Jonathan Woithe20b93732008-06-11 10:14:56 +09302503FUJITSU LAPTOP EXTRAS
2504P: Jonathan Woithe
2505M: jwoithe@physics.adelaide.edu.au
2506L: linux-acpi@vger.kernel.org
2507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002508F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302509
Miklos Szeredi04578f12005-09-09 13:10:22 -07002510FUSE: FILESYSTEM IN USERSPACE
2511P: Miklos Szeredi
2512M: miklos@szeredi.hu
2513L: fuse-devel@lists.sourceforge.net
2514W: http://fuse.sourceforge.net/
2515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002516F: fs/fuse/
2517F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2520P: Rik Faith
2521M: faith@cs.unc.edu
2522L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002523S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002524F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526GDT SCSI DISK ARRAY CONTROLLER DRIVER
2527P: Achim Leubner
2528M: achim_leubner@adaptec.com
2529L: linux-scsi@vger.kernel.org
2530W: http://www.icp-vortex.com/
2531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002532F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002534GENERIC GPIO I2C DRIVER
2535P: Haavard Skinnemoen
2536M: hskinnemoen@atmel.com
2537S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002538F: drivers/i2c/busses/i2c-gpio.c
2539F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002540
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002541GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542P: Krzysztof Halasa
2543M: khc@pm.waw.pl
2544W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002546F: drivers/net/wan/c101.c
2547F: drivers/net/wan/hd6457*
2548F: drivers/net/wan/hdlc*
2549F: drivers/net/wan/n2.c
2550F: drivers/net/wan/pc300too.c
2551F: drivers/net/wan/pci200syn.c
2552F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002554GENERIC INCLUDE/ASM HEADER FILES
2555P: Arnd Bergmann
2556M: arnd@arndb.de
2557L: linux-arch@vger.kernel.org
2558T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2559S: Maintained
2560F: include/asm-generic
2561
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002562GFS2 FILE SYSTEM
2563P: Steven Whitehouse
2564M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002565L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002566W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002567T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2568T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002570F: Documentation/filesystems/gfs2*.txt
2571F: fs/gfs2/
2572F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002573
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002574GIGASET ISDN DRIVERS
2575P: Hansjoerg Lipp
2576M: hjlipp@web.de
2577P: Tilman Schmidt
2578M: tilman@imap.cc
2579L: gigaset307x-common@lists.sourceforge.net
2580W: http://gigaset307x.sourceforge.net/
2581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002582F: Documentation/isdn/README.gigaset
2583F: drivers/isdn/gigaset/
2584F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002585
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002586HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002587P: Frank Seidel
2588M: frank@f-seidel.de
2589L: lm-sensors@lm-sensors.org
2590W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002592F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002593
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002594HYPERVISOR VIRTUAL CONSOLE DRIVER
2595L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002596S: Odd Fixes
2597F: drivers/char/hvc_*
2598
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002599GSPCA FINEPIX SUBDRIVER
2600P: Frank Zago
2601M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002602L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002603T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002606
2607GSPCA M5602 SUBDRIVER
2608P: Erik Andren
2609M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002610L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002611T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002613F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002614
2615GSPCA PAC207 SONIXB SUBDRIVER
2616P: Hans de Goede
2617M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002618L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002619T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002622
2623GSPCA T613 SUBDRIVER
2624P: Leandro Costantino
2625M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002626L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002627T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002630
2631GSPCA USB WEBCAM DRIVER
2632P: Jean-Francois Moine
2633M: moinejf@free.fr
2634W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002635L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002636T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002638F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002639
Jean Delvare5b543962005-08-15 19:51:02 +02002640HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002641L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002642W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002643S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002644F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002645
Michael Buesch844dd052006-06-26 00:24:59 -07002646HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002647S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002648F: Documentation/hw_random.txt
2649F: drivers/char/hw_random/
2650F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652HARMONY SOUND DRIVER
2653P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002654M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002655L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002657F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
2659HAYES ESP SERIAL DRIVER
2660P: Andrew J. Robinson
2661M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662W: http://www.nyx.net/~arobinso
2663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002664F: Documentation/serial/hayes-esp.txt
2665F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002666
2667HEWLETT-PACKARD SMART2 RAID DRIVER
2668P: Chirag Kantharia
2669M: chirag.kantharia@hp.com
2670L: iss_storagedev@hp.com
2671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002672F: Documentation/blockdev/cpqarray.txt
2673F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002674
2675HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2676P: Mike Miller
2677M: mike.miller@hp.com
2678L: iss_storagedev@hp.com
2679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002680F: Documentation/blockdev/cciss.txt
2681F: drivers/block/cciss*
2682F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002683
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684HFS FILESYSTEM
2685P: Roman Zippel
2686M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002688F: Documentation/filesystems/hfs.txt
2689F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691HGA FRAMEBUFFER DRIVER
2692P: Ferenc Bakonyi
2693M: fero@drama.obuda.kando.hu
2694L: linux-nvidia@lists.surfsouth.com
2695W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002697F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002699HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002700P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002701M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002702P: Rafael J. Wysocki
2703M: rjw@sisk.pl
2704L: linux-pm@lists.linux-foundation.org
2705S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002706F: arch/x86/power/
2707F: drivers/base/power/
2708F: kernel/power/
2709F: include/linux/suspend.h
2710F: include/linux/freezer.h
2711F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002712F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002713
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002714HID CORE LAYER
2715P: Jiri Kosina
2716M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002717L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002718T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/hid/
2721F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002722
Ingo Molnar38bed542007-02-22 09:09:34 +01002723HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2724P: Thomas Gleixner
2725M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002727F: Documentation/timers/
2728F: kernel/hrtimer.c
2729F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731HIGH-SPEED SCC DRIVER FOR AX.25
2732P: Klaus Kudielka
2733M: klaus.kudielka@ieee.org
2734L: linux-hams@vger.kernel.org
2735W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/net/hamradio/dmascc.c
2738F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002740HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2741P: HighPoint Linux Team
2742M: linux@highpoint-tech.com
2743W: http://www.highpoint-tech.com
2744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002745F: Documentation/scsi/hptiop.txt
2746F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748HIPPI
2749P: Jes Sorensen
2750M: jes@trained-monkey.org
2751L: linux-hippi@sunsite.dk
2752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002753F: include/linux/hippidevice.h
2754F: include/linux/if_hippi.h
2755F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Jouni Malinenff1d2762005-05-12 22:54:16 -04002757HOST AP DRIVER
2758P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002759M: j@w1.fi
2760L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002761L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002762W: http://hostap.epitest.fi/
2763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002765
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002766HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2767P: Carlos Corbacho
2768M: carlos@strangeworlds.co.uk
2769S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002770F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002771
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002772HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2773P: Jaroslav Kysela
2774M: perex@perex.cz
2775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002777
Joe Perches7d2c86b2009-04-07 20:59:01 -07002778HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002779P: Clemens Ladisch
2780M: clemens@ladisch.de
2781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: Documentation/timers/hpet.txt
2783F: drivers/char/hpet.c
2784F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002785
2786HPET: i386
2787P: Venkatesh Pallipadi (Venki)
2788M: venkatesh.pallipadi@intel.com
2789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002790F: arch/x86/kernel/hpet.c
2791F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002792
2793HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002794P: Vojtech Pavlik
2795M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002796S: Maintained
2797
Joe Perches7d2c86b2009-04-07 20:59:01 -07002798HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002799P: Bob Picco
2800M: bob.picco@hp.com
2801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804HPFS FILESYSTEM
2805P: Mikulas Patocka
2806M: mikulas@artax.karlin.mff.cuni.cz
2807W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002809F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Joe Perches7d2c86b2009-04-07 20:59:01 -07002811HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002812P: Jan Dumon
2813M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002814W: http://www.pharscape.org
2815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002817
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002818HTCPEN TOUCHSCREEN DRIVER
2819P: Pau Oliva Fora
2820M: pof@eslack.org
2821L: linux-input@vger.kernel.org
2822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825HUGETLB FILESYSTEM
2826P: William Irwin
2827M: wli@holomorphy.com
2828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002829F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002831I2C/SMBUS STUB DRIVER
2832P: Mark M. Hoffman
2833M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002834L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002836F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002837
Jean Delvare5b543962005-08-15 19:51:02 +02002838I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002839P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002841P: Ben Dooks (embedded platforms)
2842M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002843L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002844W: http://i2c.wiki.kernel.org/
2845T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002847F: Documentation/i2c/
2848F: drivers/i2c/
2849F: include/linux/i2c.h
2850F: include/linux/i2c-dev.h
2851F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Till Harbaume8c76ee2007-05-01 23:26:35 +02002853I2C-TINY-USB DRIVER
2854P: Till Harbaum
2855M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002856L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002857W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002859F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002862P: H. Peter Anvin
2863M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002865F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868P: H. Peter Anvin
2869M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002870T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871S: Maintained
2872
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873IA64 (Itanium) PLATFORM
2874P: Tony Luck
Tony Luckfadfd2b2009-06-30 14:28:54 -07002875P: Fenghua Yu
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876M: tony.luck@intel.com
Tony Luckfadfd2b2009-06-30 14:28:54 -07002877M: fenghua.yu@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878L: linux-ia64@vger.kernel.org
2879W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002880T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002882F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884IBM MCA SCSI SUBSYSTEM DRIVER
2885P: Michael Lang
2886M: langa2@kph.uni-mainz.de
2887W: http://www.uni-mainz.de/~langm000/linux.html
2888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891IBM Power Linux RAID adapter
2892P: Brian King
2893M: brking@us.ibm.com
2894S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002895F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897IBM ServeRAID RAID DRIVER
2898P: Jack Hammer
2899P: Dave Jeffery
2900M: ipslinux@adaptec.com
2901W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002903F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002905IDE SUBSYSTEM
David S. Miller920d44e2009-06-21 16:11:33 -07002906P: David S. Miller
2907M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002909T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002911F: Documentation/ide/
2912F: drivers/ide/
2913F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002915IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002916P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002917M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002918L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/cdrom/ide-cd
2921F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Andy Henroid27471fd2008-10-09 11:45:22 -07002923IDLE-I7300
2924P: Andy Henroid
2925M: andrew.d.henroid@intel.com
2926L: linux-pm@lists.linux-foundation.org
2927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002929
Joe Perches7d2c86b2009-04-07 20:59:01 -07002930IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002932M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002933P: Stefan Richter
2934M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935L: linux1394-devel@lists.sourceforge.net
2936W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002937T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002939F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Joe Perches7d2c86b2009-04-07 20:59:01 -07002941IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942P: Dan Dennedy
2943M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002944P: Stefan Richter
2945M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002948F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002949
Sergey Lapin02cf2282009-06-08 12:18:50 +00002950IEEE 802.15.4 SUBSYSTEM
2951P: Dmitry Eremin-Solenikov
2952M: dbaryshkov@gmail.com
2953P: Sergey Lapin
2954M: slapin@ossfans.org
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002955L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002956W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002957T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002958S: Maintained
2959F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002960F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002961
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002962INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2963P: Mimi Zohar
2964M: zohar@us.ibm.com
2965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002966F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002967
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002969L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002970S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002971F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
2973INFINIBAND SUBSYSTEM
2974P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002975M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002977M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002979M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002980L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002982T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002984F: Documentation/infiniband/
2985F: drivers/infiniband/
2986F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Robert Lovec9f04f52005-07-15 12:21:07 -04002988INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002989P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002990M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002991P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002992M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002993P: Eric Paris
2994M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: Documentation/filesystems/inotify.txt
2997F: fs/notify/inotify/
2998F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002999
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003000INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
3001P: Dmitry Torokhov
3002M: dmitry.torokhov@gmail.com
3003M: dtor@mail.ru
3004L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003005T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003007F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003008
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003009INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01003010P: Sylvain Meyer
3011M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003012L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003014F: Documentation/fb/intelfb.txt
3015F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01003018P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08003019M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003020L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01003021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003022F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303024INTEL MENLOW THERMAL DRIVER
3025P: Sujith Thomas
3026M: sujith.thomas@intel.com
3027L: linux-acpi@vger.kernel.org
3028W: http://www.lesswatts.org/projects/acpi/
3029S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003030F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032INTEL IA32 MICROCODE UPDATE SUPPORT
3033P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08003034M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003036F: arch/x86/kernel/microcode_core.c
3037F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003039INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01003040P: Maciej Sosnowski
3041M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003043F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003044
David Woodhouse6c8909b2008-10-18 16:12:17 +01003045INTEL IOMMU (VT-d)
3046P: David Woodhouse
3047M: dwmw2@infradead.org
3048L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003049T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003050S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003051F: drivers/pci/intel-iommu.c
3052F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003053
Dan Williamsb3e5f262007-08-07 10:26:35 -07003054INTEL IOP-ADMA DMA DRIVER
3055P: Dan Williams
3056M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07003057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003058F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003059
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003060INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
3061P: Krzysztof Halasa
3062M: khc@pm.waw.pl
3063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3065F: arch/arm/mach-ixp4xx/include/mach/npe.h
3066F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3067F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3068F: drivers/net/arm/ixp4xx_eth.c
3069F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003070
Michael Buesch844dd052006-06-26 00:24:59 -07003071INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3072P: Deepak Saxena
3073M: dsaxena@plexity.net
3074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003075F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003076
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003077INTEL IXP2000 ETHERNET DRIVER
3078P: Lennert Buytenhek
3079M: kernel@wantstofly.org
3080L: netdev@vger.kernel.org
3081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003082F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003083
Auke Kokd94e6fe2008-03-03 14:37:47 -08003084INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003085P: Jeff Kirsher
3086M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003087P: Jesse Brandeburg
3088M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003089P: Bruce Allan
3090M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003091P: PJ Waskiewicz
3092M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003093P: John Ronciak
3094M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003095L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003096W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003098F: drivers/net/e100.c
3099F: drivers/net/e1000/
3100F: drivers/net/e1000e/
3101F: drivers/net/igb/
3102F: drivers/net/ixgb/
3103F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
James Ketrenos826d2ab2005-11-07 18:56:59 -06003105INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003106P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003107M: yi.zhu@intel.com
3108P: James Ketrenos
3109M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003110P: Reinette Chatre
3111M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003112L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003113L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003114W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003115W: http://ipw2100.sourceforge.net
3116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003117F: Documentation/networking/README.ipw2100
3118F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003119
3120INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003121P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003122M: yi.zhu@intel.com
3123P: James Ketrenos
3124M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003125P: Reinette Chatre
3126M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003127L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003128L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003129W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003130W: http://ipw2200.sourceforge.net
3131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003132F: Documentation/networking/README.ipw2200
3133F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003134
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003135INTEL WIRELESS WIMAX CONNECTION 2400
3136P: Inaky Perez-Gonzalez
3137M: inaky.perez-gonzalez@intel.com
3138M: linux-wimax@intel.com
3139L: wimax@linuxwimax.org
3140S: Supported
3141W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003142F: Documentation/wimax/README.i2400m
3143F: drivers/net/wimax/i2400m/
3144F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003145
Zhu Yib481de92007-09-25 17:54:57 -07003146INTEL WIRELESS WIFI LINK (iwlwifi)
3147P: Zhu Yi
3148M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003149P: Reinette Chatre
3150M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003151L: linux-wireless@vger.kernel.org
3152L: ipw3945-devel@lists.sourceforge.net
3153W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003154T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003155S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003156F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003157
Ralf Baechlecb109a02007-08-30 23:56:30 -07003158IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159P: Ralf Baechle
3160M: ralf@linux-mips.org
3161L: linux-mips@linux-mips.org
3162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Ralf Baechlecb109a02007-08-30 23:56:30 -07003165IOC3 SERIAL DRIVER
3166P: Pat Gefre
3167M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003168L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003170F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003171
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003172IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173P: Juanjo Ciarlante
3174M: jjciarla@raiz.uncu.edu.ar
3175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003176F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Francois Romieu1202d6f2007-09-17 17:13:55 -07003178IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3179P: Francois Romieu
3180M: romieu@fr.zoreil.com
3181P: Sorbica Shieh
3182M: sorbica@icplus.com.tw
3183P: Jesse Huang
3184M: jesse@icplus.com.tw
3185L: netdev@vger.kernel.org
3186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003187F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003188
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003189IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003190P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003191M: infinipath@qlogic.com
3192L: general@lists.openfabrics.org
3193T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003195F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003196
Corey Minyard4409ebe2006-04-20 02:43:12 -07003197IPMI SUBSYSTEM
3198P: Corey Minyard
3199M: minyard@acm.org
3200L: openipmi-developer@lists.sourceforge.net
3201W: http://openipmi.sourceforge.net/
3202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003203F: Documentation/IPMI.txt
3204F: drivers/char/ipmi/
3205F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003207IPS SCSI RAID DRIVER
3208P: Adaptec OEM Raid Solutions
3209M: aacraid@adaptec.com
3210L: linux-scsi@vger.kernel.org
3211W: http://www.adaptec.com/
3212S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003213F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003214
3215IPVS
3216P: Wensong Zhang
3217M: wensong@linux-vs.org
3218P: Simon Horman
3219M: horms@verge.net.au
3220P: Julian Anastasov
3221M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003222L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003223L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003225F: Documentation/networking/ipvs-sysctl.txt
3226F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Randy Dunlape7839f22008-10-12 16:11:45 -07003228IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003229P: Jiri Kosina
3230M: jkosina@suse.cz
3231P: David Sterba
3232M: dsterba@suse.cz
3233S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003234T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003235F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003236
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237IPX NETWORK LAYER
3238P: Arnaldo Carvalho de Melo
3239M: acme@ghostprotocols.net
3240L: netdev@vger.kernel.org
3241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003242F: include/linux/ipx.h
3243F: include/net/ipx.h
3244F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003247P: Samuel Ortiz
3248M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003249L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003251S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003252T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003253F: Documentation/networking/irda.txt
3254F: drivers/net/irda/
3255F: include/net/irda/
3256F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003258ISAPNP
3259P: Jaroslav Kysela
3260M: perex@perex.cz
3261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003262F: Documentation/isapnp.txt
3263F: drivers/pnp/isapnp/
3264F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003265
Mike Christie14816b12007-11-28 16:22:06 -08003266ISCSI
3267P: Mike Christie
3268M: michaelc@cs.wisc.edu
3269L: open-iscsi@googlegroups.com
3270W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003271T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003273F: drivers/scsi/*iscsi*
3274F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276ISDN SUBSYSTEM
3277P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003278M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003279L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003281T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003283F: Documentation/isdn/
3284F: drivers/isdn/
3285F: include/linux/isdn.h
3286F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288ISDN SUBSYSTEM (Eicon active card driver)
3289P: Armin Schindler
3290M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003291L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292W: http://www.melware.de
3293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003294F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
Hans Verkuil91821ff2007-12-02 09:35:33 -03003296IVTV VIDEO4LINUX DRIVER
3297P: Hans Verkuil
3298M: hverkuil@xs4all.nl
3299L: ivtv-devel@ivtvdriver.org
3300L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003301L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003302T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003303W: http://www.ivtvdriver.org
3304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003305F: Documentation/video4linux/*.ivtv
3306F: drivers/media/video/ivtv/
3307F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003308
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003309JFS FILESYSTEM
3310P: Dave Kleikamp
3311M: shaggy@austin.ibm.com
3312L: jfs-discussion@lists.sourceforge.net
3313W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003314T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003316F: Documentation/filesystems/jfs.txt
3317F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003318
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003319JME NETWORK DRIVER
3320P: Guo-Fu Tseng
3321M: cooldavid@cooldavid.org
3322L: netdev@vger.kernel.org
3323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003324F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3327P: David Woodhouse
3328M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003329L: linux-mtd@lists.infradead.org
3330W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003332F: fs/jffs2/
3333F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Josh Triplettde456d32006-07-30 03:04:00 -07003335JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003336P: Stephen Tweedie
3337M: sct@redhat.com
3338P: Andrew Morton
3339M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003340L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003342F: fs/jbd*/
3343F: include/linux/ext*jbd*.h
3344F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003345
Rudolf Marek4660cb32006-10-08 22:01:26 +02003346K8TEMP HARDWARE MONITORING DRIVER
3347P: Rudolf Marek
3348M: r.marek@assembler.cz
3349L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003351F: Documentation/hwmon/k8temp
3352F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353
3354KCONFIG
3355P: Roman Zippel
3356M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003357L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003359F: Documentation/kbuild/kconfig-language.txt
3360F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Vivek Goyalea6c2082006-05-20 14:59:55 -07003362KDUMP
3363P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003364M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003365P: Haren Myneni
3366M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003367L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003368W: http://lse.sourceforge.net/kdump/
3369S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003370F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003371
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372KERNEL AUTOMOUNTER (AUTOFS)
3373P: H. Peter Anvin
3374M: hpa@zytor.com
3375L: autofs@linux.kernel.org
3376S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003377F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378
3379KERNEL AUTOMOUNTER v4 (AUTOFS4)
3380P: Ian Kent
3381M: raven@themaw.net
3382L: autofs@linux.kernel.org
3383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003384F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Joe Perches7d2c86b2009-04-07 20:59:01 -07003386KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387P: Sam Ravnborg
3388M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003389T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3390T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003391L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003393F: Documentation/kbuild/
3394F: Makefile
3395F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397KERNEL JANITORS
3398P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003399L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401S: Maintained
3402
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003403KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003404P: J. Bruce Fields
3405M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003407M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003408L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003411F: fs/nfsd/
3412F: include/linux/nfsd/
3413F: fs/lockd/
3414F: fs/nfs_common/
3415F: net/sunrpc/
3416F: include/linux/lockd/
3417F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Avi Kivity426d62e2006-12-13 00:34:03 -08003419KERNEL VIRTUAL MACHINE (KVM)
3420P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003421M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003422L: kvm@vger.kernel.org
3423W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003425F: Documentation/*/kvm.txt
3426F: arch/*/kvm/
3427F: arch/*/include/asm/kvm*
3428F: include/linux/kvm*
3429F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003430
Joerg Roedelad8003d2008-09-10 20:01:07 +02003431KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3432P: Joerg Roedel
3433M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003434L: kvm@vger.kernel.org
3435W: http://kvm.qumranet.com
3436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003437F: arch/x86/include/asm/svm.h
3438F: arch/x86/kvm/kvm_svm.h
3439F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003440
Hollis Blanchard513014b2008-04-16 23:28:08 -05003441KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3442P: Hollis Blanchard
3443M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003444L: kvm-ppc@vger.kernel.org
3445W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003447F: arch/powerpc/include/asm/kvm*
3448F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003449
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003450KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003451P: Xiantao Zhang
3452M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003453L: kvm-ia64@vger.kernel.org
3454W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/ia64/kvm.txt
3457F: arch/ia64/include/asm/kvm*
3458F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003459
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003460KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3461P: Carsten Otte
3462M: cotte@de.ibm.com
3463P: Christian Borntraeger
3464M: borntraeger@de.ibm.com
3465M: linux390@de.ibm.com
3466L: linux-s390@vger.kernel.org
3467W: http://www.ibm.com/developerworks/linux/linux390/
3468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003469F: Documentation/s390/kvm.txt
3470F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003471F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003472
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003473KEXEC
3474P: Eric Biederman
3475M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003476W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003477L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: include/linux/kexec.h
3480F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003481
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003482KGDB
3483P: Jason Wessel
3484M: jason.wessel@windriver.com
3485L: kgdb-bugreport@lists.sourceforge.net
3486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003487F: Documentation/DocBook/kgdb.tmpl
3488F: drivers/misc/kgdbts.c
3489F: drivers/serial/kgdboc.c
3490F: include/linux/kgdb.h
3491F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003492
Pekka Enberg456db8c2008-04-28 22:47:29 +03003493KMEMCHECK
3494P: Vegard Nossum
3495M: vegardno@ifi.uio.no
3496P Pekka Enberg
3497M: penberg@cs.helsinki.fi
3498L: linux-kernel@vger.kernel.org
3499S: Maintained
3500
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003501KMEMLEAK
3502P: Catalin Marinas
3503M: catalin.marinas@arm.com
3504L: linux-kernel@vger.kernel.org
3505S: Maintained
3506F: Documentation/kmemleak.txt
3507F: include/linux/kmemleak.h
3508F: mm/kmemleak.c
3509F: mm/kmemleak-test.c
3510
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003511KMEMTRACE
3512P: Eduard - Gabriel Munteanu
3513M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003514S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003515F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003516F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003517F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003518
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003519KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003520P: Ananth N Mavinakayanahalli
3521M: ananth@in.ibm.com
3522P: Anil S Keshavamurthy
3523M: anil.s.keshavamurthy@intel.com
3524P: David S. Miller
3525M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003526P: Masami Hiramatsu
3527M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003529F: Documentation/kprobes.txt
3530F: include/linux/kprobes.h
3531F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003532
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003533KS0108 LCD CONTROLLER DRIVER
3534P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003535M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003536W: http://miguelojeda.es/auxdisplay.htm
3537W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003539F: Documentation/auxdisplay/ks0108
3540F: drivers/auxdisplay/ks0108.c
3541F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003545S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003546F: Documentation/networking/lapb-module.txt
3547F: include/*/lapb.h
3548F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
3550LASI 53c700 driver for PARISC
3551P: James E.J. Bottomley
3552M: James.Bottomley@HansenPartnership.com
3553L: linux-scsi@vger.kernel.org
3554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003555F: Documentation/scsi/53c700.txt
3556F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Richard Purdie263de9b2006-05-15 09:44:16 -07003558LED SUBSYSTEM
3559P: Richard Purdie
3560M: rpurdie@rpsys.net
3561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003562F: drivers/leds/
3563F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003564
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565LEGO USB Tower driver
3566P: Juergen Stuber
3567M: starblue@users.sourceforge.net
3568L: legousb-devel@lists.sourceforge.net
3569W: http://legousb.sourceforge.net/
3570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003571F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Rusty Russell568a17f2007-10-25 14:12:24 +10003573LGUEST
3574P: Rusty Russell
3575M: rusty@rustcorp.com.au
3576L: lguest@ozlabs.org
3577W: http://lguest.ozlabs.org/
3578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003579F: Documentation/lguest/
3580F: arch/x86/lguest/
3581F: drivers/lguest/
3582F: include/linux/lguest*.h
3583F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585LINUX FOR IBM pSERIES (RS/6000)
3586P: Paul Mackerras
3587M: paulus@au.ibm.com
3588W: http://www.ibm.com/linux/ltc/projects/ppc
3589S: Supported
3590
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003591LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003592P: Benjamin Herrenschmidt
3593M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003594P: Paul Mackerras
3595M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596W: http://www.penguinppc.org/
3597L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003598T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599S: Supported
3600
3601LINUX FOR POWER MACINTOSH
3602P: Benjamin Herrenschmidt
3603M: benh@kernel.crashing.org
3604W: http://www.penguinppc.org/
3605L: linuxppc-dev@ozlabs.org
3606S: Maintained
3607
Grant Likely77a76362008-07-12 12:11:43 -06003608LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003609P: Grant Likely
3610M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003612T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613S: Maintained
3614
3615LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003616P: Josh Boyer
3617M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618P: Matt Porter
3619M: mporter@kernel.crashing.org
3620W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003621L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003622T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623S: Maintained
3624
Grant Likely260c02a2007-10-02 12:15:34 +10003625LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3626P: Grant Likely
3627M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003628W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003629L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003630T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631S: Maintained
3632
Tom Rinie93adf12005-07-26 12:49:53 -07003633LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003634P: Vitaly Bordug
3635M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003636P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003637M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003638W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003639L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003640S: Maintained
3641
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003643P: Kumar Gala
3644M: galak@kernel.crashing.org
3645W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003646L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003647S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648
Olof Johanssonab06ff32006-09-06 14:44:54 -05003649LINUX FOR POWERPC PA SEMI PWRFICIENT
3650P: Olof Johansson
3651M: olof@lixom.net
3652W: http://www.pasemi.com/
3653L: linuxppc-dev@ozlabs.org
3654S: Supported
3655
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656LINUX SECURITY MODULE (LSM) FRAMEWORK
3657P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003658M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003659L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003660T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661S: Supported
3662
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003663LLC (802.2)
3664P: Arnaldo Carvalho de Melo
3665M: acme@ghostprotocols.net
3666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: include/linux/llc.h
3668F: include/net/llc*
3669F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003670
Pavel Machek455fbdd2008-11-12 13:27:02 -08003671LIS3LV02D ACCELEROMETER DRIVER
3672P: Eric Piel
3673M: eric.piel@tremplin-utc.net
3674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003675F: Documentation/hwmon/lis3lv02d
3676F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003677
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678LM83 HARDWARE MONITOR DRIVER
3679P: Jean Delvare
3680M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003681L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003683F: Documentation/hwmon/lm83
3684F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685
3686LM90 HARDWARE MONITOR DRIVER
3687P: Jean Delvare
3688M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003689L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003691F: Documentation/hwmon/lm90
3692F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003694LOCKDEP AND LOCKSTAT
3695P: Peter Zijlstra
3696M: peterz@infradead.org
3697P: Ingo Molnar
3698M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003699T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003701F: Documentation/lockdep*.txt
3702F: Documentation/lockstat.txt
3703F: include/linux/lockdep.h
3704F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003705
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003706LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707P: Richard Russon (FlatCap)
3708M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003709L: linux-ntfs-dev@lists.sourceforge.net
3710W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003712F: Documentation/ldm.txt
3713F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003715LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3716P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003717M: Eric.Moore@lsi.com
3718M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003719L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003720L: linux-scsi@vger.kernel.org
3721W: http://www.lsilogic.com/support
3722S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003723F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3726P: Matthew Wilcox
3727M: matthew@wil.cx
3728L: linux-scsi@vger.kernel.org
3729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003730F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Mike Frysinger81365c32008-10-29 14:01:12 -07003732LTP (Linux Test Project)
3733P: Subrata Modak
3734M: subrata@linux.vnet.ibm.com
3735P: Mike Frysinger
3736M: vapier@gentoo.org
3737L: ltp-list@lists.sourceforge.net (subscribers-only)
3738W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003739T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003740S: Maintained
3741
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003742M32R ARCHITECTURE
3743P: Hirokazu Takata
3744M: takata@linux-m32r.org
3745L: linux-m32r@ml.linux-m32r.org
3746L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3747W: http://www.linux-m32r.org/
3748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003750
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751M68K ARCHITECTURE
3752P: Geert Uytterhoeven
3753M: geert@linux-m68k.org
3754P: Roman Zippel
3755M: zippel@linux-m68k.org
3756L: linux-m68k@lists.linux-m68k.org
3757W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003758T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003761F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
3763M68K ON APPLE MACINTOSH
3764P: Joshua Thompson
3765M: funaho@jurai.org
3766W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003767L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003769F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
3771M68K ON HP9000/300
3772P: Philip Blundell
3773M: philb@gnu.org
3774W: http://www.tazenda.demon.co.uk/phil/linux-hp
3775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003776F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Jiri Benc64a327a2007-05-05 11:47:08 -07003778MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003779P: Johannes Berg
3780M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003781L: linux-wireless@vger.kernel.org
3782W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003783T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003785F: Documentation/networking/mac80211-injection.txt
3786F: include/net/mac80211.h
3787F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003788
Stefano Brivio1036d862007-12-23 04:46:27 +01003789MAC80211 PID RATE CONTROL
3790P: Stefano Brivio
3791M: stefano.brivio@polimi.it
3792P: Mattias Nissler
3793M: mattias.nissler@gmx.de
3794L: linux-wireless@vger.kernel.org
3795W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003796T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003799
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003800MACVLAN DRIVER
3801P: Patrick McHardy
3802M: kaber@trash.net
3803L: netdev@vger.kernel.org
3804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: drivers/net/macvlan.c
3806F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003807
Michael Kerriskfaf16682005-07-31 22:34:47 -07003808MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003809P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003810M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003811W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003812L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003813S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003814
Stefano Brivio74cda162007-11-19 20:27:46 +01003815MARVELL LIBERTAS WIRELESS DRIVER
3816P: Dan Williams
3817M: dcbw@redhat.com
3818L: libertas-dev@lists.infradead.org
3819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003821
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003822MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003823P: Lennert Buytenhek
3824M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003825L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/net/mv643xx_eth.*
3828F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Pierre Ossman2a695672009-03-16 19:52:26 +01003830MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3831P: Nicolas Pitre
3832M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003833S: Maintained
3834
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003835MARVELL YUKON / SYSKONNECT DRIVER
3836P: Mirko Lindner
3837M: mlindner@syskonnect.de
3838P: Ralph Roesler
3839M: rroesler@syskonnect.de
3840W: http://www.syskonnect.com
3841S: Supported
3842
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843MATROX FRAMEBUFFER DRIVER
3844P: Petr Vandrovec
3845M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003846L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003848F: drivers/video/matrox/matroxfb_*
3849F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003851MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3852P: Hans J. Koch
3853M: hjk@linutronix.de
3854L: lm-sensors@lm-sensors.org
3855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: Documentation/hwmon/max6650
3857F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003858
Joe Perches127c49a2009-04-08 08:34:04 -07003859MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3860P: Mauro Carvalho Chehab
3861M: mchehab@infradead.org
3862P: LinuxTV.org Project
3863L: linux-media@vger.kernel.org
3864W: http://linuxtv.org
3865T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3866S: Maintained
3867F: Documentation/dvb/
3868F: Documentation/video4linux/
3869F: drivers/media/
3870F: include/media/
3871F: include/linux/dvb/
3872F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003873
3874MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003875P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003876M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003877L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003878W: http://megaraid.lsilogic.com
3879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003880F: Documentation/scsi/megaraid.txt
3881F: drivers/scsi/megaraid.*
3882F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003883
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884MEMORY MANAGEMENT
3885L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886W: http://www.linux-mm.org
3887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003888F: include/linux/mm.h
3889F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003890
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003891MEMORY RESOURCE CONTROLLER
3892P: Balbir Singh
3893M: balbir@linux.vnet.ibm.com
3894P: Pavel Emelyanov
3895M: xemul@openvz.org
3896P: KAMEZAWA Hiroyuki
3897M: kamezawa.hiroyu@jp.fujitsu.com
3898L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902MEMORY TECHNOLOGY DEVICES (MTD)
3903P: David Woodhouse
3904M: dwmw2@infradead.org
3905W: http://www.linux-mtd.infradead.org/
3906L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003907T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: drivers/mtd/
3910F: include/linux/mtd/
3911F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Michal Simekc6375b02009-03-27 14:25:52 +01003913MICROBLAZE ARCHITECTURE
3914P: Michal Simek
3915M: monstr@monstr.eu
3916L: microblaze-uclinux@itee.uq.edu.au
3917W: http://www.monstr.eu/fdt/
3918T: git git://git.monstr.eu/linux-2.6-microblaze.git
3919S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003920F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
3922MICROTEK X6 SCANNER
3923P: Oliver Neukum
3924M: oliver@neukum.name
3925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928MIPS
3929P: Ralf Baechle
3930M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003931W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003933T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003934S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003935F: Documentation/mips/
3936F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
3938MISCELLANEOUS MCA-SUPPORT
3939P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003940M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003942F: Documentation/ia64/mca.txt
3943F: Documentation/mca.txt
3944F: drivers/mca/
3945F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946
3947MODULE SUPPORT
3948P: Rusty Russell
3949M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: include/linux/module.h
3952F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3955P: Stelian Pop
3956M: stelian@popies.net
3957W: http://popies.net/meye/
3958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003959F: Documentation/video4linux/meye.txt
3960F: drivers/media/video/meye.*
3961F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
Pavel Pisac58ff042007-05-16 01:10:41 +02003963MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3964P: Pavel Pisa
3965M: ppisa@pikron.com
3966L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003968F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970MOUSE AND MISC DEVICES [GENERAL]
3971P: Alessandro Rubini
3972M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003974F: drivers/input/mouse/
3975F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
Jiri Slabyb9705b62008-04-30 00:53:48 -07003977MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003978P: Jiri Slaby
3979M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: Documentation/serial/moxa-smartio
3982F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003983
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003984MSI LAPTOP SUPPORT
3985P: Lennart Poettering
3986M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003987W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003988W: http://0pointer.de/lennart/tchibo.html
3989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003990F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003991
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003992MULTIFUNCTION DEVICES (MFD)
3993P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003994M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003995T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003997F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003998
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003999MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07004000P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02004001M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07004002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/mmc/
4004F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004005
David Brownell15a05802007-08-08 09:12:54 -07004006MULTIMEDIA CARD (MMC) ETC. OVER SPI
4007P: David Brownell
4008M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004009S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004010F: drivers/mmc/host/mmc_spi.c
4011F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004012
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013MULTISOUND SOUND DRIVER
4014P: Andrew Veliath
4015M: andrewtv@usa.net
4016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004017F: Documentation/sound/oss/MultiSound
4018F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019
Jiri Slabyd7354102006-12-08 02:38:35 -08004020MULTITECH MULTIPORT CARD (ISICOM)
4021P: Jiri Slaby
4022M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08004023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004024F: drivers/char/isicom.c
4025F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004026
Felipe Balbi550a7372008-07-24 12:27:36 +03004027MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004028P: Felipe Balbi
4029M: felipe.balbi@nokia.com
4030L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004031T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004033F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004034
Brice Goglin2d3cf582008-05-17 12:45:36 +02004035MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
4036P: Andrew Gallatin
4037M: gallatin@myri.com
4038P: Brice Goglin
4039M: brice@myri.com
4040L: netdev@vger.kernel.org
4041W: http://www.myri.com/scs/download-Myri10GE.html
4042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004043F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004044
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02004046P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047M: thockin@hockin.org
4048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004049F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
4051NCP FILESYSTEM
4052P: Petr Vandrovec
4053M: vandrove@vc.cvut.cz
4054L: linware@sh.cvut.cz
4055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004056F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
4058NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
4059P: James E.J. Bottomley
4060M: James.Bottomley@HansenPartnership.com
4061L: linux-scsi@vger.kernel.org
4062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004063F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004065NETEFFECT IWARP RNIC DRIVER (IW_NES)
4066P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07004067M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07004068P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07004069M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004070L: general@lists.openfabrics.org
4071W: http://www.neteffect.com
4072S: Supported
4073F: drivers/infiniband/hw/nes/
4074
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004075NETEM NETWORK EMULATOR
4076P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08004077M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004078L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004080F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004081
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004082NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004083P: Ramkrishna Vepa
4084M: ram.vepa@neterion.com
4085P: Rastapur Santosh
4086M: santosh.rastapur@neterion.com
4087P: Sivakumar Subramani
4088M: sivakumar.subramani@neterion.com
4089P: Sreenivasa Honnur
4090M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004091P: Anil Murthy
4092M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004093L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004094W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4095W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004097F: Documentation/networking/s2io.txt
4098F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100NETFILTER/IPTABLES/IPCHAINS
4101P: Rusty Russell
4102P: Marc Boucher
4103P: James Morris
4104P: Harald Welte
4105P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004106P: Patrick McHardy
4107M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004108L: netfilter-devel@vger.kernel.org
4109L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004110L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111W: http://www.netfilter.org/
4112W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004114F: include/linux/netfilter*
4115F: include/linux/netfilter/
4116F: include/net/netfilter/
4117F: net/*/netfilter.c
4118F: net/*/netfilter/
4119F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
Paul Moore4cc67732006-09-25 15:57:13 -07004121NETLABEL
4122P: Paul Moore
4123M: paul.moore@hp.com
4124W: http://netlabel.sf.net
4125L: netdev@vger.kernel.org
4126S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004127F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004128F: include/net/netlabel.h
4129F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004130
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131NETROM NETWORK LAYER
4132P: Ralf Baechle
4133M: ralf@linux-mips.org
4134L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004135W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004137F: include/linux/netrom.h
4138F: include/net/netrom.h
4139F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004141NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142P: Paul Clements
4143M: Paul.Clements@steeleye.com
4144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004145F: Documentation/blockdev/nbd.txt
4146F: drivers/block/nbd.c
4147F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
4149NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004150P: David S. Miller
4151M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004152L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004153W: http://www.linuxfoundation.org/en/Net
4154T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004156F: net/
4157F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
4159NETWORKING [IPv4/IPv6]
4160P: David S. Miller
4161M: davem@davemloft.net
4162P: Alexey Kuznetsov
4163M: kuznet@ms2.inr.ac.ru
4164P: Pekka Savola (ipv6)
4165M: pekkas@netcore.fi
4166P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004167M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168P: Hideaki YOSHIFUJI
4169M: yoshfuji@linux-ipv6.org
4170P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004171M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004172L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004173T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: net/ipv4/
4176F: net/ipv6/
4177F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178
James Morris10e2ff12007-08-25 14:41:28 -07004179NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4180P: Paul Moore
4181M: paul.moore@hp.com
4182L: netdev@vger.kernel.org
4183S: Maintained
4184
John W. Linville29f8f632006-01-18 14:52:48 -08004185NETWORKING [WIRELESS]
4186P: John W. Linville
4187M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004188L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004189T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004191F: net/wireless/
4192F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004193F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004194
Joe Perches788873a2009-04-16 09:38:45 +00004195NETWORKING DRIVERS
4196L: netdev@vger.kernel.org
4197W: http://www.linuxfoundation.org/en/Net
4198T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4199S: Odd Fixes
4200F: drivers/net/
4201
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004202NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004203P: Dhananjay Phadke
4204M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004205L: netdev@vger.kernel.org
4206W: http://www.netxen.com
4207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004208F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004209
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004210NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004212M: Trond.Myklebust@netapp.com
4213L: linux-nfs@vger.kernel.org
4214W: http://client.linux-nfs.org
4215T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004217F: fs/lockd/
4218F: fs/nfs/
4219F: fs/nfs_common/
4220F: net/sunrpc/
4221F: include/linux/lockd/
4222F: include/linux/nfs*
4223F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
4225NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004226P: Jan-Pascal van Best
4227M: janpascal@vanbest.org
4228P: Andreas Mohr
4229M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004230L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004232F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004234NILFS2 FILESYSTEM
4235P: KONISHI Ryusuke
4236M: konishi.ryusuke@lab.ntt.co.jp
4237L: users@nilfs.org
4238W: http://www.nilfs.org/en/
4239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004240F: Documentation/filesystems/nilfs2.txt
4241F: fs/nilfs2/
4242F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4245P: YOKOTA Hiroshi
4246M: yokota@netlab.is.tsukuba.ac.jp
4247W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/scsi/NinjaSCSI.txt
4250F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
4252NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4253P: GOTO Masanori
4254M: gotom@debian.or.jp
4255P: YOKOTA Hiroshi
4256M: yokota@netlab.is.tsukuba.ac.jp
4257W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: Documentation/scsi/NinjaSCSI.txt
4260F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262NTFS FILESYSTEM
4263P: Anton Altaparmakov
4264M: aia21@cantab.net
4265L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004266W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004267T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004269F: Documentation/filesystems/ntfs.txt
4270F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004272NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004273P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004274M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004275L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004277F: drivers/video/riva/
4278F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
Tony Lindgrenf5525782009-05-28 13:23:53 -07004280OMAP SUPPORT
4281P: Tony Lindgren <tony@atomide.com>
4282M: tony@atomide.com
4283L: linux-omap@vger.kernel.org
4284W: http://www.muru.com/linux/omap/
4285W: http://linux.omap.com/
4286T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4287S: Maintained
4288F: arch/arm/*omap*
4289
4290OMAP CLOCK FRAMEWORK SUPPORT
4291P: Paul Walmsley
4292M: paul@pwsan.com
4293L: linux-omap@vger.kernel.org
4294S: Maintained
4295F: arch/arm/*omap*/*clock*
4296
4297OMAP POWER MANAGEMENT SUPPORT
4298P: Kevin Hilman
4299M: khilman@deeprootsystems.com
4300L: linux-omap@vger.kernel.org
4301S: Maintained
4302F: arch/arm/*omap*/*pm*
4303
4304OMAP AUDIO SUPPORT
4305P: Jarkko Nikula
4306M: jhnikula@gmail.com
4307L: alsa-devel@alsa-project.org (subscribers-only)
4308L: linux-omap@vger.kernel.org
4309S: Maintained
4310F: sound/soc/omap/
4311
4312OMAP FRAMEBUFFER SUPPORT
4313P: Imre Deak
4314M: imre.deak@nokia.com
4315L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4316L: linux-omap@vger.kernel.org
4317S: Maintained
4318F: drivers/video/omap/
4319
4320OMAP MMC SUPPORT
4321P: Jarkko Lavinen
4322M: jarkko.lavinen@nokia.com
4323L: linux-kernel@vger.kernel.org
4324L: linux-omap@vger.kernel.org
4325S: Maintained
4326F: drivers/mmc/host/*omap*
4327
4328OMAP RANDOM NUMBER GENERATOR SUPPORT
4329P: Deepak Saxena
4330M: dsaxena@plexity.net
4331S: Maintained
4332F: drivers/char/hw_random/omap-rng.c
4333
4334OMAP USB SUPPORT
4335P: Felipe Balbi
4336M: felipe.balbi@nokia.com
4337P: David Brownell
4338M: dbrownell@users.sourceforge.net
4339L: linux-usb@vger.kernel.org
4340L: linux-omap@vger.kernel.org
4341S: Maintained
4342
Bob Copeland0ad122d2008-07-25 19:45:18 -07004343OMFS FILESYSTEM
4344P: Bob Copeland
4345M: me@bobcopeland.com
4346L: linux-karma-devel@lists.sourceforge.net
4347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: Documentation/filesystems/omfs.txt
4349F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004350
Harald Weltec1986ee2005-11-13 16:06:29 -08004351OMNIKEY CARDMAN 4000 DRIVER
4352P: Harald Welte
4353M: laforge@gnumonks.org
4354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004355F: drivers/char/pcmcia/cm4000_cs.c
4356F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004357
Harald Welte77c44ab2005-11-13 16:06:26 -08004358OMNIKEY CARDMAN 4040 DRIVER
4359P: Harald Welte
4360M: laforge@gnumonks.org
4361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004362F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004363
Jonathan Corbet77d51402007-03-22 19:44:17 -03004364OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004365P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004366M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004367L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004368T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004371
Thomas Gleixner431bca72007-05-02 09:31:35 +02004372ONENAND FLASH DRIVER
4373P: Kyungmin Park
4374M: kyungmin.park@samsung.com
4375L: linux-mtd@lists.infradead.org
4376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004377F: drivers/mtd/onenand/
4378F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004379
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380ONSTREAM SCSI TAPE DRIVER
4381P: Willem Riede
4382M: osst@riede.org
4383L: osst-users@lists.sourceforge.net
4384L: linux-scsi@vger.kernel.org
4385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004386F: drivers/scsi/osst*
4387F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004389OPENCORES I2C BUS DRIVER
4390P: Peter Korsgaard
4391M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004392L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004393S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004394F: Documentation/i2c/busses/i2c-ocores
4395F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004396
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004398P: Robert Richter
4399M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400L: oprofile-list@lists.sf.net
4401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004402F: arch/*/oprofile/
4403F: drivers/oprofile/
4404F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004406ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4407P: Mark Fasheh
4408M: mfasheh@suse.com
4409P: Joel Becker
4410M: joel.becker@oracle.com
4411L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4412W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004413T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004415F: Documentation/filesystems/ocfs2.txt
4416F: Documentation/filesystems/dlmfs.txt
4417F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004418
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419ORINOCO DRIVER
4420P: Pavel Roskin
4421M: proski@gnu.org
4422P: David Gibson
4423M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004424L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004425L: orinoco-users@lists.sourceforge.net
4426L: orinoco-devel@lists.sourceforge.net
4427W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004429F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004431OSD LIBRARY and FILESYSTEM
Boaz Harrosh68274792009-01-25 17:24:14 +02004432P: Boaz Harrosh
4433M: bharrosh@panasas.com
4434P: Benny Halevy
4435M: bhalevy@panasas.com
4436L: osd-dev@open-osd.org
4437W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004438T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004439S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004440F: drivers/scsi/osd/
4441F: drivers/include/scsi/osd_*
4442F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004443
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004444P54 WIRELESS DRIVER
4445P: Michael Wu
4446M: flamingice@sourmilk.net
4447L: linux-wireless@vger.kernel.org
4448W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004449T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004452
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004453PA SEMI ETHERNET DRIVER
4454P: Olof Johansson
4455M: olof@lixom.net
4456L: netdev@vger.kernel.org
4457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004458F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004459
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004460PA SEMI SMBUS DRIVER
4461P: Olof Johansson
4462M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004463L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004465F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004466
Harald Welte709ee532008-09-23 17:46:57 +02004467PANASONIC LAPTOP ACPI EXTRAS DRIVER
4468P: Harald Welte
4469M: laforge@gnumonks.org
4470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004471F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004472
David Howells4fa97182008-10-13 10:42:44 +01004473PANASONIC MN10300/AM33 PORT
4474P: David Howells
4475M: dhowells@redhat.com
4476P: Koichi Yasutake
4477M: yasutake.koichi@jp.panasonic.com
4478L: linux-am33-list@redhat.com (moderated for non-subscribers)
4479W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4480S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004481F: Documentation/mn10300/
4482F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004483
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004485L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004486S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004487F: drivers/parport/
4488F: include/linux/parport*.h
4489F: drivers/char/ppdev.c
4490F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004492PARAVIRT_OPS INTERFACE
4493P: Jeremy Fitzhardinge
4494M: jeremy@xensource.com
4495P: Chris Wright
4496M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004497P: Alok Kataria
4498M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004499P: Rusty Russell
4500M: rusty@rustcorp.com.au
4501L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004502S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004503F: Documentation/ia64/paravirt_ops.txt
4504F: arch/*/kernel/paravirt*
4505F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004506
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4508P: Tim Waugh
4509M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004510L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511W: http://www.torque.net/linux-pp.html
4512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: Documentation/blockdev/paride.txt
4514F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
4516PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004517P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004518M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004519P: Helge Deller
4520M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004521L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004523T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004525F: arch/parisc/
4526F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Jim Cromie1662d322006-10-06 00:43:59 -07004528PC87360 HARDWARE MONITORING DRIVER
4529P: Jim Cromie
4530M: jim.cromie@gmail.com
4531L: lm-sensors@lm-sensors.org
4532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004533F: Documentation/hwmon/pc87360
4534F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004535
4536PC8736x GPIO DRIVER
4537P: Jim Cromie
4538M: jim.cromie@gmail.com
4539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004540F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004541
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004542PCA9532 LED DRIVER
4543P: Riku Voipio
4544M: riku.voipio@iki.fi
4545S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004546F: drivers/leds/leds-pca9532.c
4547F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004548
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004549PCI ERROR RECOVERY
4550P: Linas Vepstas
4551M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004552L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004553S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004554F: Documentation/PCI/pci-error-recovery.txt
4555F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004558P: Jesse Barnes
4559M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004560L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004561T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004563F: Documentation/PCI/
4564F: drivers/pci/
4565F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004567PCIE HOTPLUG DRIVER
4568P: Kristen Carlson Accardi
4569M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004570L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004571S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004572F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004573
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004575P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004576L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004577W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004578T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004580F: Documentation/pcmcia/
4581F: drivers/pcmcia/
4582F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
4584PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004585P: Don Fry
4586M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004587L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004589F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004591PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004592P: Balbir Singh
4593M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004595F: include/linux/delayacct.h
4596F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004597
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004598PERFORMANCE COUNTER SUBSYSTEM
4599P: Peter Zijlstra
4600M: a.p.zijlstra@chello.nl
4601P: Paul Mackerras
4602M: paulus@samba.org
4603P: Ingo Molnar
4604M: mingo@elte.hu
4605L: linux-kernel@vger.kernel.org
4606S: Supported
4607
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004608PERSONALITY HANDLING
4609P: Christoph Hellwig
4610M: hch@infradead.org
4611L: linux-abi-devel@lists.sourceforge.net
4612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004613F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004614
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004616P: Joern Engel
4617M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618L: linux-mtd@lists.infradead.org
4619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004620F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Peter Osterlund249a6772005-09-27 21:45:30 -07004622PKTCDVD DRIVER
4623P: Peter Osterlund
4624M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004626F: drivers/block/pktcdvd.c
4627F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004628
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004630P: Thomas Gleixner
4631M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004633F: fs/timerfd.c
4634F: include/linux/timer*
4635F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
Anton Vorontsov3be86142007-07-15 04:43:36 +04004637POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4638P: Anton Vorontsov
4639M: cbou@mail.ru
4640P: David Woodhouse
4641M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004642T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004644F: include/linux/power_supply.h
4645F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004646
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647PNP SUPPORT
4648P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004649M: abelay@mit.edu
4650P: Bjorn Helgaas
4651M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
Vitaly Wool999445d2007-01-04 13:07:03 +01004655PNXxxxx I2C DRIVER
4656P: Vitaly Wool
4657M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004658L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004660F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004661
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662PPP PROTOCOL DRIVERS AND COMPRESSORS
4663P: Paul Mackerras
4664M: paulus@samba.org
4665L: linux-ppp@vger.kernel.org
4666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004667F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668
4669PPP OVER ATM (RFC 2364)
4670P: Mitchell Blank Jr
4671M: mitch@sfgoth.com
4672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004673F: net/atm/pppoatm.c
4674F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675
4676PPP OVER ETHERNET
4677P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004678M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004680F: drivers/net/pppoe.c
4681F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682
James Chapmana6d23702007-06-27 15:53:17 -07004683PPP OVER L2TP
4684P: James Chapman
4685M: jchapman@katalix.com
4686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004687F: drivers/net/pppol2tp.c
4688F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004689
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004690PPS SUPPORT
4691P: Rodolfo Giometti
4692M: giometti@enneenne.com
4693W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4694L: linuxpps@ml.enneenne.com (subscribers-only)
4695S: Maintained
4696
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697PREEMPTIBLE KERNEL
4698P: Robert Love
4699M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700L: kpreempt-tech@lists.sourceforge.net
4701W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4702S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004703F: Documentation/preempt-locking.txt
4704F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004707P: Luis R. Rodriguez
4708M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004709L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710W: http://prism54.org
4711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004712F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
4714PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4715P: Peter Denison
4716M: promise@pnd-pc.demon.co.uk
4717W: http://www.pnd-pc.demon.co.uk/promise/
4718S: Maintained
4719
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004720PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4721P: Mikael Pettersson
4722M: mikpe@it.uu.se
4723L: linux-ide@vger.kernel.org
4724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004726
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004727PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004728P: Geoff Levand
4729M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004730L: netdev@vger.kernel.org
4731L: cbe-oss-dev@ozlabs.org
4732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004733F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004734
Geoff Levandf58a9d12006-11-23 00:46:51 +01004735PS3 PLATFORM SUPPORT
4736P: Geoff Levand
4737M: geoffrey.levand@am.sony.com
4738L: linuxppc-dev@ozlabs.org
4739L: cbe-oss-dev@ozlabs.org
4740S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004741F: arch/powerpc/boot/ps3*
4742F: arch/powerpc/include/asm/lv1call.h
4743F: arch/powerpc/include/asm/ps3*.h
4744F: arch/powerpc/platforms/ps3/
4745F: drivers/*/ps3*
4746F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004747F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004748F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004749F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004750
Jim Pariscffb4add2009-01-06 11:32:10 +00004751PS3VRAM DRIVER
4752P: Jim Paris
4753M: jim@jtan.com
4754L: cbe-oss-dev@ozlabs.org
4755S: Maintained
4756
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004757PTRACE SUPPORT
4758P: Roland McGrath
4759M: roland@redhat.com
4760P: Oleg Nesterov
4761M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004762S: Maintained
4763F: include/asm-generic/syscall.h
4764F: include/linux/ptrace.h
4765F: include/linux/regset.h
4766F: include/linux/tracehook.h
4767F: kernel/ptrace.c
4768
Michael Krufky83202042006-07-03 00:24:18 -07004769PVRUSB2 VIDEO4LINUX DRIVER
4770P: Mike Isely
4771M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004772L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004773L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004774W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004775T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004777F: Documentation/video4linux/README.pvrusb2
4778F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004779
Eric Miao30ec2612008-06-12 15:21:41 -07004780PXA2xx/PXA3xx SUPPORT
4781P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004782M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004783P: Russell King
4784M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004785L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: arch/arm/mach-pxa/
4788F: drivers/pcmcia/pxa2xx*
4789F: drivers/spi/pxa2xx*
4790F: drivers/usb/gadget/pxa2*
4791F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004792F: sound/arm/pxa*
4793F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004795PXA168 SUPPORT
4796P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004797M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004798P: Jason Chagas
4799M: jason.chagas@marvell.com
4800L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004801T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004802S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004803
Eric Miao5fa82eb2009-03-20 12:52:24 +08004804PXA910 SUPPORT
4805P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004806M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004807L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004808T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004809S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004810
Pierre Ossman272f1332007-05-14 21:25:26 +02004811PXA MMCI DRIVER
4812S: Orphan
4813
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004814PXA RTC DRIVER
4815P: Robert Jarzmik
4816M: robert.jarzmik@free.fr
4817L: rtc-linux@googlegroups.com
4818S: Maintained
4819
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820QLOGIC QLA2XXX FC-SCSI DRIVER
4821P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004822M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823L: linux-scsi@vger.kernel.org
4824S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004825F: Documentation/scsi/LICENSE.qla2xxx
4826F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Ron Mercer5a4faa82006-07-25 00:40:21 -07004828QLOGIC QLA3XXX NETWORK DRIVER
4829P: Ron Mercer
4830M: linux-driver@qlogic.com
4831L: netdev@vger.kernel.org
4832S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004833F: Documentation/networking/LICENSE.qla3xxx
4834F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004835
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004836QLOGIC QLGE 10Gb ETHERNET DRIVER
4837P: Ron Mercer
4838M: linux-driver@qlogic.com
4839M: ron.mercer@qlogic.com
4840L: netdev@vger.kernel.org
4841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004842F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004843
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844QNX4 FILESYSTEM
4845P: Anders Larsen
4846M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847W: http://www.alarsen.net/linux/qnx4fs/
4848S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004849F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004850F: include/linux/qnx4_fs.h
4851F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852
4853RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004854P: Benjamin Herrenschmidt
4855M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004856L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004858F: drivers/video/aty/radeon*
4859F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
4861RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004862P: Paul Mackerras
4863M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004864L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
Randy Dunlape7839f22008-10-12 16:11:45 -07004868RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004869P: rt2x00 project
4870L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004871L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004872W: http://rt2x00.serialmonkey.com/
4873S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004874T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004875F: drivers/net/wireless/rt2x00/
4876
Nick Piggin9db55792008-02-08 04:19:49 -08004877RAMDISK RAM BLOCK DEVICE DRIVER
4878P: Nick Piggin
4879M: npiggin@suse.de
4880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: Documentation/blockdev/ramdisk.txt
4882F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004883
Matt Mackall9e95ce22005-04-16 15:25:56 -07004884RANDOM NUMBER DRIVER
4885P: Matt Mackall
4886M: mpm@selenic.com
4887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004888F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004889
Matt Porter394b7012005-11-07 01:00:15 -08004890RAPIDIO SUBSYSTEM
4891P: Matt Porter
4892M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004895
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004896RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4897P: Corey Thomas
4898M: coreythomas@charter.net
4899L: linux-wireless@vger.kernel.org
4900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004902
4903RCUTORTURE MODULE
4904P: Josh Triplett
4905M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004906P: Paul E. McKenney
4907M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: Documentation/RCU/torture.txt
4910F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004911
Florian Fainellic1f766b2008-02-06 22:39:44 +01004912RDC R-321X SoC
4913P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004914M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004915S: Maintained
4916
Florian Fainellidb17f392007-12-19 11:30:30 +01004917RDC R6040 FAST ETHERNET DRIVER
4918P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004919M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004920L: netdev@vger.kernel.org
4921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004922F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004923
Andy Grovera09ed662009-02-24 15:30:41 +00004924RDS - RELIABLE DATAGRAM SOCKETS
4925P: Andy Grover
4926M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004927L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004929F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004930
Josh Triplett595182b2006-10-04 02:17:21 -07004931READ-COPY UPDATE (RCU)
4932P: Dipankar Sarma
4933M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004934P: Paul E. McKenney
4935M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004936W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004938F: Documentation/RCU/rcu.txt
4939F: Documentation/RCU/rcuref.txt
4940F: include/linux/rcupdate.h
4941F: include/linux/srcu.h
4942F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944REAL TIME CLOCK DRIVER
4945P: Paul Gortmaker
4946M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: Documentation/rtc.txt
4949F: drivers/rtc/
4950F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004952REAL TIME CLOCK (RTC) SUBSYSTEM
4953P: Alessandro Zummo
4954M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004955L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004957F: Documentation/rtc.txt
4958F: drivers/rtc/
4959F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004960
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004962L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004964F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
Ivo van Doorne08976452008-04-12 19:23:55 +02004966RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004967P: Johannes Berg
4968M: johannes@sipsolutions.net
4969L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004970S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004971F Documentation/rfkill.txt
4972F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004973
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004974RISCOM8 DRIVER
4975S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/serial/riscom8.txt
4977F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979ROCKETPORT DRIVER
4980P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981W: http://www.comtrol.com
4982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004983F: Documentation/serial/rocket.txt
4984F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
4986ROSE NETWORK LAYER
4987P: Ralf Baechle
4988M: ralf@linux-mips.org
4989L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004990W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: include/linux/rose.h
4993F: include/net/rose.h
4994F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Larry Finger59840482008-11-12 17:13:09 -06004996RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004997P: John W. Linville
4998M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004999L: linux-wireless@vger.kernel.org
5000W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005001T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005003F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04005004
Larry Finger59840482008-11-12 17:13:09 -06005005RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07005006P: Herton Ronaldo Krzesinski
5007M: herton@mandriva.com.br
5008P: Hin-Tak Leung
5009M: htl10@users.sourceforge.net
5010P: Larry Finger
5011M: Larry.Finger@lwfinger.net
5012L: linux-wireless@vger.kernel.org
5013W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005014T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06005017
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005018S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01005019P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08005020M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08005021L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01005022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005023F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005024
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025S390
5026P: Martin Schwidefsky
5027M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02005028P: Heiko Carstens
5029M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005031L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005032W: http://www.ibm.com/developerworks/linux/linux390/
5033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005034F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08005035
5036S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02005037P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005038M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02005039P: Frank Blaschka
5040M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005041M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005042L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005043W: http://www.ibm.com/developerworks/linux/linux390/
5044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005045F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005046
Felix Beckfeed9b62009-03-26 15:24:23 +01005047S390 ZCRYPT DRIVER
5048P: Felix Beck
5049M: felix.beck@de.ibm.com
5050P: Ralph Wuerthner
5051M: ralph.wuerthner@de.ibm.com
5052M: linux390@de.ibm.com
5053L: linux-s390@vger.kernel.org
5054S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005055F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005056
Heiko Carstens5238da42006-02-11 17:56:01 -08005057S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01005058P: Christof Schmitt
5059M: christof.schmitt@de.ibm.com
5060P: Martin Peschke
5061M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08005062M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005063L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005064W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005066F: Documentation/s390/zfcpdump.txt
5067F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068
Ursula Braundd96df22007-09-19 13:09:02 +02005069S390 IUCV NETWORK LAYER
5070P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02005071M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02005072M: linux390@de.ibm.com
5073L: linux-s390@vger.kernel.org
5074W: http://www.ibm.com/developerworks/linux/linux390/
5075S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005076F: drivers/s390/net/*iucv*
5077F: include/net/iucv/
5078F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005079
Ben Dooks4dde7f72008-06-30 22:40:38 +01005080S3C24XX SD/MMC Driver
5081P: Ben Dooks
5082M: ben-linux@fluff.org
5083L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005085F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005086
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087SAA7146 VIDEO4LINUX-2 DRIVER
5088P: Michael Hunold
5089M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005090L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005091T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092W: http://www.mihu.de/linux/saa7146
5093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005094F: drivers/media/common/saa7146*
5095F: drivers/media/video/*7146*
5096F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098SC1200 WDT DRIVER
5099P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005100M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005102F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
5104SCHEDULER
5105P: Ingo Molnar
5106M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005107P: Peter Zijlstra
5108M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: kernel/sched*
5111F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112
5113SCSI CDROM DRIVER
5114P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005115M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116L: linux-scsi@vger.kernel.org
5117W: http://www.kernel.dk
5118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005119F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
5121SCSI SG DRIVER
5122P: Doug Gilbert
5123M: dgilbert@interlog.com
5124L: linux-scsi@vger.kernel.org
5125W: http://www.torque.net/sg
5126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005127F: drivers/scsi/sg.c
5128F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
5130SCSI SUBSYSTEM
5131P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005132M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005134T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5135T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5136T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005138F: drivers/scsi/
5139F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
5141SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005142P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143M: Kai.Makisara@kolumbus.fi
5144L: linux-scsi@vger.kernel.org
5145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005146F: Documentation/scsi/st.txt
5147F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148
5149SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005150P: Vlad Yasevich
5151M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005152P: Sridhar Samudrala
5153M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005154L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005155W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005157F: Documentation/networking/sctp.txt
5158F: include/linux/sctp.h
5159F: include/net/sctp/
5160F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
5162SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005163P: Jim Cromie
5164M: jim.cromie@gmail.com
5165S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005166F: Documentation/i2c/busses/scx200_acb
5167F: arch/x86/kernel/scx200_32.c
5168F: drivers/watchdog/scx200_wdt.c
5169F: drivers/i2c/busses/scx200*
5170F: drivers/mtd/maps/scx200_docflash.c
5171F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005172
5173SCx200 GPIO DRIVER
5174P: Jim Cromie
5175M: jim.cromie@gmail.com
5176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005177F: drivers/char/scx200_gpio.c
5178F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005179
5180SCx200 HRT CLOCKSOURCE DRIVER
5181P: Jim Cromie
5182M: jim.cromie@gmail.com
5183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005184F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
Sascha Sommer6a369132008-07-15 14:21:29 +02005186SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5187P: Sascha Sommer
5188M: saschasommer@freenet.de
5189L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005192
Randy Dunlape7839f22008-10-12 16:11:45 -07005193SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005194P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005195M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005196L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005197S: Maintained
5198
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005199SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5200P: Anton Vorontsov
5201M: avorontsov@ru.mvista.com
5202L: linuxppc-dev@ozlabs.org
5203L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005205F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Ben Dooks0d1bb412009-06-14 13:52:37 +01005207SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5208P: Ben Dooks
5209M: ben-linux@fluff.org
5210L: sdhci-devel@lists.ossman.eu
5211S: Maintained
5212F: drivers/mmc/host/sdhci-s3c.c
5213
James Morris8711cca2008-12-04 03:19:45 +11005214SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005215P: James Morris
5216M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005217L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005218T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005219W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005220S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005221F: security/
James Morris8711cca2008-12-04 03:19:45 +11005222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223SECURITY CONTACT
5224P: Security Officers
5225M: security@kernel.org
5226S: Supported
5227
5228SELINUX SECURITY MODULE
5229P: Stephen Smalley
5230M: sds@tycho.nsa.gov
5231P: James Morris
5232M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005233P: Eric Paris
5234M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005235L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005236W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005237T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005239F: include/linux/selinux*
5240F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241
Jiri Slabycef2cf02007-05-08 00:31:45 -07005242SENSABLE PHANTOM
5243P: Jiri Slaby
5244M: jirislaby@gmail.com
5245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005246F: drivers/misc/phantom.c
5247F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005248
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005249SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250P: Jeff Garzik
5251M: jgarzik@pobox.com
5252L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005253T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005255F: drivers/ata/
5256F: include/linux/ata.h
5257F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005259SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5260P: Sathya Perla
5261M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005262P: Subbu Seetharaman
5263M: subbus@serverengines.com
5264L: netdev@vger.kernel.org
5265W: http://www.serverengines.com
5266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005267F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005268
Ben Hutchings8ceee662008-04-27 12:55:59 +01005269SFC NETWORK DRIVER
5270P: Steve Hodgson
5271P: Ben Hutchings
5272P: Robert Stonehouse
5273M: linux-net-drivers@solarflare.com
5274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005275F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005276
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005277SGI GRU DRIVER
5278P: Jack Steiner
5279M: steiner@sgi.com
5280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005281F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005282
5283SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5284P: Pat Gefre
5285M: pfg@sgi.com
5286L: linux-ia64@vger.kernel.org
5287S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005288F: Documentation/ia64/serial.txt
5289F: drivers/serial/ioc?_serial.c
5290F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005291
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292SGI VISUAL WORKSTATION 320 AND 540
5293P: Andrey Panin
5294M: pazke@donpac.ru
5295L: linux-visws-devel@lists.sf.net
5296W: http://linux-visws.sf.net
5297S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005298F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
Jack Steiner75312612008-08-15 00:40:42 -07005300SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005301P: Robin Holt
5302M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005304F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005305
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005306SHARP LH SUPPORT (LH7952X & LH7A40X)
5307P: Marc Singer
5308M: elf@buici.com
5309W: http://projects.buici.com/arm
5310L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005312F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5313F: arch/arm/mach-lh7a40x/
5314F: drivers/serial/serial_lh7a40x.c
5315F: drivers/usb/gadget/lh7a40*
5316F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005317
5318SHPC HOTPLUG DRIVER
5319P: Kristen Carlson Accardi
5320M: kristen.c.accardi@intel.com
5321L: linux-pci@vger.kernel.org
5322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005323F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005324
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325SIMTEC EB110ATX (Chalice CATS)
5326P: Ben Dooks
5327P: Vincent Sanders
5328M: support@simtec.co.uk
5329W: http://www.simtec.co.uk/products/EB110ATX/
5330S: Supported
5331
5332SIMTEC EB2410ITX (BAST)
5333P: Ben Dooks
5334P: Vincent Sanders
5335M: support@simtec.co.uk
5336W: http://www.simtec.co.uk/products/EB2410ITX/
5337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005338F: arch/arm/mach-s3c2410/
5339F: drivers/*/*s3c2410*
5340F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
Francois Romieu92aab3c2005-07-30 13:11:18 +02005342SIS 190 ETHERNET DRIVER
5343P: Francois Romieu
5344M: romieu@fr.zoreil.com
5345L: netdev@vger.kernel.org
5346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005347F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005348
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349SIS 900/7016 FAST ETHERNET DRIVER
5350P: Daniele Venzano
5351M: venza@brownhat.org
5352W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005353L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005357SIS 96X I2C/SMBUS DRIVER
5358P: Mark M. Hoffman
5359M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005360L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005362F: Documentation/i2c/busses/i2c-sis96x
5363F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365SIS FRAMEBUFFER DRIVER
5366P: Thomas Winischhofer
5367M: thomas@winischhofer.net
5368W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: Documentation/fb/sisfb.txt
5371F: drivers/video/sis/
5372F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
5374SIS USB2VGA DRIVER
5375P: Thomas Winischhofer
5376M: thomas@winischhofer.net
5377W: http://www.winischhofer.at/linuxsisusbvga.shtml
5378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005379F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005381SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5382P: Stephen Hemminger
5383M: shemminger@linux-foundation.org
5384L: netdev@vger.kernel.org
5385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005386F: drivers/net/skge.*
5387F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005388
Christoph Lameter415ad262007-07-26 10:40:56 -07005389SLAB ALLOCATOR
5390P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005391M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005392P: Pekka Enberg
5393M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005394P: Matt Mackall
5395M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005396L: linux-mm@kvack.org
5397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005398F: include/linux/sl?b*.h
5399F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005400
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401SMC91x ETHERNET DRIVER
5402P: Nicolas Pitre
5403M: nico@cam.org
5404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005405F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005407SMSC47B397 HARDWARE MONITOR DRIVER
5408P: Mark M. Hoffman
5409M: mhoffman@lightlink.com
5410L: lm-sensors@lm-sensors.org
5411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005412F: Documentation/hwmon/smsc47b397
5413F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005414
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005415SMSC911x ETHERNET DRIVER
5416P: Steve Glendinning
5417M: steve.glendinning@smsc.com
5418L: netdev@vger.kernel.org
5419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005420F: include/linux/smsc911x.h
5421F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005422
Steve Glendinning2cb37722008-12-11 20:54:30 -08005423SMSC9420 PCI ETHERNET DRIVER
5424P: Steve Glendinning
5425M: steve.glendinning@smsc.com
5426L: netdev@vger.kernel.org
5427S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005428F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005429
Ben Nizetteb54f2862008-03-13 22:27:30 +11005430SMX UIO Interface
5431P: Ben Nizette
5432M: bn@niasdigital.com
5433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005434F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005435
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005436SN-IA64 (Itanium) SUB-PLATFORM
5437P: Jes Sorensen
5438M: jes@sgi.com
5439L: linux-altix@sgi.com
5440L: linux-ia64@vger.kernel.org
5441W: http://www.sgi.com/altix
5442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005443F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005444
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005445SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005446P: Guennadi Liakhovetski
5447M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005448L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005449T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005451F: include/media/v4l2*
5452F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005453
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454SOEKRIS NET48XX LED SUPPORT
5455P: Chris Boot
5456M: bootc@bootc.net
5457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005458F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005462M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005464S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005465F: drivers/md/
5466F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468SONIC NETWORK DRIVER
5469P: Thomas Bogendoerfer
5470M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005471L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
Michael Buesch61e115a2007-09-18 15:12:50 -04005475SONICS SILICON BACKPLANE DRIVER (SSB)
5476P: Michael Buesch
5477M: mb@bu3sch.de
5478L: netdev@vger.kernel.org
5479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005480F: drivers/ssb/
5481F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005484P: Mattia Dongili
5485M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005486L: linux-acpi@vger.kernel.org
5487W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005489F: Documentation/laptops/sony-laptop.txt
5490F: drivers/char/sonypi.c
5491F: drivers/platform/x86/sony-laptop.c
5492F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
Alex Dubovbaf85322008-02-09 10:20:54 -08005494SONY MEMORYSTICK CARD SUPPORT
5495P: Alex Dubov
5496M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005497W: http://tifmxx.berlios.de/
5498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005499F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005500
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501SOUND
5502P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005503M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005504P: Takashi Iwai
5505M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005506L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005507W: http://www.alsa-project.org/
5508T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5509T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005511F: Documentation/sound/
5512F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005513F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
Mark Brownbd903bd2008-11-19 19:16:05 +00005515SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005516P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005517M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005518P: Mark Brown
5519M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005520T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005521L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005522W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005524F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005525F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005526
Sam Ravnborg473321f2009-01-04 15:47:49 -08005527SPARC + UltraSPARC (sparc/sparc64)
5528P: David S. Miller
5529M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005531T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5532T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
5536SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5537P: Roger Wolff
5538M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005540F: Documentation/serial/specialix.txt
5541F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005543SPI SUBSYSTEM
5544P: David Brownell
5545M: dbrownell@users.sourceforge.net
5546L: spi-devel-general@lists.sourceforge.net
5547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005548F: Documentation/spi/
5549F: drivers/spi/
5550F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005551
Jim Lewis2752e402006-09-29 02:01:19 -07005552SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005553P: Ishizaki Kou
5554M: kou.ishizaki@toshiba.co.jp
5555P: Jens Osterkamp
5556M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005557L: netdev@vger.kernel.org
5558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005559F: Documentation/networking/spider_net.txt
5560F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005561
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005562SPU FILE SYSTEM
5563P: Jeremy Kerr
5564M: jk@ozlabs.org
5565L: linuxppc-dev@ozlabs.org
5566L: cbe-oss-dev@ozlabs.org
5567W: http://www.ibm.com/developerworks/power/cell/
5568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/filesystems/spufs.txt
5570F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005571
Phillip Lougherfc555842009-01-05 08:46:29 +00005572SQUASHFS FILE SYSTEM
5573P: Phillip Lougher
5574M: phillip@lougher.demon.co.uk
5575L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5576W: http://squashfs.org.uk
5577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005578F: Documentation/filesystems/squashfs.txt
5579F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005580
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581SRM (Alpha) environment access
5582P: Jan-Benedict Glaw
5583M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586
Linus Torvalds26e9a392008-10-17 09:50:12 -07005587STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005588P: Greg Kroah-Hartman
5589M: greg@kroah.com
5590P: Chris Wright
5591M: chrisw@sous-sol.org
5592L: stable@kernel.org
5593S: Maintained
5594
Linus Torvalds26e9a392008-10-17 09:50:12 -07005595STAGING SUBSYSTEM
5596P: Greg Kroah-Hartman
5597M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005598T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005599L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005601F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005602
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603STARFIRE/DURALAN NETWORK DRIVER
5604P: Ion Badulescu
Joe Perchesb4f90182009-06-30 11:41:32 -07005605M: ionut@badula.org
5606S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005607F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
5609STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5610W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005611S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005612F: drivers/net/wireless/strip.c
5613F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
5615STRADIS MPEG-2 DECODER DRIVER
5616P: Nathan Laredo
5617M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618W: http://www.stradis.com/
5619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005620F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005622SUN3/3X
5623P: Sam Creasey
5624M: sammy@sammy.net
5625W: http://sammy.net/sun3/
5626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005627F: arch/m68k/kernel/*sun3*
5628F: arch/m68k/sun3*/
5629F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005630
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005631SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632P: Paul Mundt
5633M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005634L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005636T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005637S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005638F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005639F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005640F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005642SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005643P: Len Brown
5644M: len.brown@intel.com
5645P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005646M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005647P: Rafael J. Wysocki
5648M: rjw@sisk.pl
5649L: linux-pm@lists.linux-foundation.org
5650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005651F: Documentation/power/
5652F: arch/x86/kernel/acpi/
5653F: drivers/base/power/
5654F: kernel/power/
5655F: include/linux/suspend.h
5656F: include/linux/freezer.h
5657F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
5659SVGA HANDLING
5660P: Martin Mares
5661M: mj@ucw.cz
5662L: linux-video@atrey.karlin.mff.cuni.cz
5663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: Documentation/svga.txt
5665F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
5667SYSV FILESYSTEM
5668P: Christoph Hellwig
5669M: hch@infradead.org
5670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005671F: Documentation/filesystems/sysv-fs.txt
5672F: fs/sysv/
5673F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Alan Cox4e688522008-04-30 00:52:11 -07005675TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005676P: Balbir Singh
5677M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005679F: Documentation/accounting/taskstats*
5680F: include/linux/taskstats*
5681F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005682
Stephen Hemminger781b4562006-07-10 20:25:29 -07005683TC CLASSIFIER
5684P: Jamal Hadi Salim
5685M: hadi@cyberus.ca
5686L: netdev@vger.kernel.org
5687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: include/linux/pkt_cls.h
5689F: include/net/pkt_cls.h
5690F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005691
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005692TCP LOW PRIORITY MODULE
5693P: Wong Hoi Sing, Edison
5694M: hswong3i@gmail.com
5695P: Hung Hing Lun, Mike
5696M: hlhung3i@gmail.com
5697W: http://tcp-lp-mod.sourceforge.net/
5698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005700
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005701TEHUTI ETHERNET DRIVER
5702P: Alexander Indenbaum
5703M: baum@tehutinetworks.net
5704P: Andy Gospodarek
5705M: andy@greyhouse.net
5706L: netdev@vger.kernel.org
5707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005708F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005709
Alan Cox4e688522008-04-30 00:52:11 -07005710Telecom Clock Driver for MCPL0010
5711P: Mark Gross
5712M: mark.gross@intel.com
5713S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005714F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005715
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005716TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005717P: Chris Zankel
5718M: chris@zankel.net
5719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005720F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005721
5722THINKPAD ACPI EXTRAS DRIVER
5723P: Henrique de Moraes Holschuh
5724M: ibm-acpi@hmh.eng.br
5725L: ibm-acpi-devel@lists.sourceforge.net
5726W: http://ibm-acpi.sourceforge.net
5727W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005728T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005730F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005731
Alex Dubov4020f2d2006-10-04 02:15:37 -07005732TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005733P: Alex Dubov
5734M: oakad@yahoo.com
5735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005736F: drivers/misc/tifm*
5737F: drivers/mmc/host/tifm_sd.c
5738F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005739
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005740TI TWL4030 SERIES SOC CODEC DRIVER
5741P: Peter Ujfalusi
5742M: peter.ujfalusi@nokia.com
5743L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5744S: Maintained
5745F: sound/soc/codecs/twl4030*
5746
Per Lidene86eaa32006-01-12 16:45:18 +01005747TIPC NETWORK LAYER
5748P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005749M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005750P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005751M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005752P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005753M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005754L: tipc-discussion@lists.sourceforge.net
5755W: http://tipc.sourceforge.net/
5756W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005757T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005759F: include/linux/tipc*.h
5760F: include/net/tipc/
5761F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005762
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763TLAN NETWORK DRIVER
5764P: Samuel Chessman
5765M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005766L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767W: http://sourceforge.net/projects/tlan/
5768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005769F: Documentation/networking/tlan.txt
5770F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005772TOMOYO SECURITY MODULE
5773P: Kentaro Takeda
5774M: takedakn@nttdata.co.jp
5775P: Tetsuo Handa
5776M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005777L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5778L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5779L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5780W: http://tomoyo.sourceforge.jp/
5781T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005783F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005784
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005786S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005787F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005788
5789TOSHIBA SMM DRIVER
5790P: Jonathan Buzzard
5791M: jonathan@buzzard.org.uk
5792L: tlinux-users@tce.toshiba-dme.co.jp
5793W: http://www.buzzard.org.uk/toshiba/
5794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: drivers/char/toshiba.c
5796F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
Pierre Ossmand719f902009-03-24 21:06:09 +01005798TMIO MMC DRIVER
5799P: Ian Molton
5800M: ian@mnementh.co.uk
5801S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005802F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005803
Hugh Dickins98f32602009-05-21 20:33:58 +01005804TMPFS (SHMEM FILESYSTEM)
5805P: Hugh Dickins
5806M: hugh.dickins@tiscali.co.uk
5807L: linux-mm@kvack.org
5808S: Maintained
5809F: include/linux/shmem_fs.h
5810F: mm/shmem.c
5811
Alan Cox4e688522008-04-30 00:52:11 -07005812TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005813P: Debora Velarde
5814M: debora@linux.vnet.ibm.com
5815P: Rajiv Andrade
5816M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005817W: http://tpmdd.sourceforge.net
5818P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005819M: m.selhorst@sirrix.com
5820W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005821L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005824
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005826P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005827M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005828T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829S: Maintained
5830
Alan Cox4e688522008-04-30 00:52:11 -07005831TTY LAYER
5832P: Alan Cox
5833M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005834S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005835T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Coxe3288772009-07-07 16:39:54 +01005836F: drivers/char/tty_*
5837F: drivers/serial/serial_core.c
5838F: include/linux/serial_core.h
5839F: include/linux/serial.h
5840F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005841
Grant Grundler740db6d2008-02-17 11:53:49 -07005842TULIP NETWORK DRIVERS
5843P: Grant Grundler
5844M: grundler@parisc-linux.org
5845P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005846M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005847L: netdev@vger.kernel.org
5848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005849F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
5851TUN/TAP driver
5852P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005853M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854L: vtun@office.satix.net
5855W: http://vtun.sourceforge.net/tun
5856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: Documentation/networking/tuntap.txt
5858F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005860TURBOCHANNEL SUBSYSTEM
5861P: Maciej W. Rozycki
5862M: macro@linux-mips.org
5863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005864F: drivers/tc/
5865F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005866
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867U14-34F SCSI DRIVER
5868P: Dario Ballabio
5869M: ballabio_dario@emc.com
5870L: linux-scsi@vger.kernel.org
5871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005872F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005874UBI FILE SYSTEM (UBIFS)
5875P: Artem Bityutskiy
5876M: dedekind@infradead.org
5877P: Adrian Hunter
Artem Bityutskiy8f603572009-07-03 11:21:54 +03005878M: adrian.hunter@nokia.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005880T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005881W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005883F: Documentation/filesystems/ubifs.txt
5884F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005885
Alan Coxcc2020e2008-05-19 14:21:51 +01005886UCLINUX (AND M68KNOMMU)
5887P: Greg Ungerer
5888M: gerg@uclinux.org
5889W: http://www.uclinux.org/
5890L: uclinux-dev@uclinux.org (subscribers-only)
5891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005893
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005894UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005895P: Yoshinori Sato
5896M: ysato@users.sourceforge.jp
5897W: http://uclinux-h8.sourceforge.jp/
5898S: Supported
5899
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005901P: Jan Kara
5902M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903W: http://linux-udf.sourceforge.net
5904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005905F: Documentation/filesystems/udf.txt
5906F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907
Alan Coxcc2020e2008-05-19 14:21:51 +01005908UFS FILESYSTEM
5909P: Evgeniy Dushistov
5910M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005912F: Documentation/filesystems/ufs.txt
5913F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005914
David Vrabel18332a82008-09-17 16:34:44 +01005915ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5916P: David Vrabel
5917M: david.vrabel@csr.com
5918L: linux-usb@vger.kernel.org
5919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005920F: drivers/uwb/*
5921F: include/linux/uwb.h
5922F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005923
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924UNIFORM CDROM DRIVER
5925P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005926M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927W: http://www.kernel.dk
5928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005929F: Documentation/cdrom/
5930F: drivers/cdrom/cdrom.c
5931F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005933UNSORTED BLOCK IMAGES (UBI)
5934P: Artem Bityutskiy
5935M: dedekind@infradead.org
5936W: http://www.linux-mtd.infradead.org/
5937L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005938T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005939S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005940F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005941F: include/linux/mtd/ubi.h
5942F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005943
Linus Torvalds1da177e2005-04-16 15:20:36 -07005944USB ACM DRIVER
5945P: Oliver Neukum
5946M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005947L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005949F: Documentation/usb/acm.txt
5950F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951
5952USB BLOCK DRIVER (UB ub)
5953P: Pete Zaitcev
5954M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005955L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005957F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959USB CDC ETHERNET DRIVER
5960P: Greg Kroah-Hartman
5961M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005962L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963S: Maintained
5964W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005965F: drivers/net/usb/cdc_*.c
5966F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005968USB CYPRESS C67X00 DRIVER
5969P: Peter Korsgaard
5970M: jacmet@sunsite.dk
5971L: linux-usb@vger.kernel.org
5972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005973F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005974
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005975USB DAVICOM DM9601 DRIVER
5976P: Peter Korsgaard
5977M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005978L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005979W: http://www.linux-usb.org/usbnet
5980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005981F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005982
Alan Coxcc2020e2008-05-19 14:21:51 +01005983USB DIAMOND RIO500 DRIVER
5984P: Cesar Miquel
5985M: miquel@df.uba.ar
5986L: rio500-users@lists.sourceforge.net
5987W: http://rio500.sourceforge.net
5988S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005989F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005990
Linus Torvalds1da177e2005-04-16 15:20:36 -07005991USB EHCI DRIVER
5992P: David Brownell
5993M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005994L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005995S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005996F: Documentation/usb/ehci.txt
5997F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Luca Risolia7ce08c92006-01-11 02:06:59 +00005999USB ET61X[12]51 DRIVER
6000P: Luca Risolia
6001M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006002L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006003L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006004T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006005W: http://www.linux-projects.org
6006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006008
David Brownell69ae9e32006-11-14 02:03:31 -08006009USB GADGET/PERIPHERAL SUBSYSTEM
6010P: David Brownell
6011M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006012L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006013W: http://www.linux-usb.org/gadget
6014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006015F: drivers/usb/gadget/
6016F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006017
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006018USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01006019P: Jiri Kosina
6020M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02006021L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006022T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: Documentation/usb/hiddev.txt
6025F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Olav Kongas959eea22005-11-03 17:38:14 +02006027USB ISP116X DRIVER
6028P: Olav Kongas
6029M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02006030L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/usb/host/isp116x*
6033F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035USB KAWASAKI LSI DRIVER
6036P: Oliver Neukum
6037M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02006038L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
6042USB MASS STORAGE DRIVER
6043P: Matthew Dharm
6044M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006045L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006046L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047S: Maintained
6048W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006049F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
6051USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08006052P: David Brownell
6053M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006054L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006055S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006056F: Documentation/usb/ohci.txt
6057F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058
Matthias Urlichsba460e42005-07-14 00:33:47 -07006059USB OPTION-CARD DRIVER
6060P: Matthias Urlichs
6061M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006062L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006064F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066USB OV511 DRIVER
6067P: Mark McClelland
6068M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006069L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070W: http://alpha.dyndns.org/ov511/
6071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006072F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073
6074USB PEGASUS DRIVER
6075P: Petko Manolov
6076M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006077L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006078L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079W: http://pegasus2.sourceforge.net/
6080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006081F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006083USB PRINTER DRIVER (usblp)
6084P: Pete Zaitcev
6085M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006086L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006088F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
6090USB RTL8150 DRIVER
6091P: Petko Manolov
6092M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006093L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006094L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095W: http://pegasus2.sourceforge.net/
6096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006097F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098
6099USB SE401 DRIVER
6100P: Jeroen Vreeken
6101M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006102L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103W: http://www.chello.nl/~j.vreeken/se401/
6104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006105F: Documentation/video4linux/se401.txt
6106F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107
Alan Cox4e688522008-04-30 00:52:11 -07006108USB SERIAL BELKIN F5U103 DRIVER
6109P: William Greathouse
6110M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006111L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006113F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006114
6115USB SERIAL CYPRESS M8 DRIVER
6116P: Lonnie Mendez
6117M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006118L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006119S: Maintained
6120W: http://geocities.com/i0xox0i
6121W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006122F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006123
Linus Torvalds1da177e2005-04-16 15:20:36 -07006124USB SERIAL CYBERJACK DRIVER
6125P: Matthias Bruestle and Harald Welte
6126M: support@reiner-sct.com
6127W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006129F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130
6131USB SERIAL DIGI ACCELEPORT DRIVER
6132P: Peter Berger and Al Borchers
6133M: pberger@brimson.com
6134M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006135L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006137F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138
6139USB SERIAL DRIVER
6140P: Greg Kroah-Hartman
6141M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006142L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006144F: Documentation/usb/usb-serial.txt
6145F: drivers/usb/serial/generic.c
6146F: drivers/usb/serial/usb-serial.c
6147F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6150P: Gary Brubaker
6151M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006152L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006154F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155
6156USB SERIAL KEYSPAN DRIVER
6157P: Greg Kroah-Hartman
6158M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006159L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160W: http://www.kroah.com/linux/
6161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006162F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
6164USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006165P: Support Department
6166M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006167L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006168W: http://www.connecttech.com
6169S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006170F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006172USB SMSC95XX ETHERNET DRIVER
6173P: Steve Glendinning
6174M: steve.glendinning@smsc.com
6175L: netdev@vger.kernel.org
6176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006177F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006178
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006179USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180P: Luca Risolia
6181M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006182L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006183L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006184T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185W: http://www.linux-projects.org
6186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006187F: Documentation/video4linux/sn9c102.txt
6188F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
6190USB SUBSYSTEM
6191P: Greg Kroah-Hartman
6192M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006193L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006195T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006197F: Documentation/usb/
6198F: drivers/net/usb/
6199F: drivers/usb/
6200F: include/linux/usb.h
6201F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202
6203USB UHCI DRIVER
6204P: Alan Stern
6205M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006206L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209
David Brownell69ae9e32006-11-14 02:03:31 -08006210USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211P: David Brownell
6212M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006213L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006214W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: drivers/net/usb/usbnet.c
6217F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006219USB VIDEO CLASS
6220P: Laurent Pinchart
6221M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006222L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006223L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006224T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006225W: http://linux-uvc.berlios.de
6226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006227F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006228
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229USB W996[87]CF DRIVER
6230P: Luca Risolia
6231M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006232L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006233L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006234T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006235W: http://www.linux-projects.org
6236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: Documentation/video4linux/w9968cf.txt
6238F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006240USB WIRELESS RNDIS DRIVER (rndis_wlan)
6241P: Jussi Kivilinna
6242M: jussi.kivilinna@mbnet.fi
6243L: linux-wireless@vger.kernel.org
6244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006245F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006246
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006247USB XHCI DRIVER
6248P: Sarah Sharp
6249M: sarah.a.sharp@intel.com
6250L: linux-usb@vger.kernel.org
6251S: Supported
6252
Luca Risolia60f78052006-02-06 16:29:35 +00006253USB ZC0301 DRIVER
6254P: Luca Risolia
6255M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006256L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006257L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006258T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006259W: http://www.linux-projects.org
6260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006261F: Documentation/video4linux/zc0301.txt
6262F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006263
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264USB ZD1201 DRIVER
6265P: Jeroen Vreeken
6266M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006267L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268W: http://linux-lc100020.sourceforge.net
6269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006270F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006272USB ZR364XX DRIVER
6273P: Antoine Jacquet
6274M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006275L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006276L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006277T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006278W: http://royale.zerezo.com/zr364xx/
6279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006280F: Documentation/video4linux/zr364xx.txt
6281F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006282
Randy Dunlape7839f22008-10-12 16:11:45 -07006283USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006285M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286L: user-mode-linux-devel@lists.sourceforge.net
6287L: user-mode-linux-user@lists.sourceforge.net
6288W: http://user-mode-linux.sourceforge.net
6289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006290F: Documentation/uml/
6291F: arch/um/
6292F: fs/hostfs/
6293F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006294
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006295USERSPACE I/O (UIO)
6296P: Hans J. Koch
6297M: hjk@linutronix.de
6298P: Greg Kroah-Hartman
6299M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006301F: Documentation/DocBook/uio-howto.tmpl
6302F: drivers/uio/
6303F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006304
Karel Zakf899b0a2008-05-23 13:04:21 -07006305UTIL-LINUX-NG PACKAGE
6306P: Karel Zak
6307M: kzak@redhat.com
6308L: util-linux-ng@vger.kernel.org
6309W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006310T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006311S: Maintained
6312
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006313UVESAFB DRIVER
6314P: Michal Januszewski
6315M: spock@gentoo.org
6316L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6317W: http://dev.gentoo.org/~spock/projects/uvesafb/
6318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006319F: Documentation/fb/uvesafb.txt
6320F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006321
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006322VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323P: OGAWA Hirofumi
6324M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006326F: Documentation/filesystems/vfat.txt
6327F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329VIA RHINE NETWORK DRIVER
6330P: Roger Luethi
6331M: rl@hellgate.ch
6332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006333F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334
Jean Delvare32c0a522005-09-22 21:47:58 +02006335VIAPRO SMBUS DRIVER
6336P: Jean Delvare
6337M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006338L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006340F: Documentation/i2c/busses/i2c-viapro
6341F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006342
Harald Weltef0bf7f62009-06-17 20:22:39 +02006343VIA SD/MMC CARD CONTROLLER DRIVER
6344P: Joseph Chan
6345M: JosephChan@via.com.tw
6346P: Harald Welte
6347M: HaraldWelte@viatech.com
6348S: Maintained
6349F: drivers/mmc/host/via-sdmmc.c
6350
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006351VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6352P: Joseph Chan
6353M: JosephChan@via.com.tw
6354P: Scott Fang
6355M: ScottFang@viatech.com.cn
6356L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006358F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006359
Francois Romieu01f20732007-01-26 00:57:17 -08006360VIA VELOCITY NETWORK DRIVER
6361P: Francois Romieu
6362M: romieu@fr.zoreil.com
6363L: netdev@vger.kernel.org
6364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366
Patrick McHardybe7f8272007-10-23 20:26:36 -07006367VLAN (802.1Q)
6368P: Patrick McHardy
6369M: kaber@trash.net
6370L: netdev@vger.kernel.org
6371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: drivers/net/macvlan.c
6373F: include/linux/if_*vlan.h
6374F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006375
Florian Fainelli55e331c2009-06-16 15:33:53 -07006376VLYNQ BUS
6377P: Florian Fainelli
6378M: florian@openwrt.org
6379L: openwrt-devel@lists.openwrt.org
6380S: Maintained
6381F: drivers/vlynq/vlynq.c
6382F: include/linux/vlynq.h
6383
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006384VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6385P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006386M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006387P: Mark Brown
6388M: broonie@opensource.wolfsonmicro.com
6389W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006390W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006391T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006392S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006393F: drivers/regulator/
6394F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006395
Juerg Haefligerab413192006-09-24 20:54:04 +02006396VT1211 HARDWARE MONITOR DRIVER
6397P: Juerg Haefliger
6398M: juergh@gmail.com
6399L: lm-sensors@lm-sensors.org
6400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006401F: Documentation/hwmon/vt1211
6402F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006403
Roger Lucas1de9e372005-11-26 20:20:05 +01006404VT8231 HARDWARE MONITOR DRIVER
6405P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006406M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006407L: lm-sensors@lm-sensors.org
6408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006409F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411W1 DALLAS'S 1-WIRE BUS
6412P: Evgeniy Polyakov
6413M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006415F: Documentation/w1/
6416F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417
Charles Spirakis13927072006-07-05 18:05:15 +02006418W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006419P: Marc Hulsman
6420M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006421L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006423F: Documentation/hwmon/w83791d
6424F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006425
Rudolf Marek61db0112006-12-12 18:18:30 +01006426W83793 HARDWARE MONITORING DRIVER
6427P: Rudolf Marek
6428M: r.marek@assembler.cz
6429L: lm-sensors@lm-sensors.org
6430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006431F: Documentation/hwmon/w83793
6432F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006433
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434W83L51xD SD/MMC CARD INTERFACE DRIVER
6435P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006436M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006438F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006440WATCHDOG DEVICE DRIVERS
6441P: Wim Van Sebroeck
6442M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006443T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006445F: Documentation/watchdog/
6446F: drivers/watchdog/
6447F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006448
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6450P: Jean Tourrilhes
6451M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006452L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006455F: Documentation/networking/wavelan.txt
6456F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457
6458WD7000 SCSI DRIVER
6459P: Miroslav Zagorac
6460M: zaga@fly.cc.fer.hr
6461L: linux-scsi@vger.kernel.org
6462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006463F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006465WIMAX STACK
6466P: Inaky Perez-Gonzalez
6467M: inaky.perez-gonzalez@intel.com
6468M: linux-wimax@intel.com
6469L: wimax@linuxwimax.org
6470S: Supported
6471W: http://linuxwimax.org
6472
David Vrabel18332a82008-09-17 16:34:44 +01006473WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6474P: David Vrabel
6475M: david.vrabel@csr.com
6476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006477F: include/linux/wlp.h
6478F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006479
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006480WISTRON LAPTOP BUTTON DRIVER
6481P: Miloslav Trmac
6482M: mitr@volny.cz
6483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006484F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006485
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486WL3501 WIRELESS PCMCIA CARD DRIVER
6487P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006488M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006489L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006490W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006492F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493
Mark Brownfebf1df2008-04-02 00:51:09 -04006494WM97XX TOUCHSCREEN DRIVERS
6495P: Mark Brown
6496M: broonie@opensource.wolfsonmicro.com
6497P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006498M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006499L: linux-input@vger.kernel.org
6500T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6501W: http://opensource.wolfsonmicro.com/node/7
6502S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006503F: drivers/input/touchscreen/*wm97*
6504F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006505
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506X.25 NETWORK LAYER
6507P: Henner Eisen
6508M: eis@baty.hanse.de
6509L: linux-x25@vger.kernel.org
6510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006511F: Documentation/networking/x25*
6512F: include/net/x25*
6513F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006515X86 ARCHITECTURE (32-BIT AND 64-BIT)
6516P: Thomas Gleixner
6517M: tglx@linutronix.de
6518P: Ingo Molnar
6519M: mingo@redhat.com
6520P: H. Peter Anvin
6521M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006522M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006523T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006525F: Documentation/x86/
6526F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006527
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006528XEN HYPERVISOR INTERFACE
6529P: Jeremy Fitzhardinge
6530M: jeremy@xensource.com
6531P: Chris Wright
6532M: chrisw@sous-sol.org
6533L: virtualization@lists.osdl.org
6534L: xen-devel@lists.xensource.com
6535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006536F: arch/x86/xen/
6537F: drivers/*/xen-*front.c
6538F: drivers/xen/
6539F: arch/x86/include/asm/xen/
6540F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006541
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542XFS FILESYSTEM
6543P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006544P: Felix Blyakher
6545M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006547L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006549T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006551F: Documentation/filesystems/xfs.txt
6552F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006554XILINX SYSTEMACE DRIVER
6555P: Grant Likely
6556M: grant.likely@secretlab.ca
6557W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006559F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006560
Peter Korsgaard238b8722006-12-06 20:35:17 -08006561XILINX UARTLITE SERIAL DRIVER
6562P: Peter Korsgaard
6563M: jacmet@sunsite.dk
6564L: linux-serial@vger.kernel.org
6565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006566F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006567
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568YAM DRIVER FOR AX.25
6569P: Jean-Paul Roubelat
6570M: jpr@f6fbb.org
6571L: linux-hams@vger.kernel.org
6572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006573F: drivers/net/hamradio/yam*
6574F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006575
Henkaf64a5e2005-10-12 15:02:56 +02006576YEALINK PHONE DRIVER
6577P: Henk Vergonet
6578M: Henk.Vergonet@gmail.com
6579L: usbb2k-api-dev@nongnu.org
6580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006581F: Documentation/input/yealink.txt
6582F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006583
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584Z8530 DRIVER FOR AX.25
6585P: Joerg Reuter
6586M: jreuter@yaina.de
6587W: http://yaina.de/jreuter/
6588W: http://www.qsl.net/dl1bke/
6589L: linux-hams@vger.kernel.org
6590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006591F: Documentation/networking/z8530drv.txt
6592F: drivers/net/hamradio/*scc.c
6593F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006595ZD1211RW WIRELESS DRIVER
6596P: Daniel Drake
6597M: dsd@gentoo.org
6598P: Ulrich Kunitz
6599M: kune@deine-taler.de
6600W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006601L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006602L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006604F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006605
Linus Torvalds1da177e2005-04-16 15:20:36 -07006606ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006608L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006609W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006610T: Mercurial http://linuxtv.org/hg/v4l-dvb
6611S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006612F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006614ZS DECSTATION Z85C30 SERIAL DRIVER
6615P: Maciej W. Rozycki
6616M: macro@linux-mips.org
6617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006618F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006619
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620THE REST
6621P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006622M: torvalds@linux-foundation.org
6623L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006624T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006626F: *
6627F: */