blob: 5b526ce6f552bf3637ac6b9e158ced0e4c6428f8 [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
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233ACER WMI LAPTOP EXTRAS
234P: Carlos Corbacho
235M: carlos@strangeworlds.co.uk
236L: aceracpi@googlegroups.com (subscribers-only)
237W: http://code.google.com/p/aceracpi
238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200242P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500243M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500244L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400245W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700246T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700248F: drivers/acpi/
249F: drivers/pnp/pnpacpi/
250F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500251
252ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400253P: Alexey Starikovskiy
254M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/battery.c
259F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500260
261ACPI EC DRIVER
262P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400263M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500264L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300265W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700267F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500268
269ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400270P: Zhang Rui
271M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500272L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300273W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700277ACPI PCI HOTPLUG DRIVER
278P: Kristen Carlson Accardi
279M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700280L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500283
284ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400285P: Zhang Rui
286M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500287L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300288W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700290F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700291
Len Brown359acec2007-02-10 01:59:24 -0500292ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400293P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400294M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500295L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300296W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700298F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500299
Carlos Corbachobff431e2008-02-05 02:17:04 +0000300ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200301P: Carlos Corbacho
302M: carlos@strangeworlds.co.uk
303L: linux-acpi@vger.kernel.org
304W: http://www.lesswatts.org/projects/acpi/
305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700306F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000307
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100308AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200309P: Kyle McMartin
310M: kyle@mcmartin.ca
311P: Thibaut Varene
312M: T-Bone@parisc-linux.org
313W: http://wiki.parisc-linux.org/AD1889
314L: linux-parisc@vger.kernel.org
315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700316F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
319P: Jean Delvare
320M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200321L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: Documentation/hwmon/adm1025
324F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Corentin Labbecae2caa2007-02-14 21:15:04 +0100326ADM1029 HARDWARE MONITOR DRIVER
327P: Corentin Labbe
328M: corentin.labbe@geomatys.fr
329L: lm-sensors@lm-sensors.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332
Michael Wucc0b88c2007-08-31 01:15:25 -0400333ADM8211 WIRELESS DRIVER
334P: Michael Wu
335M: flamingice@sourmilk.net
336L: linux-wireless@vger.kernel.org
337W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700340F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342ADT746X FAN DRIVER
343P: Colin Leroy
344M: colin@colino.net
345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700346F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400348ADVANSYS SCSI DRIVER
349P: Matthew Wilcox
350M: matthew@wil.cx
351L: linux-scsi@vger.kernel.org
352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700353F: Documentation/scsi/advansys.txt
354F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356AEDSP16 DRIVER
357P: Riccardo Facchetti
358M: fizban@tin.it
359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700360F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362AFFS FILE SYSTEM
363P: Roman Zippel
364M: zippel@linux-m68k.org
365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700366F: Documentation/filesystems/affs.txt
367F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700369AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
370P: David Howells
371M: dhowells@redhat.com
372L: linux-afs@lists.infradead.org
373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700374F: fs/afs/
375F: include/net/af_rxrpc.h
376F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400379P: David Airlie
380M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700381T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700383F: drivers/char/agp/
384F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386AHA152X SCSI DRIVER
387P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700388M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389L: linux-scsi@vger.kernel.org
390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/scsi/aha152x*
392F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Hannes Reinecke64624d42007-10-19 10:32:29 +0200394AIC7XXX / AIC79XX SCSI DRIVER
395P: Hannes Reinecke
396M: hare@suse.de
397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: drivers/scsi/aic7xxx/
400F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200401
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700402AIO
403P: Benjamin LaHaise
404M: bcrl@kvack.org
405L: linux-aio@kvack.org
406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700407F: fs/aio.c
408F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410ALCATEL SPEEDTOUCH USB DRIVER
411P: Duncan Sands
412M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700413L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414W: http://www.linux-usb.org/SpeedTouch/
415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700416F: drivers/usb/atm/speedtch.c
417F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Pierre Ossman272f1332007-05-14 21:25:26 +0200419ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200420P: Manuel Lauss
421M: manuel.lauss@gmail.com
422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700423F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200424
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000425ALI1563 I2C DRIVER
426P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100427M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100428L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700430F: Documentation/i2c/busses/i2c-ali1563
431F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433ALPHA PORT
434P: Richard Henderson
435M: rth@twiddle.net
436S: Odd Fixes for 2.4; Maintained for 2.6.
437P: Ivan Kokshaysky
438M: ink@jurassic.park.msu.ru
439S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700440L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700441F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700443AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
444P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700445M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700446L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700448F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700449
Jordan Crousef90b8112006-01-06 00:12:14 -0800450AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100451P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700452L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800453W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700455F: arch/x86/kernel/geode_32.c
456F: drivers/char/hw_random/geode-rng.c
457F: drivers/crypto/geode*
458F: drivers/video/geode/
459F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800460
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200461AMD IOMMU (AMD-VI)
462P: Joerg Roedel
463M: joerg.roedel@amd.com
464L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700465T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700467F: arch/x86/kernel/amd_iommu*.c
468F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200469
Peter Orubae7f5b302008-07-28 18:44:11 +0200470AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700471P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700472M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700473L: amd64-microcode@amd64.org
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200476
Stelian Pop284f42b2006-12-12 18:18:31 +0100477AMS (Apple Motion Sensor) DRIVER
478P: Stelian Pop
479M: stelian@popies.net
480P: Michael Hanselmann
481M: linux-kernel@hansmi.ch
482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100484
Tom Tuckerf94b5332006-09-22 15:22:48 -0700485AMSO1100 RNIC DRIVER
486P: Tom Tucker
487M: tom@opengridcomputing.com
488P: Steve Wise
489M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700490L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700492F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700493
Johannes Berg42269062006-07-25 16:15:50 +0200494AOA (Apple Onboard Audio) ALSA DRIVER
495P: Johannes Berg
496M: johannes@sipsolutions.net
497L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700498L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700500F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502APM DRIVER
503P: Stephen Rothwell
504M: sfr@canb.auug.org.au
505L: linux-laptop@vger.kernel.org
506W: http://www.canb.auug.org.au/~sfr/
507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700508F: arch/x86/kernel/apm_32.c
509F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700511APPLE BCM5974 MULTITOUCH DRIVER
512P: Henrik Rydberg
513M: rydberg@euromail.se
514L: linux-input@vger.kernel.org
515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700517
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700518APPLE SMC DRIVER
519P: Nicolas Boichat
520M: nicolas@boichat.ch
521L: mactel-linux-devel@lists.sourceforge.net
522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525APPLETALK NETWORK LAYER
526P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300527M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/net/appletalk/
530F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400532APPLETOUCH TOUCHPAD DRIVER
533P: Johannes Berg
534M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400535L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700537F: Documentation/input/appletouch.txt
538F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400539
Jaya Kumar1154ea72005-06-21 17:17:04 -0700540ARC FRAMEBUFFER DRIVER
541P: Jaya Kumar
542M: jayalk@intworks.biz
543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: drivers/video/arcfb.c
545F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547ARM MFM AND FLOPPY DRIVERS
548P: Ian Molton
549M: spyro@f2s.com
550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: arch/arm/lib/floppydma.S
552F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Russell Kingd4275352009-04-16 14:05:27 +0100554ARM PORT
555P: Russell King
556M: linux@arm.linux.org.uk
557L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
558W: http://www.arm.linux.org.uk/
559S: Maintained
560F: arch/arm/
561
Russell King2761f5c2007-05-24 06:56:08 +0200562ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200563S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700564F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200565
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800566ARM/ADI ROADRUNNER MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700571F: arch/arm/mach-ixp23xx/
572F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800573
574ARM/ADS SPHERE MACHINE SUPPORT
575P: Lennert Buytenhek
576M: kernel@wantstofly.org
577L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
578S: Maintained
579
Sergey Lapin9c784f92008-08-03 02:29:48 +0100580ARM/AFEB9260 MACHINE SUPPORT
581P: Sergey Lapin
582M: slapin@ossfans.org
583L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
584S: Maintained
585
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800586ARM/AJECO 1ARM MACHINE SUPPORT
587P: Lennert Buytenhek
588M: kernel@wantstofly.org
589L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
590S: Maintained
591
Andrew Victord4a89c72006-12-04 13:56:21 +0100592ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200593P: Andrew Victor
594M: linux@maxim.org.za
595L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
596W: http://maxim.org.za/at91_26.html
597S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100598
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800599ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
600P: Lennert Buytenhek
601M: kernel@wantstofly.org
602L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
603S: Maintained
604
605ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
606P: Lennert Buytenhek
607M: kernel@wantstofly.org
608L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
609S: Maintained
610
Russell Kingd4275352009-04-16 14:05:27 +0100611ARM/CLKDEV SUPPORT
612P: Russell King
613M: linux@arm.linux.org.uk
614L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
615F: arch/arm/common/clkdev.c
616F: arch/arm/include/asm/clkdev.h
617
Mike Rapoportd48134e2008-08-20 09:03:26 +0100618ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100619P: Mike Rapoport
620M: mike@compulab.co.il
621L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
622S: Maintained
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624ARM/CORGI MACHINE SUPPORT
625P: Richard Purdie
626M: rpurdie@rpsys.net
627S: Maintained
628
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200629ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
630P: Paulius Zaleckas
631M: paulius.zaleckas@teltonika.lt
632L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700633T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200634S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300635F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200636
Russell Kingd4275352009-04-16 14:05:27 +0100637ARM/EBSA110 MACHINE SUPPORT
638P: Russell King
639M: linux@arm.linux.org.uk
640L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
641W: http://www.arm.linux.org.uk/
642S: Maintained
643F: arch/arm/mach-ebsa110/
644F: drivers/net/arm/am79c961a.*
645
Russell Kinga9da4f72008-07-12 21:42:04 +0100646ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
647P: Daniel Ribeiro
648M: drwyrm@gmail.com
649P: Stefan Schmidt
650M: stefan@openezx.org
651P: Harald Welte
652M: laforge@openezx.org
653L: openezx-devel@lists.openezx.org (subscribers-only)
654W: http://www.openezx.org/
655S: Maintained
656
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200657ARM/FARADAY FA526 PORT
658P: Paulius Zaleckas
659M: paulius.zaleckas@teltonika.lt
660L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
661S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300662F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200663
Russell Kingd4275352009-04-16 14:05:27 +0100664ARM/FOOTBRIDGE ARCHITECTURE
665P: Russell King
666M: linux@arm.linux.org.uk
667L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
668W: http://www.arm.linux.org.uk/
669S: Maintained
670F: arch/arm/include/asm/hardware/dec21285.h
671F: arch/arm/mach-footbridge/
672
Sascha Hauer86183a52008-07-24 23:50:35 +0200673ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
674P: Sascha Hauer
675M: kernel@pengutronix.de
676L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
677S: Maintained
678
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800679ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
680P: Lennert Buytenhek
681M: kernel@wantstofly.org
682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
683S: Maintained
684
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100685ARM/GUMSTIX MACHINE SUPPORT
686P: Steve Sakoman
687M: sakoman@gmail.com
688L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
689S: Maintained
690
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200691ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
692P: Philipp Zabel
693M: philipp.zabel@gmail.com
694S: Maintained
695F: arch/arm/mach-pxa/hx4700.c
696F: arch/arm/mach-pxa/include/mach/hx4700.h
697
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100698ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200699P: Kristoffer Ericson
700M: kristoffer.ericson@gmail.com
701W: www.jlime.com
702S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100703
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800704ARM/INTEL IOP32X ARM ARCHITECTURE
705P: Lennert Buytenhek
706M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100707P: Dan Williams
708M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100710S: Supported
711
712ARM/INTEL IOP33X ARM ARCHITECTURE
713P: Dan Williams
714M: dan.j.williams@intel.com
715L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
716S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/INTEL IOP13XX ARM ARCHITECTURE
719P: Lennert Buytenhek
720M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100721P: Dan Williams
722M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800723L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100724S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800725
726ARM/INTEL IQ81342EX MACHINE SUPPORT
727P: Lennert Buytenhek
728M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100729P: Dan Williams
730M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800731L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100732S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733
734ARM/INTEL IXP2000 ARM ARCHITECTURE
735P: Lennert Buytenhek
736M: kernel@wantstofly.org
737L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
738S: Maintained
739
740ARM/INTEL IXDP2850 MACHINE SUPPORT
741P: Lennert Buytenhek
742M: kernel@wantstofly.org
743L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
744S: Maintained
745
746ARM/INTEL IXP23XX ARM ARCHITECTURE
747P: Lennert Buytenhek
748M: kernel@wantstofly.org
749L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
750S: Maintained
751
752ARM/INTEL XSC3 (MANZANO) ARM CORE
753P: Lennert Buytenhek
754M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100755P: Dan Williams
756M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800757L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100758S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800759
760ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
761P: Lennert Buytenhek
762M: kernel@wantstofly.org
763L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
764S: Maintained
765
766ARM/LOGICPD PXA270 MACHINE SUPPORT
767P: Lennert Buytenhek
768M: kernel@wantstofly.org
769L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
770S: Maintained
771
Philipp Zabel3b8861712008-07-09 21:27:15 +0100772ARM/MAGICIAN MACHINE SUPPORT
773P: Philipp Zabel
774M: philipp.zabel@gmail.com
775S: Maintained
776
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100777ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
778P: Michael Petchkovsky
779M: mkpetch@internode.on.net
780S: Maintained
781
Dirk Opfer8459c152005-11-06 14:27:52 +0000782ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800783P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100784M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000785P: Dirk Opfer
786M: dirk@opfer-online.de
787S: Maintained
788
Marek Vasut54088bf2009-03-24 00:29:29 +0100789ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100790P: Marek Vasut
791M: marek.vasut@gmail.com
792W: http://hackndev.com
793S: Maintained
794
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100795ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700796P: Sergey Lapin
797M: slapin@ossfans.org
798W: http://hackndev.com
799S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801ARM/PLEB SUPPORT
802P: Peter Chubb
803M: pleb@gelato.unsw.edu.au
804W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
805S: Maintained
806
807ARM/PT DIGITAL BOARD PORT
808P: Stefan Eletzhofer
809M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700810L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811W: http://www.arm.linux.org.uk/
812S: Maintained
813
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800814ARM/RADISYS ENP2611 MACHINE SUPPORT
815P: Lennert Buytenhek
816M: kernel@wantstofly.org
817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
818S: Maintained
819
Russell Kingd4275352009-04-16 14:05:27 +0100820ARM/RISCPC ARCHITECTURE
821P: Russell King
822M: linux@arm.linux.org.uk
823L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
824W: http://www.arm.linux.org.uk/
825S: Maintained
826F: arch/arm/common/time-acorn.c
827F: arch/arm/include/asm/hardware/entry-macro-iomd.S
828F: arch/arm/include/asm/hardware/ioc.h
829F: arch/arm/include/asm/hardware/iomd.h
830F: arch/arm/include/asm/hardware/memc.h
831F: arch/arm/mach-rpc/
832F: drivers/net/arm/ether*
833F: drivers/scsi/arm/
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835ARM/SHARK MACHINE SUPPORT
836P: Alexander Schulz
837M: alex@shark-linux.de
838W: http://www.shark-linux.de/shark.html
839S: Maintained
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841ARM/S3C2410 ARM ARCHITECTURE
842P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800843M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700844L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845W: http://www.fluff.org/ben/linux/
846S: Maintained
847
848ARM/S3C2440 ARM ARCHITECTURE
849P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800850M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700851L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852W: http://www.fluff.org/ben/linux/
853S: Maintained
854
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800855ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
856P: Lennert Buytenhek
857M: kernel@wantstofly.org
858L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
859S: Maintained
860
861ARM/THECUS N2100 MACHINE SUPPORT
862P: Lennert Buytenhek
863M: kernel@wantstofly.org
864L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
865S: Maintained
866
wanzongshun98ad6e32009-02-13 06:04:32 +0100867ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700868P: Wan ZongShun
869M: mcuos.com@gmail.com
870L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
871W: http://www.mcuos.com
872S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100873
Russell Kingd4275352009-04-16 14:05:27 +0100874ARM/VFP SUPPORT
875P: Russell King
876M: linux@arm.linux.org.uk
877L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
878W: http://www.arm.linux.org.uk/
879S: Maintained
880F: arch/arm/vfp/
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882ARPD SUPPORT
883P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700884L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700886F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500889P: Corentin Chary
890M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891P: Karol Kozimor
892M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893L: acpi4asus-user@lists.sourceforge.net
894W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500895W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700897F: arch/x86/kernel/acpi/boot.c
898F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400900ASUS ASB100 HARDWARE MONITOR DRIVER
901P: Mark M. Hoffman
902M: mhoffman@lightlink.com
903L: lm-sensors@lm-sensors.org
904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700905F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400906
Corentin Chary85091b72007-01-26 14:04:30 +0100907ASUS LAPTOP EXTRAS DRIVER
908P: Corentin Chary
909M: corentincj@iksaif.net
910L: acpi4asus-user@lists.sourceforge.net
911W: http://sourceforge.net/projects/acpi4asus
912W: http://xf.iksaif.net/acpi4asus
913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700914F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100915
Andrew Morton953a6472008-11-06 12:53:28 -0800916ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700917P: Dan Williams
918M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100919P: Maciej Sosnowski
920M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700921W: http://sourceforge.net/projects/xscaleiop
922S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700923F: Documentation/crypto/async-tx-api.txt
924F: crypto/async_tx/
925F: drivers/dma/
926F: include/linux/dmaengine.h
927F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700928
Randy Dunlape7839f22008-10-12 16:11:45 -0700929ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930P: Ed L. Cashin
931M: ecashin@coraid.com
932W: http://www.coraid.com/support/linux
933S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700934F: Documentation/aoe/
935F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200937ATHEROS ATH5K WIRELESS DRIVER
938P: Jiri Slaby
939M: jirislaby@gmail.com
940P: Nick Kossifidis
941M: mickflemm@gmail.com
942P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700943M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400944P: Bob Copeland
945M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200946L: linux-wireless@vger.kernel.org
947L: ath5k-devel@lists.ath5k.org
948S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700949F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200950
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700951ATHEROS ATH9K WIRELESS DRIVER
952P: Luis R. Rodriguez
953M: lrodriguez@atheros.com
954P: Jouni Malinen
955M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400956P: Sujith Manoharan
957M: Sujith.Manoharan@atheros.com
958P: Vasanthakumar Thiagarajan
959M: vasanth@atheros.com
960P: Senthil Balasubramanian
961M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700962L: linux-wireless@vger.kernel.org
963L: ath9k-devel@lists.ath9k.org
964S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700965F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700966
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100967ATHEROS AR9170 WIRELESS DRIVER
968P: Christian Lamparter
969M: chunkeey@web.de
970L: linux-wireless@vger.kernel.org
971W: http://wireless.kernel.org/en/users/Drivers/ar9170
972S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700973F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100974
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000975ATI_REMOTE2 DRIVER
976P: Ville Syrjala
977M: syrjala@sci.fi
978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700979F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000980
Chris Snook7ae115b2008-09-09 03:26:57 -0400981ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600982P: Jay Cliburn
983M: jcliburn@gmail.com
984P: Chris Snook
985M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400986P: Jie Yang
987M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600988L: atl1-devel@lists.sourceforge.net
989W: http://sourceforge.net/projects/atl1
990W: http://atl1.sourceforge.net
991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700992F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994ATM
995P: Chas Williams
996M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700997L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800998L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999W: http://linux-atm.sourceforge.net
1000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001001F: drivers/atm/
1002F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Pierre Ossman272f1332007-05-14 21:25:26 +02001004ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001005P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001006M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001007L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1008W: http://www.atmel.com/products/AT91/
1009W: http://www.at91.com/
1010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001011F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001012
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001013ATMEL AT91 / AT32 MCI DRIVER
1014P: Nicolas Ferre
1015M: nicolas.ferre@atmel.com
1016S: Maintained
1017F: drivers/mmc/host/atmel-mci.c
1018F: drivers/mmc/host/atmel-mci-regs.h
1019
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001020ATMEL AT91 / AT32 SERIAL DRIVER
1021P: Haavard Skinnemoen
1022M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001023S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001024F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001025
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001026ATMEL LCDFB DRIVER
1027P: Nicolas Ferre
1028M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001029L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001031F: drivers/video/atmel_lcdfb.c
1032F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001033
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001034ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001035P: Haavard Skinnemoen
1036M: hskinnemoen@atmel.com
1037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001038F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001039
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001040ATMEL SPI DRIVER
1041P: Haavard Skinnemoen
1042M: hskinnemoen@atmel.com
1043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001044F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001045
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001046ATMEL USBA UDC DRIVER
1047P: Haavard Skinnemoen
1048M: hskinnemoen@atmel.com
1049L: kernel@avr32linux.org
1050W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1051S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001052F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054ATMEL WIRELESS DRIVER
1055P: Simon Kelley
1056M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001057L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058W: http://www.thekelleys.org.uk/atmel
1059W: http://atmelwlandriver.sourceforge.net/
1060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001061F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Chris Wrighta92b7b82005-07-07 18:12:23 -07001063AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001064P: Al Viro
1065M: viro@zeniv.linux.org.uk
1066P: Eric Paris
1067M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001068L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001069W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001070T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001072F: include/linux/audit.h
1073F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001074
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001075AUXILIARY DISPLAY DRIVERS
1076P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001077M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001078W: http://miguelojeda.es/auxdisplay.htm
1079W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001081F: drivers/auxdisplay/
1082F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001083
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001084AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001085P: Haavard Skinnemoen
1086M: hskinnemoen@atmel.com
1087W: http://www.atmel.com/products/AVR32/
1088W: http://avr32linux.org/
1089W: http://avrfreaks.net/
1090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001091F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001092
1093AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001094P: Haavard Skinnemoen
1095M: hskinnemoen@atmel.com
1096S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001097F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099AX.25 NETWORK LAYER
1100P: Ralf Baechle
1101M: ralf@linux-mips.org
1102L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001103W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001105F: include/linux/ax25.h
1106F: include/net/ax25.h
1107F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001109B43 WIRELESS DRIVER
1110P: Michael Buesch
1111M: mb@bu3sch.de
1112P: Stefano Brivio
1113M: stefano.brivio@polimi.it
1114L: linux-wireless@vger.kernel.org
1115W: http://linuxwireless.org/en/users/Drivers/b43
1116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001117F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001118
1119B43LEGACY WIRELESS DRIVER
1120P: Larry Finger
1121M: Larry.Finger@lwfinger.net
1122P: Stefano Brivio
1123M: stefano.brivio@polimi.it
1124L: linux-wireless@vger.kernel.org
1125W: http://linuxwireless.org/en/users/Drivers/b43
1126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001127F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001128
Richard Purdie300abeb2007-02-07 22:21:07 +00001129BACKLIGHT CLASS/SUBSYSTEM
1130P: Richard Purdie
1131M: rpurdie@rpsys.net
1132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001133F: drivers/video/backlight/
1134F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001136BAYCOM/HDLCDRV DRIVERS FOR AX.25
1137P: Thomas Sailer
1138M: t.sailer@alumni.ethz.ch
1139L: linux-hams@vger.kernel.org
1140W: http://www.baycom.org/~tom/ham/ham.html
1141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001142F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001143
1144BEFS FILE SYSTEM
1145P: Sergey S. Kostyliov
1146M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001148F: Documentation/filesystems/befs.txt
1149F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001150
1151BFS FILE SYSTEM
1152P: Tigran A. Aivazian
1153M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001155F: Documentation/filesystems/bfs.txt
1156F: fs/bfs/
1157F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001158
Bryan Wu1394f032007-05-06 14:50:22 -07001159BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001160P: Mike Frysinger
1161M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001162L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001163W: http://blackfin.uclinux.org
1164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001165F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001166
Bryan Wue190d6b2007-07-17 14:43:44 +08001167BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001168P: Michael Hennerich
1169M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001170L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001171W: http://blackfin.uclinux.org
1172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001173F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001174
Mike Frysinger566da5b2007-06-11 15:31:30 +08001175BLACKFIN RTC DRIVER
1176P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001177M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001178L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001179W: http://blackfin.uclinux.org
1180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001181F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001182
Bryan Wu1394f032007-05-06 14:50:22 -07001183BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001184P: Sonic Zhang
1185M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001186L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001187W: http://blackfin.uclinux.org
1188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001189F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001190
Bryan Wu1e6d3202007-07-15 02:50:02 +08001191BLACKFIN WATCHDOG DRIVER
1192P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001193M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001194L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001195W: http://blackfin.uclinux.org
1196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001197F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001198
Bryan Wud24ecfc2007-05-01 23:26:32 +02001199BLACKFIN I2C TWI DRIVER
1200P: Sonic Zhang
1201M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001202L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001203W: http://blackfin.uclinux.org/
1204S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001205F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207BLOCK LAYER
1208P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001209M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001210T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001212F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Joern Engel2b54aae2008-02-06 01:38:02 -08001214BLOCK2MTD DRIVER
1215P: Joern Engel
1216M: joern@lazybastard.org
1217L: linux-mtd@lists.infradead.org
1218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001219F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001220
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001221BLUETOOTH DRIVERS
1222P: Marcel Holtmann
1223M: marcel@holtmann.org
1224L: linux-bluetooth@vger.kernel.org
1225W: http://www.bluez.org/
1226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001227F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229BLUETOOTH SUBSYSTEM
1230P: Marcel Holtmann
1231M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001232L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001233W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001234T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001236F: net/bluetooth/
1237F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001240P: Jay Vosburgh
1241M: fubar@us.ibm.com
1242L: bonding-devel@lists.sourceforge.net
1243W: http://sourceforge.net/projects/bonding/
1244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001245F: drivers/net/bonding/
1246F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Gary Zambrano39105892006-06-22 17:26:20 -07001248BROADCOM B44 10/100 ETHERNET DRIVER
1249P: Gary Zambrano
1250M: zambrano@broadcom.com
1251L: netdev@vger.kernel.org
1252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001253F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001254
Michael Chan948c51e2006-06-04 02:51:39 -07001255BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1256P: Michael Chan
1257M: mchan@broadcom.com
1258L: netdev@vger.kernel.org
1259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001260F: drivers/net/bnx2.*
1261F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001262
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001263BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001264P: Eilon Greenstein
1265M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001266L: netdev@vger.kernel.org
1267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001268F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001269
Michael Chan948c51e2006-06-04 02:51:39 -07001270BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001271P: Matt Carlson
1272M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001273P: Michael Chan
1274M: mchan@broadcom.com
1275L: netdev@vger.kernel.org
1276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001277F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001278
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001279BSG (block layer generic sg v4 driver)
1280P: FUJITA Tomonori
1281M: fujita.tomonori@lab.ntt.co.jp
1282L: linux-scsi@vger.kernel.org
1283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001284F: block/bsg.c
1285F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001286
Michael Bueschff1d5c22008-07-25 01:46:10 -07001287BT8XXGPIO DRIVER
1288P: Michael Buesch
1289M: mb@bu3sch.de
1290W: http://bu3sch.de/btgpio.php
1291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001292F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001293
Joe Percheseb1eb042009-01-21 10:49:16 -05001294BTRFS FILE SYSTEM
1295P: Chris Mason
1296M: chris.mason@oracle.com
1297L: linux-btrfs@vger.kernel.org
1298W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001299T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: Documentation/filesystems/btrfs.txt
1302F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001305P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001306M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001307L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001308W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001309T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001311F: Documentation/video4linux/bttv/
1312F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
David Howellsa5432f52009-04-20 15:46:45 +01001314CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1315P: David Howells
1316M: dhowells@redhat.com
1317L: linux-cachefs@redhat.com
1318S: Supported
1319F: Documentation/filesystems/caching/cachefiles.txt
1320F: fs/cachefiles/
1321
Jonathan Corbet77d51402007-03-22 19:44:17 -03001322CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001323P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001324M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001325L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001326T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001328F: Documentation/video4linux/cafe_ccic
1329F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001330
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001331CALGARY x86-64 IOMMU
1332P: Muli Ben-Yehuda
1333M: muli@il.ibm.com
1334P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001335M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001336L: discuss@x86-64.org
1337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001338F: arch/x86/kernel/pci-calgary_64.c
1339F: arch/x86/kernel/tce_64.c
1340F: arch/x86/include/asm/calgary.h
1341F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001342
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001343CAN NETWORK LAYER
1344P: Urs Thuermann
1345M: urs.thuermann@volkswagen.de
1346P: Oliver Hartkopp
1347M: oliver.hartkopp@volkswagen.de
1348L: socketcan-core@lists.berlios.de (subscribers-only)
1349W: http://developer.berlios.de/projects/socketcan/
1350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001351F: drivers/net/can/
1352F: include/linux/can/
1353F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001354
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001355CAN NETWORK DRIVERS
1356P: Wolfgang Grandegger
1357M: wg@grandegger.com
1358L: socketcan-core@lists.berlios.de (subscribers-only)
1359W: http://developer.berlios.de/projects/socketcan/
1360S: Maintained
1361
Arnd Bergmannb8154542008-05-16 11:10:59 +02001362CELL BROADBAND ENGINE ARCHITECTURE
1363P: Arnd Bergmann
1364M: arnd@arndb.de
1365L: linuxppc-dev@ozlabs.org
1366L: cbe-oss-dev@ozlabs.org
1367W: http://www.ibm.com/developerworks/power/cell/
1368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001369F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001370F: arch/powerpc/include/asm/spu*.h
1371F: arch/powerpc/oprofile/*cell*
1372F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001373
David Vrabel18332a82008-09-17 16:34:44 +01001374CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1375P: David Vrabel
1376M: david.vrabel@csr.com
1377L: linux-usb@vger.kernel.org
1378S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001379F: Documentation/usb/WUSB-Design-overview.txt
1380F: Documentation/usb/wusb-cbaf
1381F: drivers/usb/wusbcore/
1382F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001383
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001384CFAG12864B LCD DRIVER
1385P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001386M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001387W: http://miguelojeda.es/auxdisplay.htm
1388W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001390F: drivers/auxdisplay/cfag12864b.c
1391F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001392
1393CFAG12864BFB LCD FRAMEBUFFER DRIVER
1394P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001395M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001396W: http://miguelojeda.es/auxdisplay.htm
1397W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001399F: drivers/auxdisplay/cfag12864bfb.c
1400F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001401
Johannes Berg704232c2007-04-23 12:20:05 -07001402CFG80211 and NL80211
1403P: Johannes Berg
1404M: johannes@sipsolutions.net
1405L: linux-wireless@vger.kernel.org
1406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001407F: include/linux/nl80211.h
1408F: include/net/cfg80211.h
1409F: net/wireless/*
1410X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001411
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001412CHECKPATCH
1413P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001414M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001415S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001416F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001417
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001418CISCO 10G ETHERNET DRIVER
1419P: Scott Feldman
1420M: scofeldm@cisco.com
1421P: Joe Eykholt
1422M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001425
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001426CIRRUS LOGIC EP93XX ETHERNET DRIVER
1427P: Lennert Buytenhek
1428M: kernel@wantstofly.org
1429L: netdev@vger.kernel.org
1430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001432
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001433CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1434P: Lennert Buytenhek
1435M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001436L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001438F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001439
Timur Tabid9e9d822008-04-24 08:45:26 +10001440CIRRUS LOGIC CS4270 SOUND DRIVER
1441P: Timur Tabi
1442M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001443L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001444S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001445F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1448P: Cirrus Logic Corporation (kernel 2.2 driver)
1449M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1450P: Nils Faerber (port to kernel 2.4)
1451M: Nils Faerber <nils@kernelconcepts.de>
1452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: Documentation/input/cs461x.txt
1454F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Russell Kingd4275352009-04-16 14:05:27 +01001456CLK API
1457P: Russell King
1458M: linux@arm.linux.org.uk
1459F: include/linux/clk.h
1460
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001461CISCO FCOE HBA DRIVER
1462P: Abhijeet Joglekar
1463M: abjoglek@cisco.com
1464P: Joe Eykholt
1465M: jeykholt@cisco.com
1466L: linux-scsi@vger.kernel.org
1467S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001468F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470CODA FILE SYSTEM
1471P: Jan Harkes
1472M: jaharkes@cs.cmu.edu
1473M: coda@cs.cmu.edu
1474L: codalist@coda.cs.cmu.edu
1475W: http://www.coda.cs.cmu.edu/
1476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001477F: Documentation/filesystems/coda.txt
1478F: fs/coda/
1479F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481COMMON INTERNET FILE SYSTEM (CIFS)
1482P: Steve French
1483M: sfrench@samba.org
1484L: linux-cifs-client@lists.samba.org
1485L: samba-technical@lists.samba.org
1486W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001487T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001489F: Documentation/filesystems/cifs.txt
1490F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492COMPACTPCI HOTPLUG CORE
1493P: Scott Murray
1494M: scottm@somanetworks.com
1495M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001496L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001498F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1501P: Scott Murray
1502M: scottm@somanetworks.com
1503M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001504L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001506F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508COMPACTPCI HOTPLUG GENERIC DRIVER
1509P: Scott Murray
1510M: scottm@somanetworks.com
1511M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001512L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001516COMPAL LAPTOP SUPPORT
1517P: Cezary Jackiewicz
1518M: cezary.jackiewicz@gmail.com
1519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522COMPUTONE INTELLIPORT MULTIPORT CARD
1523P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001524M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001527F: Documentation/serial/computone.txt
1528F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Simon Arlott949be0f2007-03-06 02:47:46 -08001530CONEXANT ACCESSRUNNER USB DRIVER
1531P: Simon Arlott
1532M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001533L: accessrunner-general@lists.sourceforge.net
1534W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001536F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001537
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001538CONFIGFS
1539P: Joel Becker
1540M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001542F: fs/configfs/
1543F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001545CONTROL GROUPS (CGROUPS)
1546P: Paul Menage
1547M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001548P: Li Zefan
1549M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001550L: containers@lists.linux-foundation.org
1551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001552F: include/linux/cgroup*
1553F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001554F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001555
Rudolf Marekbebe4672007-05-08 17:22:02 +02001556CORETEMP HARDWARE MONITORING DRIVER
1557P: Rudolf Marek
1558M: r.marek@assembler.cz
1559L: lm-sensors@lm-sensors.org
1560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001561F: Documentation/hwmon/coretemp
1562F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564COSA/SRP SYNC SERIAL DRIVER
1565P: Jan "Yenya" Kasprzak
1566M: kas@fi.muni.cz
1567W: http://www.fi.muni.cz/~kas/cosa/
1568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001569F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Florian Fainelli4371ee32009-06-01 02:43:17 -07001571CPMAC ETHERNET DRIVER
1572P: Florian Fainelli
1573M: florian@openwrt.org
1574L: netdev@vger.kernel.org
1575S: Maintained
1576F: drivers/net/cpmac.c
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578CPU FREQUENCY DRIVERS
1579P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001580M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001581L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001583T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001585F: arch/x86/kernel/cpu/cpufreq/
1586F: drivers/cpufreq/
1587F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589CPUID/MSR DRIVER
1590P: H. Peter Anvin
1591M: hpa@zytor.com
1592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001593F: arch/x86/kernel/cpuid.c
1594F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Paul Jacksoned90fb42005-09-27 21:45:37 -07001596CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001597P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001598M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001599W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001600W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001601S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001602F: Documentation/cgroups/cpusets.txt
1603F: include/linux/cpuset.h
1604F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001607W: http://sourceforge.net/projects/cramfs/
1608S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001609F: Documentation/filesystems/cramfs.txt
1610F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612CRIS PORT
1613P: Mikael Starvik
1614M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001615P: Jesper Nilsson
1616M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617L: dev-etrax@axis.com
1618W: http://developer.axis.com
1619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622CRYPTO API
1623P: Herbert Xu
1624M: herbert@gondor.apana.org.au
1625P: David S. Miller
1626M: davem@davemloft.net
1627L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001628T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: Documentation/crypto/
1631F: arch/*/crypto/
1632F: crypto/
1633F: drivers/crypto/
1634F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Neil Horman5b07bd52009-02-05 16:03:04 +11001636CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1637P: Neil Horman
1638M: nhorman@tuxdriver.com
1639L: linux-crypto@vger.kernel.org
1640S: Maintained
1641
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001642CS5535 Audio ALSA driver
1643P: Jaya Kumar
1644M: jayakumar.alsa@gmail.com
1645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001646F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001647
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001648CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001649P: Hans Verkuil
1650M: hverkuil@xs4all.nl
1651P: Andy Walls
1652M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001653L: ivtv-devel@ivtvdriver.org
1654L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001655L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001656T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001657W: http://linuxtv.org
1658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001659F: Documentation/video4linux/cx18.txt
1660F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001661
Steve Wisee5ec3782008-05-20 14:06:33 -07001662CXGB3 ETHERNET DRIVER (CXGB3)
1663P: Divy Le Ray
1664M: divy@chelsio.com
1665L: netdev@vger.kernel.org
1666W: http://www.chelsio.com
1667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001668F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001669
1670CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1671P: Steve Wise
1672M: swise@chelsio.com
1673L: general@lists.openfabrics.org
1674W: http://www.openfabrics.org
1675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001676F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678CYBERPRO FB DRIVER
1679P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001680M: linux@arm.linux.org.uk
1681L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682W: http://www.arm.linux.org.uk/
1683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686CYCLADES 2X SYNC CARD DRIVER
1687P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001688M: acme@ghostprotocols.net
1689W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001691F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001695S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001696F: drivers/char/cyclades.c
1697F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001701S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001702F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704DAMA SLAVE for AX.25
1705P: Joerg Reuter
1706M: jreuter@yaina.de
1707W: http://yaina.de/jreuter/
1708W: http://www.qsl.net/dl1bke/
1709L: linux-hams@vger.kernel.org
1710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001711F: net/ax25/af_ax25.c
1712F: net/ax25/ax25_dev.c
1713F: net/ax25/ax25_ds_*
1714F: net/ax25/ax25_in.c
1715F: net/ax25/ax25_out.c
1716F: net/ax25/ax25_timer.c
1717F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001719DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1720P: Tobias Ringstrom
1721M: tori@unhappy.mine.nu
1722L: netdev@vger.kernel.org
1723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001724F: Documentation/networking/dmfe.txt
1725F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001726
1727DC390/AM53C974 SCSI driver
1728P: Kurt Garloff
1729M: garloff@suse.de
1730W: http://www.garloff.de/kurt/linux/dc390/
1731P: Guennadi Liakhovetski
1732M: g.liakhovetski@gmx.de
1733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001734F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001735
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736DC395x SCSI driver
1737P: Oliver Neukum
1738M: oliver@neukum.name
1739P: Ali Akcaagac
1740M: aliakc@web.de
1741P: Jamie Lenehan
1742M: lenehan@twibble.org
1743W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001744L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745L: http://lists.twibble.org/mailman/listinfo/dc395x/
1746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001747F: Documentation/scsi/dc395x.txt
1748F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001750DCCP PROTOCOL
1751P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001752M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001753L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001754W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001756F: include/linux/dccp.h
1757F: include/linux/tfrc.h
1758F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001761P: Christine Caulfield
1762M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763W: http://linux-decnet.sourceforge.net
1764L: linux-decnet-user@lists.sourceforge.net
1765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001766F: Documentation/networking/decnet.txt
1767F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
1769DEFXX FDDI NETWORK DRIVER
1770P: Maciej W. Rozycki
1771M: macro@linux-mips.org
1772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001773F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001775DELL LAPTOP DRIVER
1776P: Matthew Garrett
1777M: mjg59@srcf.ucam.org
1778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001779F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781DELL LAPTOP SMM DRIVER
1782P: Massimo Dal Zotto
1783M: dz@debian.org
1784W: http://www.debian.org/~dz/i8k/
1785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: drivers/char/i8k.c
1787F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Doug Warzecha90563ec2005-09-06 15:17:15 -07001789DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1790P: Doug Warzecha
1791M: Douglas_Warzecha@dell.com
1792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001793F: Documentation/dcdbas.txt
1794F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001795
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001796DELL WMI EXTRAS DRIVER
1797P: Matthew Garrett
1798M: mjg59@srcf.ucam.org
1799S: Maintained
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801DEVICE NUMBER REGISTRY
1802P: Torben Mathiasen
1803M: device@lanana.org
1804W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805S: Maintained
1806
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001807DEVICE-MAPPER (LVM)
1808P: Alasdair Kergon
1809L: dm-devel@redhat.com
1810W: http://sources.redhat.com/dm
1811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001812F: Documentation/device-mapper/
1813F: drivers/md/dm*
1814F: include/linux/device-mapper.h
1815F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817DIGI INTL. EPCA DRIVER
1818P: Digi International, Inc
1819M: Eng.Linux@digi.com
1820L: Eng.Linux@digi.com
1821W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001822S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001823F: Documentation/serial/digiepca.txt
1824F: drivers/char/epca*
1825F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Randy Dunlape7839f22008-10-12 16:11:45 -07001827DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001828P: Eric Paris
1829M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001831F: Documentation/filesystems/dnotify.txt
1832F: fs/notify/dnotify/
1833F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835DISK GEOMETRY AND PARTITION HANDLING
1836P: Andries Brouwer
1837M: aeb@cwi.nl
1838W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1839W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1840W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1841S: Maintained
1842
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001843DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844P: Jan Kara
1845M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/filesystems/quota.txt
1848F: fs/quota/
1849F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Randy Dunlape7839f22008-10-12 16:11:45 -07001851DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001852P: Christine Caulfield
1853M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001854P: David Teigland
1855M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001856L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001857W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001858T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001860F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001861
Dan Williamsb3e5f262007-08-07 10:26:35 -07001862DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001863P: Maciej Sosnowski
1864M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001865P: Dan Williams
1866M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001868F: drivers/dma/
1869F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001870
Juerg Haefligerb8250372007-06-09 10:11:16 -04001871DME1737 HARDWARE MONITOR DRIVER
1872P: Juerg Haefliger
1873M: juergh@gmail.com
1874L: lm-sensors@lm-sensors.org
1875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001876F: Documentation/hwmon/dme1737
1877F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001878
Martin Waitzba483d52005-06-17 13:20:59 -07001879DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001880P: Randy Dunlap
1881M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001882S: Maintained
1883
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001884DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001885P: Shaohua Li
1886M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001887L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001889F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001890
Joe Perches7d2c86b2009-04-07 20:59:01 -07001891DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001892P: Randy Dunlap
1893M: rdunlap@xenotime.net
1894L: linux-doc@vger.kernel.org
1895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898DOUBLETALK DRIVER
1899P: James R. Van Zandt
1900M: jrv@vanzandt.mv.com
1901L: blinux-list@redhat.com
1902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001903F: drivers/char/dtlk.c
1904F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001906DPT_I2O SCSI RAID DRIVER
1907P: Adaptec OEM Raid Solutions
1908M: aacraid@adaptec.com
1909L: linux-scsi@vger.kernel.org
1910W: http://www.adaptec.com/
1911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001912F: drivers/scsi/dpt*
1913F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915DRIVER CORE, KOBJECTS, AND SYSFS
1916P: Greg Kroah-Hartman
1917M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001918T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001920F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001921F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001922F: fs/sysfs/
1923F: include/linux/kobj*
1924F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926DRM DRIVERS
1927P: David Airlie
1928M: airlied@linux.ie
1929L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001930T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001935P: Francois Romieu
1936M: romieu@fr.zoreil.com
1937L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001939F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001941DZ DECSTATION DZ11 SERIAL DRIVER
1942P: Maciej W. Rozycki
1943M: macro@linux-mips.org
1944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001945F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947EATA-DMA SCSI DRIVER
1948P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001949M: mike@i-Connect.Net
1950L: linux-eata@i-connect.net
1951L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955EATA ISA/EISA/PCI SCSI DRIVER
1956P: Dario Ballabio
1957M: ballabio_dario@emc.com
1958L: linux-scsi@vger.kernel.org
1959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001960F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962EATA-PIO SCSI DRIVER
1963P: Michael Neuffer
1964M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001965L: linux-eata@i-connect.net
1966L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001968F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970EBTABLES
1971P: Bart De Schuymer
1972M: bart.de.schuymer@pandora.be
1973L: ebtables-user@lists.sourceforge.net
1974L: ebtables-devel@lists.sourceforge.net
1975W: http://ebtables.sourceforge.net/
1976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001977F: include/linux/netfilter_bridge/ebt_*.h
1978F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Michael Halcrow237fead2006-10-04 02:16:22 -07001980ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001981P: Tyler Hicks
1982M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07001983P: Dustin Kirkland
1984M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001985L: ecryptfs-devel@lists.launchpad.net
1986W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001988F: Documentation/filesystems/ecryptfs.txt
1989F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001990
Alan Coxda9bb1d2006-01-18 17:44:13 -08001991EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001992P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001993M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001994L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001995W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001997F: Documentation/edac.txt
1998F: drivers/edac/edac_*
1999F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002000
Borislav Petkovc476c232009-05-20 20:31:58 +02002001EDAC-AMD64
2002P: Doug Thompson
2003M: dougthompson@xmission.com
2004P: Borislav Petkov
2005M: borislav.petkov@amd.com
2006L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2007W: bluesmoke.sourceforge.net
2008S: Supported
2009F: drivers/edac/amd64_edac*
2010
Dave Peterson0e438e32006-03-26 01:38:55 -08002011EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002012P: Mark Gross
2013M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002014P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002015M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002016L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002017W: bluesmoke.sourceforge.net
2018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002020
2021EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002022P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002023M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002024L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002025W: bluesmoke.sourceforge.net
2026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002028
Douglas Thompson6bc78402007-07-19 01:50:12 -07002029EDAC-I82443BXGX
2030P: Tim Small
2031M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002032L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002033W: bluesmoke.sourceforge.net
2034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002036
2037EDAC-I3000
2038P: Jason Uhlenkott
2039M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002040L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002041W: bluesmoke.sourceforge.net
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002044
2045EDAC-I5000
2046P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002047M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002048L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002049W: bluesmoke.sourceforge.net
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002052
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002053EDAC-I5400
2054P: Mauro Carvalho Chehab
2055M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002056L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002057W: bluesmoke.sourceforge.net
2058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002060
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002061EDAC-I82975X
2062P: Ranganathan Desikan
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002063M: rdesikan@jetzbroadband.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002064P: Arvind R.
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002065M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002066L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002067W: bluesmoke.sourceforge.net
2068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002069F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002070
2071EDAC-PASEMI
2072P: Egor Martovetsky
2073M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002074L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002075W: bluesmoke.sourceforge.net
2076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002077F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002078
Dave Peterson0e438e32006-03-26 01:38:55 -08002079EDAC-R82600
2080P: Tim Small
2081M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002082L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002083W: bluesmoke.sourceforge.net
2084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002086
Eric Coopere59f8792008-03-13 12:55:46 +01002087EEEPC LAPTOP EXTRAS DRIVER
2088P: Corentin Chary
2089M: corentincj@iksaif.net
2090L: acpi4asus-user@lists.sourceforge.net
2091W: http://sourceforge.net/projects/acpi4asus
2092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002093F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002094
Josh Triplett0bee8d22006-07-30 03:03:58 -07002095EFS FILESYSTEM
2096W: http://aeschi.ch.eu.org/efs/
2097S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002098F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002099
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002100EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002101P: Hoang-Nam Nguyen
2102M: hnguyen@de.ibm.com
2103P: Christoph Raisch
2104M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002105L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002106S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002107F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002108
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002109EMBEDDED LINUX
2110P: Paul Gortmaker
2111M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002112P: Matt Mackall
2113M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002114P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002115M: dwmw2@infradead.org
2116L: linux-embedded@vger.kernel.org
2117S: Maintained
2118
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002119EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002120P: James Smart
2121M: james.smart@emulex.com
2122L: linux-scsi@vger.kernel.org
2123W: http://sourceforge.net/projects/lpfcxxxx
2124S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002125F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002126
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002127ENE CB710 FLASH CARD READER DRIVER
2128P: Michał Mirosław
2129M: mirq-linux@rere.qmqm.pl
2130L: linux-kernel@vger.kernel.org
2131S: Maintained
2132F: drivers/misc/cb710/
2133F: drivers/mmc/host/cb710-mmc.*
2134F: include/linux/cb710.h
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136EPSON 1355 FRAMEBUFFER DRIVER
2137P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002138M: ch@murgatroid.com
2139P: Christopher Hoover
2140M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002144EPSON S1D13XXX FRAMEBUFFER DRIVER
2145P: Kristoffer Ericson
2146M: kristoffer.ericson@gmail.com
2147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002148F: drivers/video/s1d13xxxfb.c
2149F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151ETHEREXPRESS-16 NETWORK DRIVER
2152P: Philip Blundell
2153M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002154L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158ETHERNET BRIDGE
2159P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002160M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002161L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002162W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: include/linux/netfilter_bridge/
2165F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167ETHERTEAM 16I DRIVER
2168P: Mika Kuoppala
2169M: miku@iki.fi
2170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002171F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002174L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002176F: Documentation/filesystems/ext2.txt
2177F: fs/ext2/
2178F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002181P: Stephen Tweedie
2182M: sct@redhat.com
2183P: Andrew Morton
2184M: akpm@linux-foundation.org
2185P: Andreas Dilger
2186M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002187L: linux-ext4@vger.kernel.org
2188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002189F: Documentation/filesystems/ext3.txt
2190F: fs/ext3/
2191F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002192
2193EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002194P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002195M: tytso@mit.edu
2196P: Andreas Dilger
2197M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002198L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002199W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002201F: Documentation/filesystems/ext4.txt
2202F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Jean Delvaree53004e2006-01-09 23:26:14 +01002204F71805F HARDWARE MONITORING DRIVER
2205P: Jean Delvare
2206M: khali@linux-fr.org
2207L: lm-sensors@lm-sensors.org
2208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002209F: Documentation/hwmon/f71805f
2210F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212FARSYNC SYNCHRONOUS DRIVER
2213P: Kevin Curtis
2214M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215W: http://www.farsite.co.uk/
2216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002217F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Akinobu Mitac5408b82007-04-23 14:41:20 -07002219FAULT INJECTION SUPPORT
2220P: Akinobu Mita
2221M: akinobu.mita@gmail.com
2222S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002223F: Documentation/fault-injection/
2224F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002225
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002226FILE LOCKING (flock() and fcntl()/lockf())
2227P: Matthew Wilcox
2228M: matthew@wil.cx
2229L: linux-fsdevel@vger.kernel.org
2230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: include/linux/fcntl.h
2232F: include/linux/fs.h
2233F: fs/fcntl.c
2234F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002235
2236FILESYSTEMS (VFS and infrastructure)
2237P: Alexander Viro
2238M: viro@zeniv.linux.org.uk
2239L: linux-fsdevel@vger.kernel.org
2240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002242
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002243FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2244P: Riku Voipio
2245M: riku.vipio@iki.fi
2246L: lm-sensors@lm-sensors.org
2247S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002248F: drivers/hwmon/f75375s.c
2249F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002250
Joe Perches7d2c86b2009-04-07 20:59:01 -07002251FIREWIRE SUBSYSTEM
2252P: Kristian Hoegsberg
2253M: krh@redhat.com
2254P: Stefan Richter
2255M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002256L: linux1394-devel@lists.sourceforge.net
2257W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002258T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002260F: drivers/firewire/
2261F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002262
2263FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002265F: Documentation/firmware_class/
2266F: drivers/base/firmware*.c
2267F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002268
2269FPU EMULATOR
2270P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002271M: billm@melbpc.org.au
2272W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002274F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002275
2276FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2277P: Mike McLagan
2278M: mike.mclagan@linux.org
2279L: netdev@vger.kernel.org
2280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002281F: drivers/net/wan/dlci.c
2282F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002285L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002287S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002288F: Documentation/fb/
2289F: drivers/video/fb*
2290F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Zhang Wei173acc72008-03-01 07:42:48 -07002292FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002293P: Li Yang
2294M: leoli@freescale.com
2295P: Zhang Wei
2296M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002297L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002299F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002300
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002301FREESCALE I2C CPM DRIVER
2302P: Jochen Friedrich
2303M: jochen@scram.de
2304L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002305L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002307F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002308
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002309FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2310P: Sascha Hauer
2311M: kernel@pengutronix.de
2312L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2313L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002315F: arch/arm/plat-mxc/include/mach/imxfb.h
2316F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002317
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002318FREESCALE SOC FS_ENET DRIVER
2319P: Pantelis Antoniou
2320M: pantelis.antoniou@gmail.com
2321P: Vitaly Bordug
2322M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002323L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002324L: netdev@vger.kernel.org
2325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002326F: drivers/net/fs_enet/
2327F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002328
Timur Tabid9e9d822008-04-24 08:45:26 +10002329FREESCALE QUICC ENGINE LIBRARY
2330P: Timur Tabi
2331M: timur@freescale.com
2332L: linuxppc-dev@ozlabs.org
2333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002334F: arch/powerpc/sysdev/qe_lib/
2335F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002336
Li Yanga7205b32007-04-23 10:38:18 -07002337FREESCALE HIGHSPEED USB DEVICE DRIVER
2338P: Li Yang
2339M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002340L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002341L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002343F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002344
Li Yangbeaf53b2007-05-25 13:54:02 +08002345FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2346P: Li Yang
2347M: leoli@freescale.com
2348L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002349L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002352
Timur Tabid9e9d822008-04-24 08:45:26 +10002353FREESCALE QUICC ENGINE UCC UART DRIVER
2354P: Timur Tabi
2355M: timur@freescale.com
2356L: linuxppc-dev@ozlabs.org
2357S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002358F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002359
2360FREESCALE SOC SOUND DRIVERS
2361P: Timur Tabi
2362M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002363L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002364L: linuxppc-dev@ozlabs.org
2365S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002366F: sound/soc/fsl/fsl*
2367F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369FREEVXFS FILESYSTEM
2370P: Christoph Hellwig
2371M: hch@infradead.org
2372W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002374F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Pavel Machek71038f52009-01-15 13:51:02 -08002376FREEZER
2377P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002378M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002379P: Rafael J. Wysocki
2380M: rjw@sisk.pl
2381L: linux-pm@lists.linux-foundation.org
2382S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002383F: Documentation/power/freezing-of-tasks.txt
2384F: include/linux/freezer.h
2385F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002386
David Howellsa5432f52009-04-20 15:46:45 +01002387FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2388P: David Howells
2389M: dhowells@redhat.com
2390L: linux-cachefs@redhat.com
2391S: Supported
2392F: Documentation/filesystems/caching/
2393F: fs/fscache/
2394F: include/linux/fscache*.h
2395
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002396FTRACE
2397P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002398M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002399S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002400F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002401F: arch/*/*/*/ftrace.h
2402F: arch/*/kernel/ftrace.c
2403F: include/*/ftrace.h
2404F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002405
David Howells5ab7ffe2007-04-10 15:10:45 +01002406FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407P: David Howells
2408M: dhowells@redhat.com
2409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002410F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Jonathan Woithe20b93732008-06-11 10:14:56 +09302412FUJITSU LAPTOP EXTRAS
2413P: Jonathan Woithe
2414M: jwoithe@physics.adelaide.edu.au
2415L: linux-acpi@vger.kernel.org
2416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302418
Miklos Szeredi04578f12005-09-09 13:10:22 -07002419FUSE: FILESYSTEM IN USERSPACE
2420P: Miklos Szeredi
2421M: miklos@szeredi.hu
2422L: fuse-devel@lists.sourceforge.net
2423W: http://fuse.sourceforge.net/
2424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002425F: fs/fuse/
2426F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2429P: Rik Faith
2430M: faith@cs.unc.edu
2431L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002432S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002433F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435GDT SCSI DISK ARRAY CONTROLLER DRIVER
2436P: Achim Leubner
2437M: achim_leubner@adaptec.com
2438L: linux-scsi@vger.kernel.org
2439W: http://www.icp-vortex.com/
2440S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002441F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002443GENERIC GPIO I2C DRIVER
2444P: Haavard Skinnemoen
2445M: hskinnemoen@atmel.com
2446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002447F: drivers/i2c/busses/i2c-gpio.c
2448F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002449
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002450GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451P: Krzysztof Halasa
2452M: khc@pm.waw.pl
2453W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002455F: drivers/net/wan/c101.c
2456F: drivers/net/wan/hd6457*
2457F: drivers/net/wan/hdlc*
2458F: drivers/net/wan/n2.c
2459F: drivers/net/wan/pc300too.c
2460F: drivers/net/wan/pci200syn.c
2461F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002463GFS2 FILE SYSTEM
2464P: Steven Whitehouse
2465M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002466L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002467W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002468T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2469T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002470S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002471F: Documentation/filesystems/gfs2*.txt
2472F: fs/gfs2/
2473F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002474
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002475GIGASET ISDN DRIVERS
2476P: Hansjoerg Lipp
2477M: hjlipp@web.de
2478P: Tilman Schmidt
2479M: tilman@imap.cc
2480L: gigaset307x-common@lists.sourceforge.net
2481W: http://gigaset307x.sourceforge.net/
2482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002483F: Documentation/isdn/README.gigaset
2484F: drivers/isdn/gigaset/
2485F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002486
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002487HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002488P: Frank Seidel
2489M: frank@f-seidel.de
2490L: lm-sensors@lm-sensors.org
2491W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002493F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002495HYPERVISOR VIRTUAL CONSOLE DRIVER
2496L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002497S: Odd Fixes
2498F: drivers/char/hvc_*
2499
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002500GSPCA FINEPIX SUBDRIVER
2501P: Frank Zago
2502M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002503L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002504T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002506F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002507
2508GSPCA M5602 SUBDRIVER
2509P: Erik Andren
2510M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002511L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002512T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002514F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002515
2516GSPCA PAC207 SONIXB SUBDRIVER
2517P: Hans de Goede
2518M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002519L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002520T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002522F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002523
2524GSPCA T613 SUBDRIVER
2525P: Leandro Costantino
2526M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002527L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002528T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002530F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002531
2532GSPCA USB WEBCAM DRIVER
2533P: Jean-Francois Moine
2534M: moinejf@free.fr
2535W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002536L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002537T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002539F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002540
Jean Delvare5b543962005-08-15 19:51:02 +02002541HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002542L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002543W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002544S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002545F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002546
Michael Buesch844dd052006-06-26 00:24:59 -07002547HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002548S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002549F: Documentation/hw_random.txt
2550F: drivers/char/hw_random/
2551F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553HARMONY SOUND DRIVER
2554P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002555M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002556L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
2560HAYES ESP SERIAL DRIVER
2561P: Andrew J. Robinson
2562M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563W: http://www.nyx.net/~arobinso
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/serial/hayes-esp.txt
2566F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002567
2568HEWLETT-PACKARD SMART2 RAID DRIVER
2569P: Chirag Kantharia
2570M: chirag.kantharia@hp.com
2571L: iss_storagedev@hp.com
2572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002573F: Documentation/blockdev/cpqarray.txt
2574F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002575
2576HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2577P: Mike Miller
2578M: mike.miller@hp.com
2579L: iss_storagedev@hp.com
2580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002581F: Documentation/blockdev/cciss.txt
2582F: drivers/block/cciss*
2583F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585HFS FILESYSTEM
2586P: Roman Zippel
2587M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002589F: Documentation/filesystems/hfs.txt
2590F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592HGA FRAMEBUFFER DRIVER
2593P: Ferenc Bakonyi
2594M: fero@drama.obuda.kando.hu
2595L: linux-nvidia@lists.surfsouth.com
2596W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002598F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002600HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002601P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002602M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002603P: Rafael J. Wysocki
2604M: rjw@sisk.pl
2605L: linux-pm@lists.linux-foundation.org
2606S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002607F: arch/x86/power/
2608F: drivers/base/power/
2609F: kernel/power/
2610F: include/linux/suspend.h
2611F: include/linux/freezer.h
2612F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002613F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002614
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002615HID CORE LAYER
2616P: Jiri Kosina
2617M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002618L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002619T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: drivers/hid/
2622F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002623
Ingo Molnar38bed542007-02-22 09:09:34 +01002624HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2625P: Thomas Gleixner
2626M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002628F: Documentation/timers/
2629F: kernel/hrtimer.c
2630F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632HIGH-SPEED SCC DRIVER FOR AX.25
2633P: Klaus Kudielka
2634M: klaus.kudielka@ieee.org
2635L: linux-hams@vger.kernel.org
2636W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002638F: drivers/net/hamradio/dmascc.c
2639F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002641HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2642P: HighPoint Linux Team
2643M: linux@highpoint-tech.com
2644W: http://www.highpoint-tech.com
2645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002646F: Documentation/scsi/hptiop.txt
2647F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649HIPPI
2650P: Jes Sorensen
2651M: jes@trained-monkey.org
2652L: linux-hippi@sunsite.dk
2653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: include/linux/hippidevice.h
2655F: include/linux/if_hippi.h
2656F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Jouni Malinenff1d2762005-05-12 22:54:16 -04002658HOST AP DRIVER
2659P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002660M: j@w1.fi
2661L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002662L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002663W: http://hostap.epitest.fi/
2664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002665F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002666
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002667HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2668P: Carlos Corbacho
2669M: carlos@strangeworlds.co.uk
2670S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002672
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002673HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2674P: Jaroslav Kysela
2675M: perex@perex.cz
2676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002678
Joe Perches7d2c86b2009-04-07 20:59:01 -07002679HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002680P: Clemens Ladisch
2681M: clemens@ladisch.de
2682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002683F: Documentation/timers/hpet.txt
2684F: drivers/char/hpet.c
2685F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002686
2687HPET: i386
2688P: Venkatesh Pallipadi (Venki)
2689M: venkatesh.pallipadi@intel.com
2690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002691F: arch/x86/kernel/hpet.c
2692F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002693
2694HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002695P: Vojtech Pavlik
2696M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002697S: Maintained
2698
Joe Perches7d2c86b2009-04-07 20:59:01 -07002699HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002700P: Bob Picco
2701M: bob.picco@hp.com
2702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002703F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705HPFS FILESYSTEM
2706P: Mikulas Patocka
2707M: mikulas@artax.karlin.mff.cuni.cz
2708W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2709S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002710F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Joe Perches7d2c86b2009-04-07 20:59:01 -07002712HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002713P: Jan Dumon
2714M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002715W: http://www.pharscape.org
2716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002717F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002718
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002719HTCPEN TOUCHSCREEN DRIVER
2720P: Pau Oliva Fora
2721M: pof@eslack.org
2722L: linux-input@vger.kernel.org
2723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002724F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726HUGETLB FILESYSTEM
2727P: William Irwin
2728M: wli@holomorphy.com
2729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002732I2C/SMBUS STUB DRIVER
2733P: Mark M. Hoffman
2734M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002735L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002737F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002738
Jean Delvare5b543962005-08-15 19:51:02 +02002739I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002740P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002742P: Ben Dooks (embedded platforms)
2743M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002744L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002745W: http://i2c.wiki.kernel.org/
2746T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002748F: Documentation/i2c/
2749F: drivers/i2c/
2750F: include/linux/i2c.h
2751F: include/linux/i2c-dev.h
2752F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Till Harbaume8c76ee2007-05-01 23:26:35 +02002754I2C-TINY-USB DRIVER
2755P: Till Harbaum
2756M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002757L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002758W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002760F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002763P: H. Peter Anvin
2764M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002766F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769P: H. Peter Anvin
2770M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002771T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
2773
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774IA64 (Itanium) PLATFORM
2775P: Tony Luck
2776M: tony.luck@intel.com
2777L: linux-ia64@vger.kernel.org
2778W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002779T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002781F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783IBM MCA SCSI SUBSYSTEM DRIVER
2784P: Michael Lang
2785M: langa2@kph.uni-mainz.de
2786W: http://www.uni-mainz.de/~langm000/linux.html
2787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790IBM Power Linux RAID adapter
2791P: Brian King
2792M: brking@us.ibm.com
2793S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796IBM ServeRAID RAID DRIVER
2797P: Jack Hammer
2798P: Dave Jeffery
2799M: ipslinux@adaptec.com
2800W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002802F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002804IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002806M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002808T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002810F: Documentation/ide/
2811F: drivers/ide/
2812F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002814IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002815P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002816M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002817L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002819F: Documentation/cdrom/ide-cd
2820F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Andy Henroid27471fd2008-10-09 11:45:22 -07002822IDLE-I7300
2823P: Andy Henroid
2824M: andrew.d.henroid@intel.com
2825L: linux-pm@lists.linux-foundation.org
2826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002827F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002828
Joe Perches7d2c86b2009-04-07 20:59:01 -07002829IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002831M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002832P: Stefan Richter
2833M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834L: linux1394-devel@lists.sourceforge.net
2835W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002836T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002838F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Joe Perches7d2c86b2009-04-07 20:59:01 -07002840IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841P: Dan Dennedy
2842M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002843P: Stefan Richter
2844M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002847F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002848
Sergey Lapin02cf2282009-06-08 12:18:50 +00002849IEEE 802.15.4 SUBSYSTEM
2850P: Dmitry Eremin-Solenikov
2851M: dbaryshkov@gmail.com
2852P: Sergey Lapin
2853M: slapin@ossfans.org
2854L: linux-zigbee-devel@lists.sourceforge.net
2855W: http://apps.sourceforge.net/trac/linux-zigbee
2856T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git
2857S: Maintained
2858F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002859F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002860
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002861INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2862P: Mimi Zohar
2863M: zohar@us.ibm.com
2864S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002865F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002866
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002868L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002869S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002870F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872INFINIBAND SUBSYSTEM
2873P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002874M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002876M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002878M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002879L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002881T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002883F: Documentation/infiniband/
2884F: drivers/infiniband/
2885F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Robert Lovec9f04f52005-07-15 12:21:07 -04002887INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002888P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002889M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002890P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002891M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002892P: Eric Paris
2893M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002895F: Documentation/filesystems/inotify.txt
2896F: fs/notify/inotify/
2897F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002898
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002899INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2900P: Dmitry Torokhov
2901M: dmitry.torokhov@gmail.com
2902M: dtor@mail.ru
2903L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002904T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002906F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002907
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002908INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002909P: Sylvain Meyer
2910M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002911L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002913F: Documentation/fb/intelfb.txt
2914F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002915
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002917P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002918M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002919L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002921F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302923INTEL MENLOW THERMAL DRIVER
2924P: Sujith Thomas
2925M: sujith.thomas@intel.com
2926L: linux-acpi@vger.kernel.org
2927W: http://www.lesswatts.org/projects/acpi/
2928S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002929F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931INTEL IA32 MICROCODE UPDATE SUPPORT
2932P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002933M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002935F: arch/x86/kernel/microcode_core.c
2936F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002938INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002939P: Maciej Sosnowski
2940M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002942F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002943
David Woodhouse6c8909b2008-10-18 16:12:17 +01002944INTEL IOMMU (VT-d)
2945P: David Woodhouse
2946M: dwmw2@infradead.org
2947L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002948T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002950F: drivers/pci/intel-iommu.c
2951F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002952
Dan Williamsb3e5f262007-08-07 10:26:35 -07002953INTEL IOP-ADMA DMA DRIVER
2954P: Dan Williams
2955M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002957F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002958
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002959INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2960P: Krzysztof Halasa
2961M: khc@pm.waw.pl
2962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002963F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2964F: arch/arm/mach-ixp4xx/include/mach/npe.h
2965F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2966F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2967F: drivers/net/arm/ixp4xx_eth.c
2968F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002969
Michael Buesch844dd052006-06-26 00:24:59 -07002970INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2971P: Deepak Saxena
2972M: dsaxena@plexity.net
2973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002975
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002976INTEL IXP2000 ETHERNET DRIVER
2977P: Lennert Buytenhek
2978M: kernel@wantstofly.org
2979L: netdev@vger.kernel.org
2980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002981F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002982
Auke Kokd94e6fe2008-03-03 14:37:47 -08002983INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002984P: Jeff Kirsher
2985M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002986P: Jesse Brandeburg
2987M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002988P: Bruce Allan
2989M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002990P: PJ Waskiewicz
2991M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002992P: John Ronciak
2993M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002994L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002995W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002997F: drivers/net/e100.c
2998F: drivers/net/e1000/
2999F: drivers/net/e1000e/
3000F: drivers/net/igb/
3001F: drivers/net/ixgb/
3002F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
James Ketrenos826d2ab2005-11-07 18:56:59 -06003004INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003005P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003006M: yi.zhu@intel.com
3007P: James Ketrenos
3008M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003009P: Reinette Chatre
3010M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003011L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003012L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003013W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003014W: http://ipw2100.sourceforge.net
3015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003016F: Documentation/networking/README.ipw2100
3017F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003018
3019INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003020P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003021M: yi.zhu@intel.com
3022P: James Ketrenos
3023M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003024P: Reinette Chatre
3025M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003026L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003027L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003028W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003029W: http://ipw2200.sourceforge.net
3030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003031F: Documentation/networking/README.ipw2200
3032F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003033
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003034INTEL WIRELESS WIMAX CONNECTION 2400
3035P: Inaky Perez-Gonzalez
3036M: inaky.perez-gonzalez@intel.com
3037M: linux-wimax@intel.com
3038L: wimax@linuxwimax.org
3039S: Supported
3040W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003041F: Documentation/wimax/README.i2400m
3042F: drivers/net/wimax/i2400m/
3043F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003044
Zhu Yib481de92007-09-25 17:54:57 -07003045INTEL WIRELESS WIFI LINK (iwlwifi)
3046P: Zhu Yi
3047M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003048P: Reinette Chatre
3049M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003050L: linux-wireless@vger.kernel.org
3051L: ipw3945-devel@lists.sourceforge.net
3052W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003053T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003056
Ralf Baechlecb109a02007-08-30 23:56:30 -07003057IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058P: Ralf Baechle
3059M: ralf@linux-mips.org
3060L: linux-mips@linux-mips.org
3061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003062F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
Ralf Baechlecb109a02007-08-30 23:56:30 -07003064IOC3 SERIAL DRIVER
3065P: Pat Gefre
3066M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003067L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003069F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003070
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003071IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072P: Juanjo Ciarlante
3073M: jjciarla@raiz.uncu.edu.ar
3074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003075F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Francois Romieu1202d6f2007-09-17 17:13:55 -07003077IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3078P: Francois Romieu
3079M: romieu@fr.zoreil.com
3080P: Sorbica Shieh
3081M: sorbica@icplus.com.tw
3082P: Jesse Huang
3083M: jesse@icplus.com.tw
3084L: netdev@vger.kernel.org
3085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003086F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003087
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003088IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003089P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003090M: infinipath@qlogic.com
3091L: general@lists.openfabrics.org
3092T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003093S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003095
Corey Minyard4409ebe2006-04-20 02:43:12 -07003096IPMI SUBSYSTEM
3097P: Corey Minyard
3098M: minyard@acm.org
3099L: openipmi-developer@lists.sourceforge.net
3100W: http://openipmi.sourceforge.net/
3101S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003102F: Documentation/IPMI.txt
3103F: drivers/char/ipmi/
3104F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003105
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003106IPS SCSI RAID DRIVER
3107P: Adaptec OEM Raid Solutions
3108M: aacraid@adaptec.com
3109L: linux-scsi@vger.kernel.org
3110W: http://www.adaptec.com/
3111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003112F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003113
3114IPVS
3115P: Wensong Zhang
3116M: wensong@linux-vs.org
3117P: Simon Horman
3118M: horms@verge.net.au
3119P: Julian Anastasov
3120M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003121L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003122L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003124F: Documentation/networking/ipvs-sysctl.txt
3125F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Randy Dunlape7839f22008-10-12 16:11:45 -07003127IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003128P: Jiri Kosina
3129M: jkosina@suse.cz
3130P: David Sterba
3131M: dsterba@suse.cz
3132S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003133T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003134F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003136IPX NETWORK LAYER
3137P: Arnaldo Carvalho de Melo
3138M: acme@ghostprotocols.net
3139L: netdev@vger.kernel.org
3140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003141F: include/linux/ipx.h
3142F: include/net/ipx.h
3143F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003146P: Samuel Ortiz
3147M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003148L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003150S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003151T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003152F: Documentation/networking/irda.txt
3153F: drivers/net/irda/
3154F: include/net/irda/
3155F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003157ISAPNP
3158P: Jaroslav Kysela
3159M: perex@perex.cz
3160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003161F: Documentation/isapnp.txt
3162F: drivers/pnp/isapnp/
3163F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003164
Mike Christie14816b12007-11-28 16:22:06 -08003165ISCSI
3166P: Mike Christie
3167M: michaelc@cs.wisc.edu
3168L: open-iscsi@googlegroups.com
3169W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003170T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003172F: drivers/scsi/*iscsi*
3173F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175ISDN SUBSYSTEM
3176P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003177M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003178L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003180T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003182F: Documentation/isdn/
3183F: drivers/isdn/
3184F: include/linux/isdn.h
3185F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
3187ISDN SUBSYSTEM (Eicon active card driver)
3188P: Armin Schindler
3189M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003190L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191W: http://www.melware.de
3192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003193F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Hans Verkuil91821ff2007-12-02 09:35:33 -03003195IVTV VIDEO4LINUX DRIVER
3196P: Hans Verkuil
3197M: hverkuil@xs4all.nl
3198L: ivtv-devel@ivtvdriver.org
3199L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003200L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003201T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003202W: http://www.ivtvdriver.org
3203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003204F: Documentation/video4linux/*.ivtv
3205F: drivers/media/video/ivtv/
3206F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003207
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003208JFS FILESYSTEM
3209P: Dave Kleikamp
3210M: shaggy@austin.ibm.com
3211L: jfs-discussion@lists.sourceforge.net
3212W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003213T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003214S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003215F: Documentation/filesystems/jfs.txt
3216F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003217
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003218JME NETWORK DRIVER
3219P: Guo-Fu Tseng
3220M: cooldavid@cooldavid.org
3221L: netdev@vger.kernel.org
3222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003224
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3226P: David Woodhouse
3227M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003228L: linux-mtd@lists.infradead.org
3229W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: fs/jffs2/
3232F: include/linux/jffs2.h
3233F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Josh Triplettde456d32006-07-30 03:04:00 -07003235JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003236P: Stephen Tweedie
3237M: sct@redhat.com
3238P: Andrew Morton
3239M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003240L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003242F: fs/jbd*/
3243F: include/linux/ext*jbd*.h
3244F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003245
Rudolf Marek4660cb32006-10-08 22:01:26 +02003246K8TEMP HARDWARE MONITORING DRIVER
3247P: Rudolf Marek
3248M: r.marek@assembler.cz
3249L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: Documentation/hwmon/k8temp
3252F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254KCONFIG
3255P: Roman Zippel
3256M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003257L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003259F: Documentation/kbuild/kconfig-language.txt
3260F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Vivek Goyalea6c2082006-05-20 14:59:55 -07003262KDUMP
3263P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003264M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003265P: Haren Myneni
3266M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003267L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003268W: http://lse.sourceforge.net/kdump/
3269S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003270F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003271
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272KERNEL AUTOMOUNTER (AUTOFS)
3273P: H. Peter Anvin
3274M: hpa@zytor.com
3275L: autofs@linux.kernel.org
3276S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003277F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
3279KERNEL AUTOMOUNTER v4 (AUTOFS4)
3280P: Ian Kent
3281M: raven@themaw.net
3282L: autofs@linux.kernel.org
3283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003284F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Joe Perches7d2c86b2009-04-07 20:59:01 -07003286KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287P: Sam Ravnborg
3288M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003289T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3290T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003291L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003293F: Documentation/kbuild/
3294F: Makefile
3295F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297KERNEL JANITORS
3298P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003299L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301S: Maintained
3302
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003303KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003304P: J. Bruce Fields
3305M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003307M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003308L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003311F: fs/nfsd/
3312F: include/linux/nfsd/
3313F: fs/lockd/
3314F: fs/nfs_common/
3315F: net/sunrpc/
3316F: include/linux/lockd/
3317F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Avi Kivity426d62e2006-12-13 00:34:03 -08003319KERNEL VIRTUAL MACHINE (KVM)
3320P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003321M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003322L: kvm@vger.kernel.org
3323W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003324S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003325F: Documentation/*/kvm.txt
3326F: arch/*/kvm/
3327F: arch/*/include/asm/kvm*
3328F: include/linux/kvm*
3329F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003330
Joerg Roedelad8003d2008-09-10 20:01:07 +02003331KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3332P: Joerg Roedel
3333M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003334L: kvm@vger.kernel.org
3335W: http://kvm.qumranet.com
3336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003337F: arch/x86/include/asm/svm.h
3338F: arch/x86/kvm/kvm_svm.h
3339F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003340
Hollis Blanchard513014b2008-04-16 23:28:08 -05003341KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3342P: Hollis Blanchard
3343M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003344L: kvm-ppc@vger.kernel.org
3345W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003347F: arch/powerpc/include/asm/kvm*
3348F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003349
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003350KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003351P: Xiantao Zhang
3352M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003353L: kvm-ia64@vger.kernel.org
3354W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003356F: Documentation/ia64/kvm.txt
3357F: arch/ia64/include/asm/kvm*
3358F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003359
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003360KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3361P: Carsten Otte
3362M: cotte@de.ibm.com
3363P: Christian Borntraeger
3364M: borntraeger@de.ibm.com
3365M: linux390@de.ibm.com
3366L: linux-s390@vger.kernel.org
3367W: http://www.ibm.com/developerworks/linux/linux390/
3368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003369F: Documentation/s390/kvm.txt
3370F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003371F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003372
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003373KEXEC
3374P: Eric Biederman
3375M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003376W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003377L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003379F: include/linux/kexec.h
3380F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003381
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003382KGDB
3383P: Jason Wessel
3384M: jason.wessel@windriver.com
3385L: kgdb-bugreport@lists.sourceforge.net
3386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003387F: Documentation/DocBook/kgdb.tmpl
3388F: drivers/misc/kgdbts.c
3389F: drivers/serial/kgdboc.c
3390F: include/linux/kgdb.h
3391F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003392
Pekka Enberg456db8c2008-04-28 22:47:29 +03003393KMEMCHECK
3394P: Vegard Nossum
3395M: vegardno@ifi.uio.no
3396P Pekka Enberg
3397M: penberg@cs.helsinki.fi
3398L: linux-kernel@vger.kernel.org
3399S: Maintained
3400
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003401KMEMLEAK
3402P: Catalin Marinas
3403M: catalin.marinas@arm.com
3404L: linux-kernel@vger.kernel.org
3405S: Maintained
3406F: Documentation/kmemleak.txt
3407F: include/linux/kmemleak.h
3408F: mm/kmemleak.c
3409F: mm/kmemleak-test.c
3410
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003411KMEMTRACE
3412P: Eduard - Gabriel Munteanu
3413M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003414S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003415F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003416F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003417F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003418
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003419KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003420P: Ananth N Mavinakayanahalli
3421M: ananth@in.ibm.com
3422P: Anil S Keshavamurthy
3423M: anil.s.keshavamurthy@intel.com
3424P: David S. Miller
3425M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003426P: Masami Hiramatsu
3427M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003429F: Documentation/kprobes.txt
3430F: include/linux/kprobes.h
3431F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003432
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003433KS0108 LCD CONTROLLER DRIVER
3434P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003435M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003436W: http://miguelojeda.es/auxdisplay.htm
3437W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003439F: Documentation/auxdisplay/ks0108
3440F: drivers/auxdisplay/ks0108.c
3441F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003445S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003446F: Documentation/networking/lapb-module.txt
3447F: include/*/lapb.h
3448F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
3450LASI 53c700 driver for PARISC
3451P: James E.J. Bottomley
3452M: James.Bottomley@HansenPartnership.com
3453L: linux-scsi@vger.kernel.org
3454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003455F: Documentation/scsi/53c700.txt
3456F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
Richard Purdie263de9b2006-05-15 09:44:16 -07003458LED SUBSYSTEM
3459P: Richard Purdie
3460M: rpurdie@rpsys.net
3461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: drivers/leds/
3463F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465LEGO USB Tower driver
3466P: Juergen Stuber
3467M: starblue@users.sourceforge.net
3468L: legousb-devel@lists.sourceforge.net
3469W: http://legousb.sourceforge.net/
3470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Rusty Russell568a17f2007-10-25 14:12:24 +10003473LGUEST
3474P: Rusty Russell
3475M: rusty@rustcorp.com.au
3476L: lguest@ozlabs.org
3477W: http://lguest.ozlabs.org/
3478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: Documentation/lguest/
3480F: arch/x86/lguest/
3481F: drivers/lguest/
3482F: include/linux/lguest*.h
3483F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003484
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485LINUX FOR IBM pSERIES (RS/6000)
3486P: Paul Mackerras
3487M: paulus@au.ibm.com
3488W: http://www.ibm.com/linux/ltc/projects/ppc
3489S: Supported
3490
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003491LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003492P: Benjamin Herrenschmidt
3493M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003494P: Paul Mackerras
3495M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496W: http://www.penguinppc.org/
3497L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003498T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499S: Supported
3500
3501LINUX FOR POWER MACINTOSH
3502P: Benjamin Herrenschmidt
3503M: benh@kernel.crashing.org
3504W: http://www.penguinppc.org/
3505L: linuxppc-dev@ozlabs.org
3506S: Maintained
3507
Grant Likely77a76362008-07-12 12:11:43 -06003508LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003509P: Grant Likely
3510M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003512T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513S: Maintained
3514
3515LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003516P: Josh Boyer
3517M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518P: Matt Porter
3519M: mporter@kernel.crashing.org
3520W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003521L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003522T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523S: Maintained
3524
Grant Likely260c02a2007-10-02 12:15:34 +10003525LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3526P: Grant Likely
3527M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003528W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003529L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003530T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531S: Maintained
3532
Tom Rinie93adf12005-07-26 12:49:53 -07003533LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003534P: Vitaly Bordug
3535M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003536P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003537M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003538W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003539L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003540S: Maintained
3541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003543P: Kumar Gala
3544M: galak@kernel.crashing.org
3545W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003546L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003547S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Olof Johanssonab06ff32006-09-06 14:44:54 -05003549LINUX FOR POWERPC PA SEMI PWRFICIENT
3550P: Olof Johansson
3551M: olof@lixom.net
3552W: http://www.pasemi.com/
3553L: linuxppc-dev@ozlabs.org
3554S: Supported
3555
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556LINUX SECURITY MODULE (LSM) FRAMEWORK
3557P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003558M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003559L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003560T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561S: Supported
3562
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003563LLC (802.2)
3564P: Arnaldo Carvalho de Melo
3565M: acme@ghostprotocols.net
3566S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003567F: include/linux/llc.h
3568F: include/net/llc*
3569F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003570
Pavel Machek455fbdd2008-11-12 13:27:02 -08003571LIS3LV02D ACCELEROMETER DRIVER
3572P: Eric Piel
3573M: eric.piel@tremplin-utc.net
3574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003575F: Documentation/hwmon/lis3lv02d
3576F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003577
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578LM83 HARDWARE MONITOR DRIVER
3579P: Jean Delvare
3580M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003581L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003583F: Documentation/hwmon/lm83
3584F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586LM90 HARDWARE MONITOR DRIVER
3587P: Jean Delvare
3588M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003589L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003591F: Documentation/hwmon/lm90
3592F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003594LOCKDEP AND LOCKSTAT
3595P: Peter Zijlstra
3596M: peterz@infradead.org
3597P: Ingo Molnar
3598M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003599T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003600S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003601F: Documentation/lockdep*.txt
3602F: Documentation/lockstat.txt
3603F: include/linux/lockdep.h
3604F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003605
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003606LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607P: Richard Russon (FlatCap)
3608M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003609L: linux-ntfs-dev@lists.sourceforge.net
3610W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003612F: Documentation/ldm.txt
3613F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003615LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3616P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003617M: Eric.Moore@lsi.com
3618M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003619L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003620L: linux-scsi@vger.kernel.org
3621W: http://www.lsilogic.com/support
3622S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003623F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003624
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3626P: Matthew Wilcox
3627M: matthew@wil.cx
3628L: linux-scsi@vger.kernel.org
3629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003630F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Mike Frysinger81365c32008-10-29 14:01:12 -07003632LTP (Linux Test Project)
3633P: Subrata Modak
3634M: subrata@linux.vnet.ibm.com
3635P: Mike Frysinger
3636M: vapier@gentoo.org
3637L: ltp-list@lists.sourceforge.net (subscribers-only)
3638W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003639T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003640S: Maintained
3641
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003642M32R ARCHITECTURE
3643P: Hirokazu Takata
3644M: takata@linux-m32r.org
3645L: linux-m32r@ml.linux-m32r.org
3646L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3647W: http://www.linux-m32r.org/
3648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003649F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651M68K ARCHITECTURE
3652P: Geert Uytterhoeven
3653M: geert@linux-m68k.org
3654P: Roman Zippel
3655M: zippel@linux-m68k.org
3656L: linux-m68k@lists.linux-m68k.org
3657W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003658T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003661F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
3663M68K ON APPLE MACINTOSH
3664P: Joshua Thompson
3665M: funaho@jurai.org
3666W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003667L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003669F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
3671M68K ON HP9000/300
3672P: Philip Blundell
3673M: philb@gnu.org
3674W: http://www.tazenda.demon.co.uk/phil/linux-hp
3675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003676F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Jiri Benc64a327a2007-05-05 11:47:08 -07003678MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003679P: Johannes Berg
3680M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003681L: linux-wireless@vger.kernel.org
3682W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003683T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003685F: Documentation/networking/mac80211-injection.txt
3686F: include/net/mac80211.h
3687F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003688
Stefano Brivio1036d862007-12-23 04:46:27 +01003689MAC80211 PID RATE CONTROL
3690P: Stefano Brivio
3691M: stefano.brivio@polimi.it
3692P: Mattias Nissler
3693M: mattias.nissler@gmx.de
3694L: linux-wireless@vger.kernel.org
3695W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003696T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003698F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003699
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003700MACVLAN DRIVER
3701P: Patrick McHardy
3702M: kaber@trash.net
3703L: netdev@vger.kernel.org
3704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: drivers/net/macvlan.c
3706F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003707
Michael Kerriskfaf16682005-07-31 22:34:47 -07003708MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003709P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003710M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003711W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003712L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003713S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003714
Stefano Brivio74cda162007-11-19 20:27:46 +01003715MARVELL LIBERTAS WIRELESS DRIVER
3716P: Dan Williams
3717M: dcbw@redhat.com
3718L: libertas-dev@lists.infradead.org
3719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003720F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003721
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003722MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003723P: Lennert Buytenhek
3724M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003725L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003726S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003727F: drivers/net/mv643xx_eth.*
3728F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
Pierre Ossman2a695672009-03-16 19:52:26 +01003730MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3731P: Nicolas Pitre
3732M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003733S: Maintained
3734
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003735MARVELL YUKON / SYSKONNECT DRIVER
3736P: Mirko Lindner
3737M: mlindner@syskonnect.de
3738P: Ralph Roesler
3739M: rroesler@syskonnect.de
3740W: http://www.syskonnect.com
3741S: Supported
3742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743MATROX FRAMEBUFFER DRIVER
3744P: Petr Vandrovec
3745M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003746L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003748F: drivers/video/matrox/matroxfb_*
3749F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003751MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3752P: Hans J. Koch
3753M: hjk@linutronix.de
3754L: lm-sensors@lm-sensors.org
3755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: Documentation/hwmon/max6650
3757F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003758
Joe Perches127c49a2009-04-08 08:34:04 -07003759MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3760P: Mauro Carvalho Chehab
3761M: mchehab@infradead.org
3762P: LinuxTV.org Project
3763L: linux-media@vger.kernel.org
3764W: http://linuxtv.org
3765T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3766S: Maintained
3767F: Documentation/dvb/
3768F: Documentation/video4linux/
3769F: drivers/media/
3770F: include/media/
3771F: include/linux/dvb/
3772F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003773
3774MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003775P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003776M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003777L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003778W: http://megaraid.lsilogic.com
3779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003780F: Documentation/scsi/megaraid.txt
3781F: drivers/scsi/megaraid.*
3782F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003783
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784MEMORY MANAGEMENT
3785L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786W: http://www.linux-mm.org
3787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003788F: include/linux/mm.h
3789F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003790
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003791MEMORY RESOURCE CONTROLLER
3792P: Balbir Singh
3793M: balbir@linux.vnet.ibm.com
3794P: Pavel Emelyanov
3795M: xemul@openvz.org
3796P: KAMEZAWA Hiroyuki
3797M: kamezawa.hiroyu@jp.fujitsu.com
3798L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003800F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802MEMORY TECHNOLOGY DEVICES (MTD)
3803P: David Woodhouse
3804M: dwmw2@infradead.org
3805W: http://www.linux-mtd.infradead.org/
3806L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003807T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: drivers/mtd/
3810F: include/linux/mtd/
3811F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Michal Simekc6375b02009-03-27 14:25:52 +01003813MICROBLAZE ARCHITECTURE
3814P: Michal Simek
3815M: monstr@monstr.eu
3816L: microblaze-uclinux@itee.uq.edu.au
3817W: http://www.monstr.eu/fdt/
3818T: git git://git.monstr.eu/linux-2.6-microblaze.git
3819S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003820F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822MICROTEK X6 SCANNER
3823P: Oliver Neukum
3824M: oliver@neukum.name
3825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003826F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828MIPS
3829P: Ralf Baechle
3830M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003831W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003833T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003835F: Documentation/mips/
3836F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838MISCELLANEOUS MCA-SUPPORT
3839P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003840M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: Documentation/ia64/mca.txt
3843F: Documentation/mca.txt
3844F: drivers/mca/
3845F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
3847MODULE SUPPORT
3848P: Rusty Russell
3849M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: include/linux/module.h
3852F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
3854MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3855P: Stelian Pop
3856M: stelian@popies.net
3857W: http://popies.net/meye/
3858S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003859F: Documentation/video4linux/meye.txt
3860F: drivers/media/video/meye.*
3861F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
Pavel Pisac58ff042007-05-16 01:10:41 +02003863MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3864P: Pavel Pisa
3865M: ppisa@pikron.com
3866L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003868F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870MOUSE AND MISC DEVICES [GENERAL]
3871P: Alessandro Rubini
3872M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003874F: drivers/input/mouse/
3875F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Jiri Slabyb9705b62008-04-30 00:53:48 -07003877MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003878P: Jiri Slaby
3879M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003881F: Documentation/serial/moxa-smartio
3882F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003883
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003884MSI LAPTOP SUPPORT
3885P: Lennart Poettering
3886M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003887W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003888W: http://0pointer.de/lennart/tchibo.html
3889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003890F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003891
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003892MULTIFUNCTION DEVICES (MFD)
3893P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003894M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003895T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003896S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003897F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003898
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003899MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003900P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003901M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: drivers/mmc/
3904F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003905
David Brownell15a05802007-08-08 09:12:54 -07003906MULTIMEDIA CARD (MMC) ETC. OVER SPI
3907P: David Brownell
3908M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003909S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003910F: drivers/mmc/host/mmc_spi.c
3911F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003912
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913MULTISOUND SOUND DRIVER
3914P: Andrew Veliath
3915M: andrewtv@usa.net
3916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003917F: Documentation/sound/oss/MultiSound
3918F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
Jiri Slabyd7354102006-12-08 02:38:35 -08003920MULTITECH MULTIPORT CARD (ISICOM)
3921P: Jiri Slaby
3922M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003924F: drivers/char/isicom.c
3925F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003926
Felipe Balbi550a7372008-07-24 12:27:36 +03003927MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003928P: Felipe Balbi
3929M: felipe.balbi@nokia.com
3930L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003931T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003933F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003934
Brice Goglin2d3cf582008-05-17 12:45:36 +02003935MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3936P: Andrew Gallatin
3937M: gallatin@myri.com
3938P: Brice Goglin
3939M: brice@myri.com
3940L: netdev@vger.kernel.org
3941W: http://www.myri.com/scs/download-Myri10GE.html
3942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003946P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947M: thockin@hockin.org
3948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003949F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951NCP FILESYSTEM
3952P: Petr Vandrovec
3953M: vandrove@vc.cvut.cz
3954L: linware@sh.cvut.cz
3955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003956F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
3958NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3959P: James E.J. Bottomley
3960M: James.Bottomley@HansenPartnership.com
3961L: linux-scsi@vger.kernel.org
3962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003963F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003965NETEFFECT IWARP RNIC DRIVER (IW_NES)
3966P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003967M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003968P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003969M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003970L: general@lists.openfabrics.org
3971W: http://www.neteffect.com
3972S: Supported
3973F: drivers/infiniband/hw/nes/
3974
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003975NETEM NETWORK EMULATOR
3976P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003977M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003978L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003980F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003981
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003982NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003983P: Ramkrishna Vepa
3984M: ram.vepa@neterion.com
3985P: Rastapur Santosh
3986M: santosh.rastapur@neterion.com
3987P: Sivakumar Subramani
3988M: sivakumar.subramani@neterion.com
3989P: Sreenivasa Honnur
3990M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003991P: Anil Murthy
3992M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003993L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003994W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3995W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003997F: Documentation/networking/s2io.txt
3998F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000NETFILTER/IPTABLES/IPCHAINS
4001P: Rusty Russell
4002P: Marc Boucher
4003P: James Morris
4004P: Harald Welte
4005P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004006P: Patrick McHardy
4007M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004008L: netfilter-devel@vger.kernel.org
4009L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004010L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011W: http://www.netfilter.org/
4012W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004014F: include/linux/netfilter*
4015F: include/linux/netfilter/
4016F: include/net/netfilter/
4017F: net/*/netfilter.c
4018F: net/*/netfilter/
4019F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Paul Moore4cc67732006-09-25 15:57:13 -07004021NETLABEL
4022P: Paul Moore
4023M: paul.moore@hp.com
4024W: http://netlabel.sf.net
4025L: netdev@vger.kernel.org
4026S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004027F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004028F: include/net/netlabel.h
4029F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004030
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031NETROM NETWORK LAYER
4032P: Ralf Baechle
4033M: ralf@linux-mips.org
4034L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004035W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004037F: include/linux/netrom.h
4038F: include/net/netrom.h
4039F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004041NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042P: Paul Clements
4043M: Paul.Clements@steeleye.com
4044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004045F: Documentation/blockdev/nbd.txt
4046F: drivers/block/nbd.c
4047F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
4049NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004050P: David S. Miller
4051M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004052L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004053W: http://www.linuxfoundation.org/en/Net
4054T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004056F: net/
4057F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
4059NETWORKING [IPv4/IPv6]
4060P: David S. Miller
4061M: davem@davemloft.net
4062P: Alexey Kuznetsov
4063M: kuznet@ms2.inr.ac.ru
4064P: Pekka Savola (ipv6)
4065M: pekkas@netcore.fi
4066P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004067M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068P: Hideaki YOSHIFUJI
4069M: yoshfuji@linux-ipv6.org
4070P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004071M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004072L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004073T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004075F: net/ipv4/
4076F: net/ipv6/
4077F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
James Morris10e2ff12007-08-25 14:41:28 -07004079NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4080P: Paul Moore
4081M: paul.moore@hp.com
4082L: netdev@vger.kernel.org
4083S: Maintained
4084
John W. Linville29f8f632006-01-18 14:52:48 -08004085NETWORKING [WIRELESS]
4086P: John W. Linville
4087M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004088L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004089T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004091F: net/wireless/
4092F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004093F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004094
Joe Perches788873a2009-04-16 09:38:45 +00004095NETWORKING DRIVERS
4096L: netdev@vger.kernel.org
4097W: http://www.linuxfoundation.org/en/Net
4098T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4099S: Odd Fixes
4100F: drivers/net/
4101
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004102NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004103P: Dhananjay Phadke
4104M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004105L: netdev@vger.kernel.org
4106W: http://www.netxen.com
4107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004108F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004109
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004110NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004112M: Trond.Myklebust@netapp.com
4113L: linux-nfs@vger.kernel.org
4114W: http://client.linux-nfs.org
4115T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004117F: fs/lockd/
4118F: fs/nfs/
4119F: fs/nfs_common/
4120F: net/sunrpc/
4121F: include/linux/lockd/
4122F: include/linux/nfs*
4123F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
4125NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004126P: Jan-Pascal van Best
4127M: janpascal@vanbest.org
4128P: Andreas Mohr
4129M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004132F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004134NILFS2 FILESYSTEM
4135P: KONISHI Ryusuke
4136M: konishi.ryusuke@lab.ntt.co.jp
4137L: users@nilfs.org
4138W: http://www.nilfs.org/en/
4139S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004140F: Documentation/filesystems/nilfs2.txt
4141F: fs/nilfs2/
4142F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4145P: YOKOTA Hiroshi
4146M: yokota@netlab.is.tsukuba.ac.jp
4147W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004149F: Documentation/scsi/NinjaSCSI.txt
4150F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
4152NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4153P: GOTO Masanori
4154M: gotom@debian.or.jp
4155P: YOKOTA Hiroshi
4156M: yokota@netlab.is.tsukuba.ac.jp
4157W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004159F: Documentation/scsi/NinjaSCSI.txt
4160F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162NTFS FILESYSTEM
4163P: Anton Altaparmakov
4164M: aia21@cantab.net
4165L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004166W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004167T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/filesystems/ntfs.txt
4170F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004172NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004173P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004174M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004175L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/video/riva/
4178F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Tony Lindgrenf5525782009-05-28 13:23:53 -07004180OMAP SUPPORT
4181P: Tony Lindgren <tony@atomide.com>
4182M: tony@atomide.com
4183L: linux-omap@vger.kernel.org
4184W: http://www.muru.com/linux/omap/
4185W: http://linux.omap.com/
4186T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4187S: Maintained
4188F: arch/arm/*omap*
4189
4190OMAP CLOCK FRAMEWORK SUPPORT
4191P: Paul Walmsley
4192M: paul@pwsan.com
4193L: linux-omap@vger.kernel.org
4194S: Maintained
4195F: arch/arm/*omap*/*clock*
4196
4197OMAP POWER MANAGEMENT SUPPORT
4198P: Kevin Hilman
4199M: khilman@deeprootsystems.com
4200L: linux-omap@vger.kernel.org
4201S: Maintained
4202F: arch/arm/*omap*/*pm*
4203
4204OMAP AUDIO SUPPORT
4205P: Jarkko Nikula
4206M: jhnikula@gmail.com
4207L: alsa-devel@alsa-project.org (subscribers-only)
4208L: linux-omap@vger.kernel.org
4209S: Maintained
4210F: sound/soc/omap/
4211
4212OMAP FRAMEBUFFER SUPPORT
4213P: Imre Deak
4214M: imre.deak@nokia.com
4215L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4216L: linux-omap@vger.kernel.org
4217S: Maintained
4218F: drivers/video/omap/
4219
4220OMAP MMC SUPPORT
4221P: Jarkko Lavinen
4222M: jarkko.lavinen@nokia.com
4223L: linux-kernel@vger.kernel.org
4224L: linux-omap@vger.kernel.org
4225S: Maintained
4226F: drivers/mmc/host/*omap*
4227
4228OMAP RANDOM NUMBER GENERATOR SUPPORT
4229P: Deepak Saxena
4230M: dsaxena@plexity.net
4231S: Maintained
4232F: drivers/char/hw_random/omap-rng.c
4233
4234OMAP USB SUPPORT
4235P: Felipe Balbi
4236M: felipe.balbi@nokia.com
4237P: David Brownell
4238M: dbrownell@users.sourceforge.net
4239L: linux-usb@vger.kernel.org
4240L: linux-omap@vger.kernel.org
4241S: Maintained
4242
Bob Copeland0ad122d2008-07-25 19:45:18 -07004243OMFS FILESYSTEM
4244P: Bob Copeland
4245M: me@bobcopeland.com
4246L: linux-karma-devel@lists.sourceforge.net
4247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004248F: Documentation/filesystems/omfs.txt
4249F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004250
Harald Weltec1986ee2005-11-13 16:06:29 -08004251OMNIKEY CARDMAN 4000 DRIVER
4252P: Harald Welte
4253M: laforge@gnumonks.org
4254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004255F: drivers/char/pcmcia/cm4000_cs.c
4256F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004257
Harald Welte77c44ab2005-11-13 16:06:26 -08004258OMNIKEY CARDMAN 4040 DRIVER
4259P: Harald Welte
4260M: laforge@gnumonks.org
4261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004262F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004263
Jonathan Corbet77d51402007-03-22 19:44:17 -03004264OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004265P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004266M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004267L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004268T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004270F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004271
Thomas Gleixner431bca72007-05-02 09:31:35 +02004272ONENAND FLASH DRIVER
4273P: Kyungmin Park
4274M: kyungmin.park@samsung.com
4275L: linux-mtd@lists.infradead.org
4276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004277F: drivers/mtd/onenand/
4278F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280ONSTREAM SCSI TAPE DRIVER
4281P: Willem Riede
4282M: osst@riede.org
4283L: osst-users@lists.sourceforge.net
4284L: linux-scsi@vger.kernel.org
4285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/scsi/osst*
4287F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004289OPENCORES I2C BUS DRIVER
4290P: Peter Korsgaard
4291M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004292L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004294F: Documentation/i2c/busses/i2c-ocores
4295F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004296
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004298P: Robert Richter
4299M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300L: oprofile-list@lists.sf.net
4301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004302F: arch/*/oprofile/
4303F: drivers/oprofile/
4304F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004306ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4307P: Mark Fasheh
4308M: mfasheh@suse.com
4309P: Joel Becker
4310M: joel.becker@oracle.com
4311L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4312W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004313T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004314S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004315F: Documentation/filesystems/ocfs2.txt
4316F: Documentation/filesystems/dlmfs.txt
4317F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004318
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319ORINOCO DRIVER
4320P: Pavel Roskin
4321M: proski@gnu.org
4322P: David Gibson
4323M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004324L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004325L: orinoco-users@lists.sourceforge.net
4326L: orinoco-devel@lists.sourceforge.net
4327W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Boaz Harrosh68274792009-01-25 17:24:14 +02004331OSD LIBRARY
4332P: Boaz Harrosh
4333M: bharrosh@panasas.com
4334P: Benny Halevy
4335M: bhalevy@panasas.com
4336L: osd-dev@open-osd.org
4337W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004338T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004339S: Maintained
4340
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004341P54 WIRELESS DRIVER
4342P: Michael Wu
4343M: flamingice@sourmilk.net
4344L: linux-wireless@vger.kernel.org
4345W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004346T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004348F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004349
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004350PA SEMI ETHERNET DRIVER
4351P: Olof Johansson
4352M: olof@lixom.net
4353L: netdev@vger.kernel.org
4354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004355F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004356
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004357PA SEMI SMBUS DRIVER
4358P: Olof Johansson
4359M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004360L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004362F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004363
Harald Welte709ee532008-09-23 17:46:57 +02004364PANASONIC LAPTOP ACPI EXTRAS DRIVER
4365P: Harald Welte
4366M: laforge@gnumonks.org
4367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004368F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004369
David Howells4fa97182008-10-13 10:42:44 +01004370PANASONIC MN10300/AM33 PORT
4371P: David Howells
4372M: dhowells@redhat.com
4373P: Koichi Yasutake
4374M: yasutake.koichi@jp.panasonic.com
4375L: linux-am33-list@redhat.com (moderated for non-subscribers)
4376W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: Documentation/mn10300/
4379F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004380
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004382L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004383S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004384F: drivers/parport/
4385F: include/linux/parport*.h
4386F: drivers/char/ppdev.c
4387F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004389PARAVIRT_OPS INTERFACE
4390P: Jeremy Fitzhardinge
4391M: jeremy@xensource.com
4392P: Chris Wright
4393M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004394P: Alok Kataria
4395M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004396P: Rusty Russell
4397M: rusty@rustcorp.com.au
4398L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004400F: Documentation/ia64/paravirt_ops.txt
4401F: arch/*/kernel/paravirt*
4402F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004403
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4405P: Tim Waugh
4406M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004407L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408W: http://www.torque.net/linux-pp.html
4409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004410F: Documentation/blockdev/paride.txt
4411F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412
4413PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004414P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004415M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004416P: Helge Deller
4417M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004418L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004420T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004422F: arch/parisc/
4423F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
Jim Cromie1662d322006-10-06 00:43:59 -07004425PC87360 HARDWARE MONITORING DRIVER
4426P: Jim Cromie
4427M: jim.cromie@gmail.com
4428L: lm-sensors@lm-sensors.org
4429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004430F: Documentation/hwmon/pc87360
4431F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004432
4433PC8736x GPIO DRIVER
4434P: Jim Cromie
4435M: jim.cromie@gmail.com
4436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004438
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004439PCA9532 LED DRIVER
4440P: Riku Voipio
4441M: riku.voipio@iki.fi
4442S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004443F: drivers/leds/leds-pca9532.c
4444F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004445
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004446PCI ERROR RECOVERY
4447P: Linas Vepstas
4448M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004449L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004450S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/PCI/pci-error-recovery.txt
4452F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004453
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004455P: Jesse Barnes
4456M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004457L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004458T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004460F: Documentation/PCI/
4461F: drivers/pci/
4462F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004464PCIE HOTPLUG DRIVER
4465P: Kristen Carlson Accardi
4466M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004467L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004469F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004470
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004472P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004473L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004474W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004475T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004477F: Documentation/pcmcia/
4478F: drivers/pcmcia/
4479F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
4481PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004482P: Don Fry
4483M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004484L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004486F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004488PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004489P: Balbir Singh
4490M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004492F: include/linux/delayacct.h
4493F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004494
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004495PERFORMANCE COUNTER SUBSYSTEM
4496P: Peter Zijlstra
4497M: a.p.zijlstra@chello.nl
4498P: Paul Mackerras
4499M: paulus@samba.org
4500P: Ingo Molnar
4501M: mingo@elte.hu
4502L: linux-kernel@vger.kernel.org
4503S: Supported
4504
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004505PERSONALITY HANDLING
4506P: Christoph Hellwig
4507M: hch@infradead.org
4508L: linux-abi-devel@lists.sourceforge.net
4509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004510F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004511
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004513P: Joern Engel
4514M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515L: linux-mtd@lists.infradead.org
4516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004517F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Peter Osterlund249a6772005-09-27 21:45:30 -07004519PKTCDVD DRIVER
4520P: Peter Osterlund
4521M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004523F: drivers/block/pktcdvd.c
4524F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004527P: Thomas Gleixner
4528M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004530F: fs/timerfd.c
4531F: include/linux/timer*
4532F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
Anton Vorontsov3be86142007-07-15 04:43:36 +04004534POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4535P: Anton Vorontsov
4536M: cbou@mail.ru
4537P: David Woodhouse
4538M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004539T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: include/linux/power_supply.h
4542F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004543
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544PNP SUPPORT
4545P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004546M: abelay@mit.edu
4547P: Bjorn Helgaas
4548M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004550F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Vitaly Wool999445d2007-01-04 13:07:03 +01004552PNXxxxx I2C DRIVER
4553P: Vitaly Wool
4554M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004555L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004557F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004558
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559PPP PROTOCOL DRIVERS AND COMPRESSORS
4560P: Paul Mackerras
4561M: paulus@samba.org
4562L: linux-ppp@vger.kernel.org
4563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
4566PPP OVER ATM (RFC 2364)
4567P: Mitchell Blank Jr
4568M: mitch@sfgoth.com
4569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: net/atm/pppoatm.c
4571F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
4573PPP OVER ETHERNET
4574P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004575M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004577F: drivers/net/pppoe.c
4578F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
James Chapmana6d23702007-06-27 15:53:17 -07004580PPP OVER L2TP
4581P: James Chapman
4582M: jchapman@katalix.com
4583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004584F: drivers/net/pppol2tp.c
4585F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004586
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004587PPS SUPPORT
4588P: Rodolfo Giometti
4589M: giometti@enneenne.com
4590W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4591L: linuxpps@ml.enneenne.com (subscribers-only)
4592S: Maintained
4593
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594PREEMPTIBLE KERNEL
4595P: Robert Love
4596M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597L: kpreempt-tech@lists.sourceforge.net
4598W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004600F: Documentation/preempt-locking.txt
4601F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
4603PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004604P: Luis R. Rodriguez
4605M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004606L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607W: http://prism54.org
4608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004609F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610
4611PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4612P: Peter Denison
4613M: promise@pnd-pc.demon.co.uk
4614W: http://www.pnd-pc.demon.co.uk/promise/
4615S: Maintained
4616
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004617PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4618P: Mikael Pettersson
4619M: mikpe@it.uu.se
4620L: linux-ide@vger.kernel.org
4621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004623
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004624PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004625P: Geoff Levand
4626M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004627L: netdev@vger.kernel.org
4628L: cbe-oss-dev@ozlabs.org
4629S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004630F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004631
Geoff Levandf58a9d12006-11-23 00:46:51 +01004632PS3 PLATFORM SUPPORT
4633P: Geoff Levand
4634M: geoffrey.levand@am.sony.com
4635L: linuxppc-dev@ozlabs.org
4636L: cbe-oss-dev@ozlabs.org
4637S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004638F: arch/powerpc/boot/ps3*
4639F: arch/powerpc/include/asm/lv1call.h
4640F: arch/powerpc/include/asm/ps3*.h
4641F: arch/powerpc/platforms/ps3/
4642F: drivers/*/ps3*
4643F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004644F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004645F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004646F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004647
Jim Pariscffb4add2009-01-06 11:32:10 +00004648PS3VRAM DRIVER
4649P: Jim Paris
4650M: jim@jtan.com
4651L: cbe-oss-dev@ozlabs.org
4652S: Maintained
4653
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004654PTRACE SUPPORT
4655P: Roland McGrath
4656M: roland@redhat.com
4657P: Oleg Nesterov
4658M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004659S: Maintained
4660F: include/asm-generic/syscall.h
4661F: include/linux/ptrace.h
4662F: include/linux/regset.h
4663F: include/linux/tracehook.h
4664F: kernel/ptrace.c
4665
Michael Krufky83202042006-07-03 00:24:18 -07004666PVRUSB2 VIDEO4LINUX DRIVER
4667P: Mike Isely
4668M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004669L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004670L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004671W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004672T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: Documentation/video4linux/README.pvrusb2
4675F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004676
Eric Miao30ec2612008-06-12 15:21:41 -07004677PXA2xx/PXA3xx SUPPORT
4678P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004679M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004680P: Russell King
4681M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004684F: arch/arm/mach-pxa/
4685F: drivers/pcmcia/pxa2xx*
4686F: drivers/spi/pxa2xx*
4687F: drivers/usb/gadget/pxa2*
4688F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004689F: sound/arm/pxa*
4690F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004692PXA168 SUPPORT
4693P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004694M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004695P: Jason Chagas
4696M: jason.chagas@marvell.com
4697L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004698T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004699S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004700
Eric Miao5fa82eb2009-03-20 12:52:24 +08004701PXA910 SUPPORT
4702P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004703M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004704L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004705T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004706S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004707
Pierre Ossman272f1332007-05-14 21:25:26 +02004708PXA MMCI DRIVER
4709S: Orphan
4710
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004711PXA RTC DRIVER
4712P: Robert Jarzmik
4713M: robert.jarzmik@free.fr
4714L: rtc-linux@googlegroups.com
4715S: Maintained
4716
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717QLOGIC QLA2XXX FC-SCSI DRIVER
4718P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004719M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720L: linux-scsi@vger.kernel.org
4721S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004722F: Documentation/scsi/LICENSE.qla2xxx
4723F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
Ron Mercer5a4faa82006-07-25 00:40:21 -07004725QLOGIC QLA3XXX NETWORK DRIVER
4726P: Ron Mercer
4727M: linux-driver@qlogic.com
4728L: netdev@vger.kernel.org
4729S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004730F: Documentation/networking/LICENSE.qla3xxx
4731F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004732
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004733QLOGIC QLGE 10Gb ETHERNET DRIVER
4734P: Ron Mercer
4735M: linux-driver@qlogic.com
4736M: ron.mercer@qlogic.com
4737L: netdev@vger.kernel.org
4738S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004739F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004740
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741QNX4 FILESYSTEM
4742P: Anders Larsen
4743M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744W: http://www.alarsen.net/linux/qnx4fs/
4745S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004746F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004747F: include/linux/qnx4_fs.h
4748F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
4750RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004751P: Benjamin Herrenschmidt
4752M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004753L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004755F: drivers/video/aty/radeon*
4756F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
4758RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004759P: Paul Mackerras
4760M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004761L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004763F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764
Randy Dunlape7839f22008-10-12 16:11:45 -07004765RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004766P: rt2x00 project
4767L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004768L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004769W: http://rt2x00.serialmonkey.com/
4770S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004771T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004772F: drivers/net/wireless/rt2x00/
4773
Nick Piggin9db55792008-02-08 04:19:49 -08004774RAMDISK RAM BLOCK DEVICE DRIVER
4775P: Nick Piggin
4776M: npiggin@suse.de
4777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004778F: Documentation/blockdev/ramdisk.txt
4779F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004780
Matt Mackall9e95ce22005-04-16 15:25:56 -07004781RANDOM NUMBER DRIVER
4782P: Matt Mackall
4783M: mpm@selenic.com
4784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004785F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004786
Matt Porter394b7012005-11-07 01:00:15 -08004787RAPIDIO SUBSYSTEM
4788P: Matt Porter
4789M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004791F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004792
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004793RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4794P: Corey Thomas
4795M: coreythomas@charter.net
4796L: linux-wireless@vger.kernel.org
4797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004799
4800RCUTORTURE MODULE
4801P: Josh Triplett
4802M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004803P: Paul E. McKenney
4804M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: Documentation/RCU/torture.txt
4807F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004808
Florian Fainellic1f766b2008-02-06 22:39:44 +01004809RDC R-321X SoC
4810P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004811M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004812S: Maintained
4813
Florian Fainellidb17f392007-12-19 11:30:30 +01004814RDC R6040 FAST ETHERNET DRIVER
4815P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004816M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004817L: netdev@vger.kernel.org
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004820
Andy Grovera09ed662009-02-24 15:30:41 +00004821RDS - RELIABLE DATAGRAM SOCKETS
4822P: Andy Grover
4823M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004824L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004826F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004827
Josh Triplett595182b2006-10-04 02:17:21 -07004828READ-COPY UPDATE (RCU)
4829P: Dipankar Sarma
4830M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004831P: Paul E. McKenney
4832M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004833W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004834S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004835F: Documentation/RCU/rcu.txt
4836F: Documentation/RCU/rcuref.txt
4837F: include/linux/rcupdate.h
4838F: include/linux/srcu.h
4839F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841REAL TIME CLOCK DRIVER
4842P: Paul Gortmaker
4843M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004845F: Documentation/rtc.txt
4846F: drivers/rtc/
4847F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004849REAL TIME CLOCK (RTC) SUBSYSTEM
4850P: Alessandro Zummo
4851M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004852L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004853S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004854F: Documentation/rtc.txt
4855F: drivers/rtc/
4856F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004857
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004859L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004861F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
Ivo van Doorne08976452008-04-12 19:23:55 +02004863RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004864P: Johannes Berg
4865M: johannes@sipsolutions.net
4866L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004867S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004868F Documentation/rfkill.txt
4869F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004870
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004871RISCOM8 DRIVER
4872S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004873F: Documentation/serial/riscom8.txt
4874F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004875
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876ROCKETPORT DRIVER
4877P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878W: http://www.comtrol.com
4879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004880F: Documentation/serial/rocket.txt
4881F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882
4883ROSE NETWORK LAYER
4884P: Ralf Baechle
4885M: ralf@linux-mips.org
4886L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004887W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004889F: include/linux/rose.h
4890F: include/net/rose.h
4891F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
Larry Finger59840482008-11-12 17:13:09 -06004893RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004894P: John W. Linville
4895M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004896L: linux-wireless@vger.kernel.org
4897W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004898T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004900F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004901
Larry Finger59840482008-11-12 17:13:09 -06004902RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004903P: Herton Ronaldo Krzesinski
4904M: herton@mandriva.com.br
4905P: Hin-Tak Leung
4906M: htl10@users.sourceforge.net
4907P: Larry Finger
4908M: Larry.Finger@lwfinger.net
4909L: linux-wireless@vger.kernel.org
4910W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004911T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004913F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004914
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004915S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004916P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004917M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004918L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004920F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004921
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922S390
4923P: Martin Schwidefsky
4924M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004925P: Heiko Carstens
4926M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004928L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004929W: http://www.ibm.com/developerworks/linux/linux390/
4930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004931F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004932
4933S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004934P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004935M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004936P: Frank Blaschka
4937M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004938M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004939L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004940W: http://www.ibm.com/developerworks/linux/linux390/
4941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004942F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004943
Felix Beckfeed9b62009-03-26 15:24:23 +01004944S390 ZCRYPT DRIVER
4945P: Felix Beck
4946M: felix.beck@de.ibm.com
4947P: Ralph Wuerthner
4948M: ralph.wuerthner@de.ibm.com
4949M: linux390@de.ibm.com
4950L: linux-s390@vger.kernel.org
4951S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004952F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004953
Heiko Carstens5238da42006-02-11 17:56:01 -08004954S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004955P: Christof Schmitt
4956M: christof.schmitt@de.ibm.com
4957P: Martin Peschke
4958M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004959M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004960L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004961W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004963F: Documentation/s390/zfcpdump.txt
4964F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965
Ursula Braundd96df22007-09-19 13:09:02 +02004966S390 IUCV NETWORK LAYER
4967P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004968M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004969M: linux390@de.ibm.com
4970L: linux-s390@vger.kernel.org
4971W: http://www.ibm.com/developerworks/linux/linux390/
4972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004973F: drivers/s390/net/*iucv*
4974F: include/net/iucv/
4975F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004976
Ben Dooks4dde7f72008-06-30 22:40:38 +01004977S3C24XX SD/MMC Driver
4978P: Ben Dooks
4979M: ben-linux@fluff.org
4980L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004981S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004982F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004983
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984SAA7146 VIDEO4LINUX-2 DRIVER
4985P: Michael Hunold
4986M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004987L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004988T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989W: http://www.mihu.de/linux/saa7146
4990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004991F: drivers/media/common/saa7146*
4992F: drivers/media/video/*7146*
4993F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995SC1200 WDT DRIVER
4996P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004997M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004999F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
5001SCHEDULER
5002P: Ingo Molnar
5003M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005004P: Peter Zijlstra
5005M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005007F: kernel/sched*
5008F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009
5010SCSI CDROM DRIVER
5011P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005012M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013L: linux-scsi@vger.kernel.org
5014W: http://www.kernel.dk
5015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005016F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017
5018SCSI SG DRIVER
5019P: Doug Gilbert
5020M: dgilbert@interlog.com
5021L: linux-scsi@vger.kernel.org
5022W: http://www.torque.net/sg
5023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005024F: drivers/scsi/sg.c
5025F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027SCSI SUBSYSTEM
5028P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005029M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005031T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5032T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5033T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005035F: drivers/scsi/
5036F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
5038SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005039P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040M: Kai.Makisara@kolumbus.fi
5041L: linux-scsi@vger.kernel.org
5042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005043F: Documentation/scsi/st.txt
5044F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
5046SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005047P: Vlad Yasevich
5048M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005049P: Sridhar Samudrala
5050M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005051L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005052W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005053S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005054F: Documentation/networking/sctp.txt
5055F: include/linux/sctp.h
5056F: include/net/sctp/
5057F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005060P: Jim Cromie
5061M: jim.cromie@gmail.com
5062S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005063F: Documentation/i2c/busses/scx200_acb
5064F: arch/x86/kernel/scx200_32.c
5065F: drivers/watchdog/scx200_wdt.c
5066F: drivers/i2c/busses/scx200*
5067F: drivers/mtd/maps/scx200_docflash.c
5068F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005069
5070SCx200 GPIO DRIVER
5071P: Jim Cromie
5072M: jim.cromie@gmail.com
5073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005074F: drivers/char/scx200_gpio.c
5075F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005076
5077SCx200 HRT CLOCKSOURCE DRIVER
5078P: Jim Cromie
5079M: jim.cromie@gmail.com
5080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005081F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Sascha Sommer6a369132008-07-15 14:21:29 +02005083SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5084P: Sascha Sommer
5085M: saschasommer@freenet.de
5086L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5087S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005088F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005089
Randy Dunlape7839f22008-10-12 16:11:45 -07005090SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005091P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005092M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005093L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005094S: Maintained
5095
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005096SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5097P: Anton Vorontsov
5098M: avorontsov@ru.mvista.com
5099L: linuxppc-dev@ozlabs.org
5100L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005102F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Ben Dooks0d1bb412009-06-14 13:52:37 +01005104SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5105P: Ben Dooks
5106M: ben-linux@fluff.org
5107L: sdhci-devel@lists.ossman.eu
5108S: Maintained
5109F: drivers/mmc/host/sdhci-s3c.c
5110
James Morris8711cca2008-12-04 03:19:45 +11005111SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005112P: James Morris
5113M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005114L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005115T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005116W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005117S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005118F: security/
James Morris8711cca2008-12-04 03:19:45 +11005119
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120SECURITY CONTACT
5121P: Security Officers
5122M: security@kernel.org
5123S: Supported
5124
5125SELINUX SECURITY MODULE
5126P: Stephen Smalley
5127M: sds@tycho.nsa.gov
5128P: James Morris
5129M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005130P: Eric Paris
5131M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005132L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005133W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005134T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005136F: include/linux/selinux*
5137F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
Jiri Slabycef2cf02007-05-08 00:31:45 -07005139SENSABLE PHANTOM
5140P: Jiri Slaby
5141M: jirislaby@gmail.com
5142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005143F: drivers/misc/phantom.c
5144F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005145
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005146SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147P: Jeff Garzik
5148M: jgarzik@pobox.com
5149L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005150T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005152F: drivers/ata/
5153F: include/linux/ata.h
5154F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005156SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5157P: Sathya Perla
5158M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005159P: Subbu Seetharaman
5160M: subbus@serverengines.com
5161L: netdev@vger.kernel.org
5162W: http://www.serverengines.com
5163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005164F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005165
Ben Hutchings8ceee662008-04-27 12:55:59 +01005166SFC NETWORK DRIVER
5167P: Steve Hodgson
5168P: Ben Hutchings
5169P: Robert Stonehouse
5170M: linux-net-drivers@solarflare.com
5171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005173
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005174SGI GRU DRIVER
5175P: Jack Steiner
5176M: steiner@sgi.com
5177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005178F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005179
5180SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5181P: Pat Gefre
5182M: pfg@sgi.com
5183L: linux-ia64@vger.kernel.org
5184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005185F: Documentation/ia64/serial.txt
5186F: drivers/serial/ioc?_serial.c
5187F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005188
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189SGI VISUAL WORKSTATION 320 AND 540
5190P: Andrey Panin
5191M: pazke@donpac.ru
5192L: linux-visws-devel@lists.sf.net
5193W: http://linux-visws.sf.net
5194S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005195F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
Jack Steiner75312612008-08-15 00:40:42 -07005197SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005198P: Robin Holt
5199M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005201F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005203SHARP LH SUPPORT (LH7952X & LH7A40X)
5204P: Marc Singer
5205M: elf@buici.com
5206W: http://projects.buici.com/arm
5207L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005209F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5210F: arch/arm/mach-lh7a40x/
5211F: drivers/serial/serial_lh7a40x.c
5212F: drivers/usb/gadget/lh7a40*
5213F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005214
5215SHPC HOTPLUG DRIVER
5216P: Kristen Carlson Accardi
5217M: kristen.c.accardi@intel.com
5218L: linux-pci@vger.kernel.org
5219S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005220F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222SIMTEC EB110ATX (Chalice CATS)
5223P: Ben Dooks
5224P: Vincent Sanders
5225M: support@simtec.co.uk
5226W: http://www.simtec.co.uk/products/EB110ATX/
5227S: Supported
5228
5229SIMTEC EB2410ITX (BAST)
5230P: Ben Dooks
5231P: Vincent Sanders
5232M: support@simtec.co.uk
5233W: http://www.simtec.co.uk/products/EB2410ITX/
5234S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005235F: arch/arm/mach-s3c2410/
5236F: drivers/*/*s3c2410*
5237F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Francois Romieu92aab3c2005-07-30 13:11:18 +02005239SIS 190 ETHERNET DRIVER
5240P: Francois Romieu
5241M: romieu@fr.zoreil.com
5242L: netdev@vger.kernel.org
5243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005244F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005245
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246SIS 900/7016 FAST ETHERNET DRIVER
5247P: Daniele Venzano
5248M: venza@brownhat.org
5249W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005250L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005252F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005254SIS 96X I2C/SMBUS DRIVER
5255P: Mark M. Hoffman
5256M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005257L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005259F: Documentation/i2c/busses/i2c-sis96x
5260F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005261
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262SIS FRAMEBUFFER DRIVER
5263P: Thomas Winischhofer
5264M: thomas@winischhofer.net
5265W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005267F: Documentation/fb/sisfb.txt
5268F: drivers/video/sis/
5269F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270
5271SIS USB2VGA DRIVER
5272P: Thomas Winischhofer
5273M: thomas@winischhofer.net
5274W: http://www.winischhofer.at/linuxsisusbvga.shtml
5275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005276F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005278SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5279P: Stephen Hemminger
5280M: shemminger@linux-foundation.org
5281L: netdev@vger.kernel.org
5282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005283F: drivers/net/skge.*
5284F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005285
Christoph Lameter415ad262007-07-26 10:40:56 -07005286SLAB ALLOCATOR
5287P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005288M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005289P: Pekka Enberg
5290M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005291P: Matt Mackall
5292M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005293L: linux-mm@kvack.org
5294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: include/linux/sl?b*.h
5296F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005297
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298SMC91x ETHERNET DRIVER
5299P: Nicolas Pitre
5300M: nico@cam.org
5301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005302F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005304SMSC47B397 HARDWARE MONITOR DRIVER
5305P: Mark M. Hoffman
5306M: mhoffman@lightlink.com
5307L: lm-sensors@lm-sensors.org
5308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005309F: Documentation/hwmon/smsc47b397
5310F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005311
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005312SMSC911x ETHERNET DRIVER
5313P: Steve Glendinning
5314M: steve.glendinning@smsc.com
5315L: netdev@vger.kernel.org
5316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005317F: include/linux/smsc911x.h
5318F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005319
Steve Glendinning2cb37722008-12-11 20:54:30 -08005320SMSC9420 PCI ETHERNET DRIVER
5321P: Steve Glendinning
5322M: steve.glendinning@smsc.com
5323L: netdev@vger.kernel.org
5324S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005325F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005326
Ben Nizetteb54f2862008-03-13 22:27:30 +11005327SMX UIO Interface
5328P: Ben Nizette
5329M: bn@niasdigital.com
5330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005331F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005332
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005333SN-IA64 (Itanium) SUB-PLATFORM
5334P: Jes Sorensen
5335M: jes@sgi.com
5336L: linux-altix@sgi.com
5337L: linux-ia64@vger.kernel.org
5338W: http://www.sgi.com/altix
5339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005341
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005342SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005343P: Guennadi Liakhovetski
5344M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005345L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005346T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005348F: include/media/v4l2*
5349F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005351SOEKRIS NET48XX LED SUPPORT
5352P: Chris Boot
5353M: bootc@bootc.net
5354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005356
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005359M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005362F: drivers/md/
5363F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365SONIC NETWORK DRIVER
5366P: Thomas Bogendoerfer
5367M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005368L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371
Michael Buesch61e115a2007-09-18 15:12:50 -04005372SONICS SILICON BACKPLANE DRIVER (SSB)
5373P: Michael Buesch
5374M: mb@bu3sch.de
5375L: netdev@vger.kernel.org
5376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: drivers/ssb/
5378F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005381P: Mattia Dongili
5382M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005383L: linux-acpi@vger.kernel.org
5384W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005386F: Documentation/laptops/sony-laptop.txt
5387F: drivers/char/sonypi.c
5388F: drivers/platform/x86/sony-laptop.c
5389F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Alex Dubovbaf85322008-02-09 10:20:54 -08005391SONY MEMORYSTICK CARD SUPPORT
5392P: Alex Dubov
5393M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005394W: http://tifmxx.berlios.de/
5395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005396F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398SOUND
5399P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005400M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005401P: Takashi Iwai
5402M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005403L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005404W: http://www.alsa-project.org/
5405T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5406T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005408F: Documentation/sound/
5409F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005410F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
Mark Brownbd903bd2008-11-19 19:16:05 +00005412SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005413P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005414M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005415P: Mark Brown
5416M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005417T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005418L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005419W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005421F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005422F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005423
Sam Ravnborg473321f2009-01-04 15:47:49 -08005424SPARC + UltraSPARC (sparc/sparc64)
5425P: David S. Miller
5426M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005428T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5429T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005431F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
5433SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5434P: Roger Wolff
5435M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/serial/specialix.txt
5438F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005440SPI SUBSYSTEM
5441P: David Brownell
5442M: dbrownell@users.sourceforge.net
5443L: spi-devel-general@lists.sourceforge.net
5444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005445F: Documentation/spi/
5446F: drivers/spi/
5447F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005448
Jim Lewis2752e402006-09-29 02:01:19 -07005449SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005450P: Ishizaki Kou
5451M: kou.ishizaki@toshiba.co.jp
5452P: Jens Osterkamp
5453M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005454L: netdev@vger.kernel.org
5455S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005456F: Documentation/networking/spider_net.txt
5457F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005458
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005459SPU FILE SYSTEM
5460P: Jeremy Kerr
5461M: jk@ozlabs.org
5462L: linuxppc-dev@ozlabs.org
5463L: cbe-oss-dev@ozlabs.org
5464W: http://www.ibm.com/developerworks/power/cell/
5465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005466F: Documentation/filesystems/spufs.txt
5467F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005468
Phillip Lougherfc555842009-01-05 08:46:29 +00005469SQUASHFS FILE SYSTEM
5470P: Phillip Lougher
5471M: phillip@lougher.demon.co.uk
5472L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5473W: http://squashfs.org.uk
5474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005475F: Documentation/filesystems/squashfs.txt
5476F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005477
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478SRM (Alpha) environment access
5479P: Jan-Benedict Glaw
5480M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005482F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
Linus Torvalds26e9a392008-10-17 09:50:12 -07005484STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005485P: Greg Kroah-Hartman
5486M: greg@kroah.com
5487P: Chris Wright
5488M: chrisw@sous-sol.org
5489L: stable@kernel.org
5490S: Maintained
5491
Linus Torvalds26e9a392008-10-17 09:50:12 -07005492STAGING SUBSYSTEM
5493P: Greg Kroah-Hartman
5494M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005495T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005496L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005498F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005499
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500STARFIRE/DURALAN NETWORK DRIVER
5501P: Ion Badulescu
5502M: ionut@cs.columbia.edu
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505
5506STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5507W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005509F: drivers/net/wireless/strip.c
5510F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
5512STRADIS MPEG-2 DECODER DRIVER
5513P: Nathan Laredo
5514M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515W: http://www.stradis.com/
5516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005517F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005519SUN3/3X
5520P: Sam Creasey
5521M: sammy@sammy.net
5522W: http://sammy.net/sun3/
5523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005524F: arch/m68k/kernel/*sun3*
5525F: arch/m68k/sun3*/
5526F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005527
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005528SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529P: Paul Mundt
5530M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005531L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005533T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005534S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005535F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005536F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005537F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005539SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005540P: Len Brown
5541M: len.brown@intel.com
5542P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005543M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005544P: Rafael J. Wysocki
5545M: rjw@sisk.pl
5546L: linux-pm@lists.linux-foundation.org
5547S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005548F: Documentation/power/
5549F: arch/x86/kernel/acpi/
5550F: drivers/base/power/
5551F: kernel/power/
5552F: include/linux/suspend.h
5553F: include/linux/freezer.h
5554F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
5556SVGA HANDLING
5557P: Martin Mares
5558M: mj@ucw.cz
5559L: linux-video@atrey.karlin.mff.cuni.cz
5560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: Documentation/svga.txt
5562F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564SYSV FILESYSTEM
5565P: Christoph Hellwig
5566M: hch@infradead.org
5567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005568F: Documentation/filesystems/sysv-fs.txt
5569F: fs/sysv/
5570F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571
Alan Cox4e688522008-04-30 00:52:11 -07005572TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005573P: Balbir Singh
5574M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005576F: Documentation/accounting/taskstats*
5577F: include/linux/taskstats*
5578F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005579
Stephen Hemminger781b4562006-07-10 20:25:29 -07005580TC CLASSIFIER
5581P: Jamal Hadi Salim
5582M: hadi@cyberus.ca
5583L: netdev@vger.kernel.org
5584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: include/linux/pkt_cls.h
5586F: include/net/pkt_cls.h
5587F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005588
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005589TCP LOW PRIORITY MODULE
5590P: Wong Hoi Sing, Edison
5591M: hswong3i@gmail.com
5592P: Hung Hing Lun, Mike
5593M: hlhung3i@gmail.com
5594W: http://tcp-lp-mod.sourceforge.net/
5595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005596F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005597
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005598TEHUTI ETHERNET DRIVER
5599P: Alexander Indenbaum
5600M: baum@tehutinetworks.net
5601P: Andy Gospodarek
5602M: andy@greyhouse.net
5603L: netdev@vger.kernel.org
5604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005605F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005606
Alan Cox4e688522008-04-30 00:52:11 -07005607Telecom Clock Driver for MCPL0010
5608P: Mark Gross
5609M: mark.gross@intel.com
5610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005611F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005612
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005613TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005614P: Chris Zankel
5615M: chris@zankel.net
5616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005617F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005618
5619THINKPAD ACPI EXTRAS DRIVER
5620P: Henrique de Moraes Holschuh
5621M: ibm-acpi@hmh.eng.br
5622L: ibm-acpi-devel@lists.sourceforge.net
5623W: http://ibm-acpi.sourceforge.net
5624W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005625T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005627F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005628
Alex Dubov4020f2d2006-10-04 02:15:37 -07005629TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005630P: Alex Dubov
5631M: oakad@yahoo.com
5632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005633F: drivers/misc/tifm*
5634F: drivers/mmc/host/tifm_sd.c
5635F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005636
Per Lidene86eaa32006-01-12 16:45:18 +01005637TIPC NETWORK LAYER
5638P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005639M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005640P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005641M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005642P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005643M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005644L: tipc-discussion@lists.sourceforge.net
5645W: http://tipc.sourceforge.net/
5646W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005647T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005649F: include/linux/tipc*.h
5650F: include/net/tipc/
5651F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005652
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653TLAN NETWORK DRIVER
5654P: Samuel Chessman
5655M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005656L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657W: http://sourceforge.net/projects/tlan/
5658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005659F: Documentation/networking/tlan.txt
5660F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005662TOMOYO SECURITY MODULE
5663P: Kentaro Takeda
5664M: takedakn@nttdata.co.jp
5665P: Tetsuo Handa
5666M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005667L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5668L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5669L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5670W: http://tomoyo.sourceforge.jp/
5671T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005674
Linus Torvalds1da177e2005-04-16 15:20:36 -07005675TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005676S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005677F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
5679TOSHIBA SMM DRIVER
5680P: Jonathan Buzzard
5681M: jonathan@buzzard.org.uk
5682L: tlinux-users@tce.toshiba-dme.co.jp
5683W: http://www.buzzard.org.uk/toshiba/
5684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005685F: drivers/char/toshiba.c
5686F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Pierre Ossmand719f902009-03-24 21:06:09 +01005688TMIO MMC DRIVER
5689P: Ian Molton
5690M: ian@mnementh.co.uk
5691S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005692F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005693
Hugh Dickins98f32602009-05-21 20:33:58 +01005694TMPFS (SHMEM FILESYSTEM)
5695P: Hugh Dickins
5696M: hugh.dickins@tiscali.co.uk
5697L: linux-mm@kvack.org
5698S: Maintained
5699F: include/linux/shmem_fs.h
5700F: mm/shmem.c
5701
Alan Cox4e688522008-04-30 00:52:11 -07005702TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005703P: Debora Velarde
5704M: debora@linux.vnet.ibm.com
5705P: Rajiv Andrade
5706M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005707W: http://tpmdd.sourceforge.net
5708P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005709M: m.selhorst@sirrix.com
5710W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005711L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005714
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005716P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005717M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005718T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005720F: drivers/char/tty_*
5721F: drivers/serial/serial_core.c
5722F: include/linux/serial_core.h
5723F: include/linux/serial.h
5724F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725
Alan Cox4e688522008-04-30 00:52:11 -07005726TTY LAYER
5727P: Alan Cox
5728M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005729S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005730T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005731
Grant Grundler740db6d2008-02-17 11:53:49 -07005732TULIP NETWORK DRIVERS
5733P: Grant Grundler
5734M: grundler@parisc-linux.org
5735P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005736M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005737L: netdev@vger.kernel.org
5738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005739F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740
5741TUN/TAP driver
5742P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005743M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744L: vtun@office.satix.net
5745W: http://vtun.sourceforge.net/tun
5746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005747F: Documentation/networking/tuntap.txt
5748F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005750TURBOCHANNEL SUBSYSTEM
5751P: Maciej W. Rozycki
5752M: macro@linux-mips.org
5753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005754F: drivers/tc/
5755F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005756
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757U14-34F SCSI DRIVER
5758P: Dario Ballabio
5759M: ballabio_dario@emc.com
5760L: linux-scsi@vger.kernel.org
5761S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005762F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005764UBI FILE SYSTEM (UBIFS)
5765P: Artem Bityutskiy
5766M: dedekind@infradead.org
5767P: Adrian Hunter
5768M: ext-adrian.hunter@nokia.com
5769L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005770T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005771W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005773F: Documentation/filesystems/ubifs.txt
5774F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005775
Alan Coxcc2020e2008-05-19 14:21:51 +01005776UCLINUX (AND M68KNOMMU)
5777P: Greg Ungerer
5778M: gerg@uclinux.org
5779W: http://www.uclinux.org/
5780L: uclinux-dev@uclinux.org (subscribers-only)
5781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005782F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005783
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005784UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005785P: Yoshinori Sato
5786M: ysato@users.sourceforge.jp
5787W: http://uclinux-h8.sourceforge.jp/
5788S: Supported
5789
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005791P: Jan Kara
5792M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793W: http://linux-udf.sourceforge.net
5794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: Documentation/filesystems/udf.txt
5796F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
Alan Coxcc2020e2008-05-19 14:21:51 +01005798UFS FILESYSTEM
5799P: Evgeniy Dushistov
5800M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005802F: Documentation/filesystems/ufs.txt
5803F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005804
David Vrabel18332a82008-09-17 16:34:44 +01005805ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5806P: David Vrabel
5807M: david.vrabel@csr.com
5808L: linux-usb@vger.kernel.org
5809S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005810F: drivers/uwb/*
5811F: include/linux/uwb.h
5812F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005813
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814UNIFORM CDROM DRIVER
5815P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005816M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817W: http://www.kernel.dk
5818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/cdrom/
5820F: drivers/cdrom/cdrom.c
5821F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005823UNSORTED BLOCK IMAGES (UBI)
5824P: Artem Bityutskiy
5825M: dedekind@infradead.org
5826W: http://www.linux-mtd.infradead.org/
5827L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005828T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005829S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005830F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005831F: include/linux/mtd/ubi.h
5832F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005833
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834USB ACM DRIVER
5835P: Oliver Neukum
5836M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005837L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005839F: Documentation/usb/acm.txt
5840F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841
5842USB BLOCK DRIVER (UB ub)
5843P: Pete Zaitcev
5844M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005845L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005847F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849USB CDC ETHERNET DRIVER
5850P: Greg Kroah-Hartman
5851M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005852L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853S: Maintained
5854W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005855F: drivers/net/usb/cdc_*.c
5856F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005858USB CYPRESS C67X00 DRIVER
5859P: Peter Korsgaard
5860M: jacmet@sunsite.dk
5861L: linux-usb@vger.kernel.org
5862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005863F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005864
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005865USB DAVICOM DM9601 DRIVER
5866P: Peter Korsgaard
5867M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005868L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005869W: http://www.linux-usb.org/usbnet
5870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005871F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005872
Alan Coxcc2020e2008-05-19 14:21:51 +01005873USB DIAMOND RIO500 DRIVER
5874P: Cesar Miquel
5875M: miquel@df.uba.ar
5876L: rio500-users@lists.sourceforge.net
5877W: http://rio500.sourceforge.net
5878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005880
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881USB EHCI DRIVER
5882P: David Brownell
5883M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005884L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005885S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005886F: Documentation/usb/ehci.txt
5887F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888
Luca Risolia7ce08c92006-01-11 02:06:59 +00005889USB ET61X[12]51 DRIVER
5890P: Luca Risolia
5891M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005892L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005893L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005894T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005895W: http://www.linux-projects.org
5896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005897F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005898
David Brownell69ae9e32006-11-14 02:03:31 -08005899USB GADGET/PERIPHERAL SUBSYSTEM
5900P: David Brownell
5901M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005902L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005903W: http://www.linux-usb.org/gadget
5904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005905F: drivers/usb/gadget/
5906F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005907
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005908USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005909P: Jiri Kosina
5910M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005911L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005912T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: Documentation/usb/hiddev.txt
5915F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
Olav Kongas959eea22005-11-03 17:38:14 +02005917USB ISP116X DRIVER
5918P: Olav Kongas
5919M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005920L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005922F: drivers/usb/host/isp116x*
5923F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005924
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925USB KAWASAKI LSI DRIVER
5926P: Oliver Neukum
5927M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005928L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005930F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931
5932USB MASS STORAGE DRIVER
5933P: Matthew Dharm
5934M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005935L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005936L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937S: Maintained
5938W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005939F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
5941USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005942P: David Brownell
5943M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005944L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005945S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005946F: Documentation/usb/ohci.txt
5947F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
Matthias Urlichsba460e42005-07-14 00:33:47 -07005949USB OPTION-CARD DRIVER
5950P: Matthias Urlichs
5951M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005952L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005954F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956USB OV511 DRIVER
5957P: Mark McClelland
5958M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005959L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960W: http://alpha.dyndns.org/ov511/
5961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005962F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
5964USB PEGASUS DRIVER
5965P: Petko Manolov
5966M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005967L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005968L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969W: http://pegasus2.sourceforge.net/
5970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005971F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005973USB PRINTER DRIVER (usblp)
5974P: Pete Zaitcev
5975M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005976L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005977S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005978F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
5980USB RTL8150 DRIVER
5981P: Petko Manolov
5982M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005983L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005984L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985W: http://pegasus2.sourceforge.net/
5986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005987F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
5989USB SE401 DRIVER
5990P: Jeroen Vreeken
5991M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005992L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993W: http://www.chello.nl/~j.vreeken/se401/
5994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005995F: Documentation/video4linux/se401.txt
5996F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997
Alan Cox4e688522008-04-30 00:52:11 -07005998USB SERIAL BELKIN F5U103 DRIVER
5999P: William Greathouse
6000M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006001L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006004
6005USB SERIAL CYPRESS M8 DRIVER
6006P: Lonnie Mendez
6007M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006008L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006009S: Maintained
6010W: http://geocities.com/i0xox0i
6011W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006013
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014USB SERIAL CYBERJACK DRIVER
6015P: Matthias Bruestle and Harald Welte
6016M: support@reiner-sct.com
6017W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
6021USB SERIAL DIGI ACCELEPORT DRIVER
6022P: Peter Berger and Al Borchers
6023M: pberger@brimson.com
6024M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006025L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006027F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028
6029USB SERIAL DRIVER
6030P: Greg Kroah-Hartman
6031M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006032L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006034F: Documentation/usb/usb-serial.txt
6035F: drivers/usb/serial/generic.c
6036F: drivers/usb/serial/usb-serial.c
6037F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6040P: Gary Brubaker
6041M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006042L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006044F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
6046USB SERIAL KEYSPAN DRIVER
6047P: Greg Kroah-Hartman
6048M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006049L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050W: http://www.kroah.com/linux/
6051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006052F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
6054USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006055P: Support Department
6056M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006057L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058W: http://www.connecttech.com
6059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006060F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006062USB SMSC95XX ETHERNET DRIVER
6063P: Steve Glendinning
6064M: steve.glendinning@smsc.com
6065L: netdev@vger.kernel.org
6066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006067F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006068
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006069USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070P: Luca Risolia
6071M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006072L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006073L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006074T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075W: http://www.linux-projects.org
6076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006077F: Documentation/video4linux/sn9c102.txt
6078F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
6080USB SUBSYSTEM
6081P: Greg Kroah-Hartman
6082M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006083L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006085T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006086S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006087F: Documentation/usb/
6088F: drivers/net/usb/
6089F: drivers/usb/
6090F: include/linux/usb.h
6091F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
6093USB UHCI DRIVER
6094P: Alan Stern
6095M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006096L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006098F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099
David Brownell69ae9e32006-11-14 02:03:31 -08006100USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101P: David Brownell
6102M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006103L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006104W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006106F: drivers/net/usb/usbnet.c
6107F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006109USB VIDEO CLASS
6110P: Laurent Pinchart
6111M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006112L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006113L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006114T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006115W: http://linux-uvc.berlios.de
6116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006117F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006118
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119USB W996[87]CF DRIVER
6120P: Luca Risolia
6121M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006122L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006123L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006124T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125W: http://www.linux-projects.org
6126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: Documentation/video4linux/w9968cf.txt
6128F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006130USB WIRELESS RNDIS DRIVER (rndis_wlan)
6131P: Jussi Kivilinna
6132M: jussi.kivilinna@mbnet.fi
6133L: linux-wireless@vger.kernel.org
6134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006136
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006137USB XHCI DRIVER
6138P: Sarah Sharp
6139M: sarah.a.sharp@intel.com
6140L: linux-usb@vger.kernel.org
6141S: Supported
6142
Luca Risolia60f78052006-02-06 16:29:35 +00006143USB ZC0301 DRIVER
6144P: Luca Risolia
6145M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006146L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006147L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006148T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006149W: http://www.linux-projects.org
6150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006151F: Documentation/video4linux/zc0301.txt
6152F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006153
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154USB ZD1201 DRIVER
6155P: Jeroen Vreeken
6156M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006157L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158W: http://linux-lc100020.sourceforge.net
6159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006160F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006162USB ZR364XX DRIVER
6163P: Antoine Jacquet
6164M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006165L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006166L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006167T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006168W: http://royale.zerezo.com/zr364xx/
6169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006170F: Documentation/video4linux/zr364xx.txt
6171F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006172
Randy Dunlape7839f22008-10-12 16:11:45 -07006173USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006175M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176L: user-mode-linux-devel@lists.sourceforge.net
6177L: user-mode-linux-user@lists.sourceforge.net
6178W: http://user-mode-linux.sourceforge.net
6179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006180F: Documentation/uml/
6181F: arch/um/
6182F: fs/hostfs/
6183F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006184
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006185USERSPACE I/O (UIO)
6186P: Hans J. Koch
6187M: hjk@linutronix.de
6188P: Greg Kroah-Hartman
6189M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: Documentation/DocBook/uio-howto.tmpl
6192F: drivers/uio/
6193F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006194
Karel Zakf899b0a2008-05-23 13:04:21 -07006195UTIL-LINUX-NG PACKAGE
6196P: Karel Zak
6197M: kzak@redhat.com
6198L: util-linux-ng@vger.kernel.org
6199W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006200T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006201S: Maintained
6202
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006203UVESAFB DRIVER
6204P: Michal Januszewski
6205M: spock@gentoo.org
6206L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6207W: http://dev.gentoo.org/~spock/projects/uvesafb/
6208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: Documentation/fb/uvesafb.txt
6210F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006211
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006212VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213P: OGAWA Hirofumi
6214M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: Documentation/filesystems/vfat.txt
6217F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Linus Torvalds1da177e2005-04-16 15:20:36 -07006219VIA RHINE NETWORK DRIVER
6220P: Roger Luethi
6221M: rl@hellgate.ch
6222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006223F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224
Jean Delvare32c0a522005-09-22 21:47:58 +02006225VIAPRO SMBUS DRIVER
6226P: Jean Delvare
6227M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006228L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006230F: Documentation/i2c/busses/i2c-viapro
6231F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006232
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006233VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6234P: Joseph Chan
6235M: JosephChan@via.com.tw
6236P: Scott Fang
6237M: ScottFang@viatech.com.cn
6238L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006240F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006241
Francois Romieu01f20732007-01-26 00:57:17 -08006242VIA VELOCITY NETWORK DRIVER
6243P: Francois Romieu
6244M: romieu@fr.zoreil.com
6245L: netdev@vger.kernel.org
6246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
Patrick McHardybe7f8272007-10-23 20:26:36 -07006249VLAN (802.1Q)
6250P: Patrick McHardy
6251M: kaber@trash.net
6252L: netdev@vger.kernel.org
6253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/net/macvlan.c
6255F: include/linux/if_*vlan.h
6256F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006257
Florian Fainelli55e331c2009-06-16 15:33:53 -07006258VLYNQ BUS
6259P: Florian Fainelli
6260M: florian@openwrt.org
6261L: openwrt-devel@lists.openwrt.org
6262S: Maintained
6263F: drivers/vlynq/vlynq.c
6264F: include/linux/vlynq.h
6265
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006266VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6267P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006268M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006269P: Mark Brown
6270M: broonie@opensource.wolfsonmicro.com
6271W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006272W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006273T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006275F: drivers/regulator/
6276F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006277
Juerg Haefligerab413192006-09-24 20:54:04 +02006278VT1211 HARDWARE MONITOR DRIVER
6279P: Juerg Haefliger
6280M: juergh@gmail.com
6281L: lm-sensors@lm-sensors.org
6282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: Documentation/hwmon/vt1211
6284F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006285
Roger Lucas1de9e372005-11-26 20:20:05 +01006286VT8231 HARDWARE MONITOR DRIVER
6287P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006288M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006289L: lm-sensors@lm-sensors.org
6290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006292
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293W1 DALLAS'S 1-WIRE BUS
6294P: Evgeniy Polyakov
6295M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006297F: Documentation/w1/
6298F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299
Charles Spirakis13927072006-07-05 18:05:15 +02006300W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006301P: Marc Hulsman
6302M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006303L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006305F: Documentation/hwmon/w83791d
6306F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006307
Rudolf Marek61db0112006-12-12 18:18:30 +01006308W83793 HARDWARE MONITORING DRIVER
6309P: Rudolf Marek
6310M: r.marek@assembler.cz
6311L: lm-sensors@lm-sensors.org
6312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: Documentation/hwmon/w83793
6314F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006315
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316W83L51xD SD/MMC CARD INTERFACE DRIVER
6317P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006318M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006322WATCHDOG DEVICE DRIVERS
6323P: Wim Van Sebroeck
6324M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006325T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006327F: Documentation/watchdog/
6328F: drivers/watchdog/
6329F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006330
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6332P: Jean Tourrilhes
6333M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006334L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006337F: Documentation/networking/wavelan.txt
6338F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
6340WD7000 SCSI DRIVER
6341P: Miroslav Zagorac
6342M: zaga@fly.cc.fer.hr
6343L: linux-scsi@vger.kernel.org
6344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006345F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006347WIMAX STACK
6348P: Inaky Perez-Gonzalez
6349M: inaky.perez-gonzalez@intel.com
6350M: linux-wimax@intel.com
6351L: wimax@linuxwimax.org
6352S: Supported
6353W: http://linuxwimax.org
6354
David Vrabel18332a82008-09-17 16:34:44 +01006355WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6356P: David Vrabel
6357M: david.vrabel@csr.com
6358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006359F: include/linux/wlp.h
6360F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006361
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006362WISTRON LAPTOP BUTTON DRIVER
6363P: Miloslav Trmac
6364M: mitr@volny.cz
6365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006367
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368WL3501 WIRELESS PCMCIA CARD DRIVER
6369P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006370M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006371L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006372W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Mark Brownfebf1df2008-04-02 00:51:09 -04006376WM97XX TOUCHSCREEN DRIVERS
6377P: Mark Brown
6378M: broonie@opensource.wolfsonmicro.com
6379P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006380M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006381L: linux-input@vger.kernel.org
6382T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6383W: http://opensource.wolfsonmicro.com/node/7
6384S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006385F: drivers/input/touchscreen/*wm97*
6386F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006387
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388X.25 NETWORK LAYER
6389P: Henner Eisen
6390M: eis@baty.hanse.de
6391L: linux-x25@vger.kernel.org
6392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006393F: Documentation/networking/x25*
6394F: include/net/x25*
6395F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006397X86 ARCHITECTURE (32-BIT AND 64-BIT)
6398P: Thomas Gleixner
6399M: tglx@linutronix.de
6400P: Ingo Molnar
6401M: mingo@redhat.com
6402P: H. Peter Anvin
6403M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006404M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006405T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006407F: Documentation/x86/
6408F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006409
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006410XEN HYPERVISOR INTERFACE
6411P: Jeremy Fitzhardinge
6412M: jeremy@xensource.com
6413P: Chris Wright
6414M: chrisw@sous-sol.org
6415L: virtualization@lists.osdl.org
6416L: xen-devel@lists.xensource.com
6417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006418F: arch/x86/xen/
6419F: drivers/*/xen-*front.c
6420F: drivers/xen/
6421F: arch/x86/include/asm/xen/
6422F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006423
Linus Torvalds1da177e2005-04-16 15:20:36 -07006424XFS FILESYSTEM
6425P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006426P: Felix Blyakher
6427M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006429L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006431T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006433F: Documentation/filesystems/xfs.txt
6434F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006436XILINX SYSTEMACE DRIVER
6437P: Grant Likely
6438M: grant.likely@secretlab.ca
6439W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006441F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006442
Peter Korsgaard238b8722006-12-06 20:35:17 -08006443XILINX UARTLITE SERIAL DRIVER
6444P: Peter Korsgaard
6445M: jacmet@sunsite.dk
6446L: linux-serial@vger.kernel.org
6447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006448F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006449
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450YAM DRIVER FOR AX.25
6451P: Jean-Paul Roubelat
6452M: jpr@f6fbb.org
6453L: linux-hams@vger.kernel.org
6454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006455F: drivers/net/hamradio/yam*
6456F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457
Henkaf64a5e2005-10-12 15:02:56 +02006458YEALINK PHONE DRIVER
6459P: Henk Vergonet
6460M: Henk.Vergonet@gmail.com
6461L: usbb2k-api-dev@nongnu.org
6462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006463F: Documentation/input/yealink.txt
6464F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006465
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466Z8530 DRIVER FOR AX.25
6467P: Joerg Reuter
6468M: jreuter@yaina.de
6469W: http://yaina.de/jreuter/
6470W: http://www.qsl.net/dl1bke/
6471L: linux-hams@vger.kernel.org
6472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006473F: Documentation/networking/z8530drv.txt
6474F: drivers/net/hamradio/*scc.c
6475F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006477ZD1211RW WIRELESS DRIVER
6478P: Daniel Drake
6479M: dsd@gentoo.org
6480P: Ulrich Kunitz
6481M: kune@deine-taler.de
6482W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006483L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006484L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006486F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006487
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006489L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006490L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006491W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006492T: Mercurial http://linuxtv.org/hg/v4l-dvb
6493S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006494F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006496ZS DECSTATION Z85C30 SERIAL DRIVER
6497P: Maciej W. Rozycki
6498M: macro@linux-mips.org
6499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006500F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006501
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502THE REST
6503P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006504M: torvalds@linux-foundation.org
6505L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006506T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006507S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006508F: *
6509F: */