blob: 303129ab4b7509bff0ed0ce3960d5c6b7bc53ff9 [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
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200656T: topgit git://git.openezx.org/openezx.git
657F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100658
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200659ARM/FARADAY FA526 PORT
660P: Paulius Zaleckas
661M: paulius.zaleckas@teltonika.lt
662L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
663S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300664F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200665
Russell Kingd4275352009-04-16 14:05:27 +0100666ARM/FOOTBRIDGE ARCHITECTURE
667P: Russell King
668M: linux@arm.linux.org.uk
669L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
670W: http://www.arm.linux.org.uk/
671S: Maintained
672F: arch/arm/include/asm/hardware/dec21285.h
673F: arch/arm/mach-footbridge/
674
Sascha Hauer86183a52008-07-24 23:50:35 +0200675ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
676P: Sascha Hauer
677M: kernel@pengutronix.de
678L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
679S: Maintained
680
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800681ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
682P: Lennert Buytenhek
683M: kernel@wantstofly.org
684L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
685S: Maintained
686
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100687ARM/GUMSTIX MACHINE SUPPORT
688P: Steve Sakoman
689M: sakoman@gmail.com
690L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
691S: Maintained
692
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200693ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
694P: Philipp Zabel
695M: philipp.zabel@gmail.com
696S: Maintained
697F: arch/arm/mach-pxa/hx4700.c
698F: arch/arm/mach-pxa/include/mach/hx4700.h
699
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100700ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200701P: Kristoffer Ericson
702M: kristoffer.ericson@gmail.com
703W: www.jlime.com
704S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100705
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800706ARM/INTEL IOP32X ARM ARCHITECTURE
707P: Lennert Buytenhek
708M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100709P: Dan Williams
710M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800711L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100712S: Supported
713
714ARM/INTEL IOP33X ARM ARCHITECTURE
715P: Dan Williams
716M: dan.j.williams@intel.com
717L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
718S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800719
720ARM/INTEL IOP13XX ARM ARCHITECTURE
721P: Lennert Buytenhek
722M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100723P: Dan Williams
724M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800725L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100726S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727
728ARM/INTEL IQ81342EX MACHINE SUPPORT
729P: Lennert Buytenhek
730M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100731P: Dan Williams
732M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100734S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800735
736ARM/INTEL IXP2000 ARM ARCHITECTURE
737P: Lennert Buytenhek
738M: kernel@wantstofly.org
739L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
740S: Maintained
741
742ARM/INTEL IXDP2850 MACHINE SUPPORT
743P: Lennert Buytenhek
744M: kernel@wantstofly.org
745L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
746S: Maintained
747
748ARM/INTEL IXP23XX ARM ARCHITECTURE
749P: Lennert Buytenhek
750M: kernel@wantstofly.org
751L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
752S: Maintained
753
754ARM/INTEL XSC3 (MANZANO) ARM CORE
755P: Lennert Buytenhek
756M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100757P: Dan Williams
758M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800759L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100760S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761
762ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
763P: Lennert Buytenhek
764M: kernel@wantstofly.org
765L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
766S: Maintained
767
768ARM/LOGICPD PXA270 MACHINE SUPPORT
769P: Lennert Buytenhek
770M: kernel@wantstofly.org
771L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
772S: Maintained
773
Philipp Zabel3b8861712008-07-09 21:27:15 +0100774ARM/MAGICIAN MACHINE SUPPORT
775P: Philipp Zabel
776M: philipp.zabel@gmail.com
777S: Maintained
778
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200779ARM/MIOA701 MACHINE SUPPORT
780P: Robert Jarzmik
781M: robert.jarzmik@free.fr
782L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
783F: arch/arm/mach-pxa/mioa701.c
784S: Maintained
785
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100786ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
787P: Michael Petchkovsky
788M: mkpetch@internode.on.net
789S: Maintained
790
Andy Green9d762952009-05-19 06:41:42 -0300791ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
792P: Nelson Castillo
793M: arhuaco@freaks-unidos.net
794L: openmoko-kernel@lists.openmoko.org (subscribers-only)
795W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
796S: Supported
797
Dirk Opfer8459c152005-11-06 14:27:52 +0000798ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800799P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100800M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000801P: Dirk Opfer
802M: dirk@opfer-online.de
803S: Maintained
804
Marek Vasut54088bf2009-03-24 00:29:29 +0100805ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100806P: Marek Vasut
807M: marek.vasut@gmail.com
808W: http://hackndev.com
809S: Maintained
810
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200811ARM/PALM TREO 680 SUPPORT
812P: Tomas Cech
813M: sleep_walker@suse.cz
814W: http://hackndev.com
815S: Maintained
816
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100817ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700818P: Sergey Lapin
819M: slapin@ossfans.org
820W: http://hackndev.com
821S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823ARM/PLEB SUPPORT
824P: Peter Chubb
825M: pleb@gelato.unsw.edu.au
826W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
827S: Maintained
828
829ARM/PT DIGITAL BOARD PORT
830P: Stefan Eletzhofer
831M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700832L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833W: http://www.arm.linux.org.uk/
834S: Maintained
835
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800836ARM/RADISYS ENP2611 MACHINE SUPPORT
837P: Lennert Buytenhek
838M: kernel@wantstofly.org
839L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
840S: Maintained
841
Russell Kingd4275352009-04-16 14:05:27 +0100842ARM/RISCPC ARCHITECTURE
843P: Russell King
844M: linux@arm.linux.org.uk
845L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
846W: http://www.arm.linux.org.uk/
847S: Maintained
848F: arch/arm/common/time-acorn.c
849F: arch/arm/include/asm/hardware/entry-macro-iomd.S
850F: arch/arm/include/asm/hardware/ioc.h
851F: arch/arm/include/asm/hardware/iomd.h
852F: arch/arm/include/asm/hardware/memc.h
853F: arch/arm/mach-rpc/
854F: drivers/net/arm/ether*
855F: drivers/scsi/arm/
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857ARM/SHARK MACHINE SUPPORT
858P: Alexander Schulz
859M: alex@shark-linux.de
860W: http://www.shark-linux.de/shark.html
861S: Maintained
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863ARM/S3C2410 ARM ARCHITECTURE
864P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800865M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700866L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867W: http://www.fluff.org/ben/linux/
868S: Maintained
869
870ARM/S3C2440 ARM ARCHITECTURE
871P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800872M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700873L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874W: http://www.fluff.org/ben/linux/
875S: Maintained
876
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800877ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
878P: Lennert Buytenhek
879M: kernel@wantstofly.org
880L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
881S: Maintained
882
883ARM/THECUS N2100 MACHINE SUPPORT
884P: Lennert Buytenhek
885M: kernel@wantstofly.org
886L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
887S: Maintained
888
wanzongshun98ad6e32009-02-13 06:04:32 +0100889ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700890P: Wan ZongShun
891M: mcuos.com@gmail.com
892L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
893W: http://www.mcuos.com
894S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100895
Russell Kingd4275352009-04-16 14:05:27 +0100896ARM/VFP SUPPORT
897P: Russell King
898M: linux@arm.linux.org.uk
899L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
900W: http://www.arm.linux.org.uk/
901S: Maintained
902F: arch/arm/vfp/
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904ARPD SUPPORT
905P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700906L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700908F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500911P: Corentin Chary
912M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913P: Karol Kozimor
914M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915L: acpi4asus-user@lists.sourceforge.net
916W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500917W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700919F: arch/x86/kernel/acpi/boot.c
920F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400922ASUS ASB100 HARDWARE MONITOR DRIVER
923P: Mark M. Hoffman
924M: mhoffman@lightlink.com
925L: lm-sensors@lm-sensors.org
926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700927F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400928
Corentin Chary85091b72007-01-26 14:04:30 +0100929ASUS LAPTOP EXTRAS DRIVER
930P: Corentin Chary
931M: corentincj@iksaif.net
932L: acpi4asus-user@lists.sourceforge.net
933W: http://sourceforge.net/projects/acpi4asus
934W: http://xf.iksaif.net/acpi4asus
935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700936F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100937
Andrew Morton953a6472008-11-06 12:53:28 -0800938ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700939P: Dan Williams
940M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100941P: Maciej Sosnowski
942M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700943W: http://sourceforge.net/projects/xscaleiop
944S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700945F: Documentation/crypto/async-tx-api.txt
946F: crypto/async_tx/
947F: drivers/dma/
948F: include/linux/dmaengine.h
949F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700950
Randy Dunlape7839f22008-10-12 16:11:45 -0700951ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952P: Ed L. Cashin
953M: ecashin@coraid.com
954W: http://www.coraid.com/support/linux
955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700956F: Documentation/aoe/
957F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200959ATHEROS ATH5K WIRELESS DRIVER
960P: Jiri Slaby
961M: jirislaby@gmail.com
962P: Nick Kossifidis
963M: mickflemm@gmail.com
964P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700965M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400966P: Bob Copeland
967M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200968L: linux-wireless@vger.kernel.org
969L: ath5k-devel@lists.ath5k.org
970S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700971F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200972
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700973ATHEROS ATH9K WIRELESS DRIVER
974P: Luis R. Rodriguez
975M: lrodriguez@atheros.com
976P: Jouni Malinen
977M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400978P: Sujith Manoharan
979M: Sujith.Manoharan@atheros.com
980P: Vasanthakumar Thiagarajan
981M: vasanth@atheros.com
982P: Senthil Balasubramanian
983M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700984L: linux-wireless@vger.kernel.org
985L: ath9k-devel@lists.ath9k.org
986S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -0700987F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700988
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100989ATHEROS AR9170 WIRELESS DRIVER
990P: Christian Lamparter
991M: chunkeey@web.de
992L: linux-wireless@vger.kernel.org
993W: http://wireless.kernel.org/en/users/Drivers/ar9170
994S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -0700995F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100996
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000997ATI_REMOTE2 DRIVER
998P: Ville Syrjala
999M: syrjala@sci.fi
1000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001001F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001002
Chris Snook7ae115b2008-09-09 03:26:57 -04001003ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001004P: Jay Cliburn
1005M: jcliburn@gmail.com
1006P: Chris Snook
1007M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -04001008P: Jie Yang
1009M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001010L: atl1-devel@lists.sourceforge.net
1011W: http://sourceforge.net/projects/atl1
1012W: http://atl1.sourceforge.net
1013S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001014F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016ATM
1017P: Chas Williams
1018M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -07001019L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001020L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021W: http://linux-atm.sourceforge.net
1022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001023F: drivers/atm/
1024F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Pierre Ossman272f1332007-05-14 21:25:26 +02001026ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001027P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001028M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001029L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1030W: http://www.atmel.com/products/AT91/
1031W: http://www.at91.com/
1032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001033F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001034
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001035ATMEL AT91 / AT32 MCI DRIVER
1036P: Nicolas Ferre
1037M: nicolas.ferre@atmel.com
1038S: Maintained
1039F: drivers/mmc/host/atmel-mci.c
1040F: drivers/mmc/host/atmel-mci-regs.h
1041
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001042ATMEL AT91 / AT32 SERIAL DRIVER
1043P: Haavard Skinnemoen
1044M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001046F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001047
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001048ATMEL LCDFB DRIVER
1049P: Nicolas Ferre
1050M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001051L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001053F: drivers/video/atmel_lcdfb.c
1054F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001055
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001056ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001057P: Haavard Skinnemoen
1058M: hskinnemoen@atmel.com
1059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001060F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001061
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001062ATMEL SPI DRIVER
1063P: Haavard Skinnemoen
1064M: hskinnemoen@atmel.com
1065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001066F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001067
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001068ATMEL USBA UDC DRIVER
1069P: Haavard Skinnemoen
1070M: hskinnemoen@atmel.com
1071L: kernel@avr32linux.org
1072W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1073S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001074F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076ATMEL WIRELESS DRIVER
1077P: Simon Kelley
1078M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001079L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080W: http://www.thekelleys.org.uk/atmel
1081W: http://atmelwlandriver.sourceforge.net/
1082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001083F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Chris Wrighta92b7b82005-07-07 18:12:23 -07001085AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001086P: Al Viro
1087M: viro@zeniv.linux.org.uk
1088P: Eric Paris
1089M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001090L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001091W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001092T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001094F: include/linux/audit.h
1095F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001096
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001097AUXILIARY DISPLAY DRIVERS
1098P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001099M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001100W: http://miguelojeda.es/auxdisplay.htm
1101W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001103F: drivers/auxdisplay/
1104F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001105
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001106AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001107P: Haavard Skinnemoen
1108M: hskinnemoen@atmel.com
1109W: http://www.atmel.com/products/AVR32/
1110W: http://avr32linux.org/
1111W: http://avrfreaks.net/
1112S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001113F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001114
1115AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001116P: Haavard Skinnemoen
1117M: hskinnemoen@atmel.com
1118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001119F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121AX.25 NETWORK LAYER
1122P: Ralf Baechle
1123M: ralf@linux-mips.org
1124L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001125W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001127F: include/linux/ax25.h
1128F: include/net/ax25.h
1129F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001131B43 WIRELESS DRIVER
1132P: Michael Buesch
1133M: mb@bu3sch.de
1134P: Stefano Brivio
1135M: stefano.brivio@polimi.it
1136L: linux-wireless@vger.kernel.org
1137W: http://linuxwireless.org/en/users/Drivers/b43
1138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001139F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001140
1141B43LEGACY WIRELESS DRIVER
1142P: Larry Finger
1143M: Larry.Finger@lwfinger.net
1144P: Stefano Brivio
1145M: stefano.brivio@polimi.it
1146L: linux-wireless@vger.kernel.org
1147W: http://linuxwireless.org/en/users/Drivers/b43
1148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001149F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001150
Richard Purdie300abeb2007-02-07 22:21:07 +00001151BACKLIGHT CLASS/SUBSYSTEM
1152P: Richard Purdie
1153M: rpurdie@rpsys.net
1154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001155F: drivers/video/backlight/
1156F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001158BAYCOM/HDLCDRV DRIVERS FOR AX.25
1159P: Thomas Sailer
1160M: t.sailer@alumni.ethz.ch
1161L: linux-hams@vger.kernel.org
1162W: http://www.baycom.org/~tom/ham/ham.html
1163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001164F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001165
1166BEFS FILE SYSTEM
1167P: Sergey S. Kostyliov
1168M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001170F: Documentation/filesystems/befs.txt
1171F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001172
1173BFS FILE SYSTEM
1174P: Tigran A. Aivazian
1175M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001177F: Documentation/filesystems/bfs.txt
1178F: fs/bfs/
1179F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001180
Bryan Wu1394f032007-05-06 14:50:22 -07001181BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001182P: Mike Frysinger
1183M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001184L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001185W: http://blackfin.uclinux.org
1186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001187F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001188
Bryan Wue190d6b2007-07-17 14:43:44 +08001189BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001190P: Michael Hennerich
1191M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001192L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001193W: http://blackfin.uclinux.org
1194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001195F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001196
Mike Frysinger566da5b2007-06-11 15:31:30 +08001197BLACKFIN RTC DRIVER
1198P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001199M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001200L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001201W: http://blackfin.uclinux.org
1202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001203F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001204
Bryan Wu1394f032007-05-06 14:50:22 -07001205BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001206P: Sonic Zhang
1207M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001208L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001209W: http://blackfin.uclinux.org
1210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001212
Bryan Wu1e6d3202007-07-15 02:50:02 +08001213BLACKFIN WATCHDOG DRIVER
1214P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001215M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001216L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001217W: http://blackfin.uclinux.org
1218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001219F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001220
Bryan Wud24ecfc2007-05-01 23:26:32 +02001221BLACKFIN I2C TWI DRIVER
1222P: Sonic Zhang
1223M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001224L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001225W: http://blackfin.uclinux.org/
1226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001227F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229BLOCK LAYER
1230P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001231M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001232T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001234F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Joern Engel2b54aae2008-02-06 01:38:02 -08001236BLOCK2MTD DRIVER
1237P: Joern Engel
1238M: joern@lazybastard.org
1239L: linux-mtd@lists.infradead.org
1240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001241F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001242
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001243BLUETOOTH DRIVERS
1244P: Marcel Holtmann
1245M: marcel@holtmann.org
1246L: linux-bluetooth@vger.kernel.org
1247W: http://www.bluez.org/
1248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001249F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251BLUETOOTH SUBSYSTEM
1252P: Marcel Holtmann
1253M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001254L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001255W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001256T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001258F: net/bluetooth/
1259F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001262P: Jay Vosburgh
1263M: fubar@us.ibm.com
1264L: bonding-devel@lists.sourceforge.net
1265W: http://sourceforge.net/projects/bonding/
1266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001267F: drivers/net/bonding/
1268F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Gary Zambrano39105892006-06-22 17:26:20 -07001270BROADCOM B44 10/100 ETHERNET DRIVER
1271P: Gary Zambrano
1272M: zambrano@broadcom.com
1273L: netdev@vger.kernel.org
1274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001275F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001276
Michael Chan948c51e2006-06-04 02:51:39 -07001277BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1278P: Michael Chan
1279M: mchan@broadcom.com
1280L: netdev@vger.kernel.org
1281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001282F: drivers/net/bnx2.*
1283F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001284
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001285BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001286P: Eilon Greenstein
1287M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001288L: netdev@vger.kernel.org
1289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001290F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001291
Michael Chan948c51e2006-06-04 02:51:39 -07001292BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001293P: Matt Carlson
1294M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001295P: Michael Chan
1296M: mchan@broadcom.com
1297L: netdev@vger.kernel.org
1298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001299F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001300
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001301BSG (block layer generic sg v4 driver)
1302P: FUJITA Tomonori
1303M: fujita.tomonori@lab.ntt.co.jp
1304L: linux-scsi@vger.kernel.org
1305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001306F: block/bsg.c
1307F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001308
Michael Bueschff1d5c22008-07-25 01:46:10 -07001309BT8XXGPIO DRIVER
1310P: Michael Buesch
1311M: mb@bu3sch.de
1312W: http://bu3sch.de/btgpio.php
1313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001314F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001315
Joe Percheseb1eb042009-01-21 10:49:16 -05001316BTRFS FILE SYSTEM
1317P: Chris Mason
1318M: chris.mason@oracle.com
1319L: linux-btrfs@vger.kernel.org
1320W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001321T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001323F: Documentation/filesystems/btrfs.txt
1324F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001327P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001328M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001329L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001330W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001331T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001332S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001333F: Documentation/video4linux/bttv/
1334F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
David Howellsa5432f52009-04-20 15:46:45 +01001336CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1337P: David Howells
1338M: dhowells@redhat.com
1339L: linux-cachefs@redhat.com
1340S: Supported
1341F: Documentation/filesystems/caching/cachefiles.txt
1342F: fs/cachefiles/
1343
Jonathan Corbet77d51402007-03-22 19:44:17 -03001344CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001345P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001346M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001347L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001348T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001350F: Documentation/video4linux/cafe_ccic
1351F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001352
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001353CALGARY x86-64 IOMMU
1354P: Muli Ben-Yehuda
1355M: muli@il.ibm.com
1356P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001357M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001358L: discuss@x86-64.org
1359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001360F: arch/x86/kernel/pci-calgary_64.c
1361F: arch/x86/kernel/tce_64.c
1362F: arch/x86/include/asm/calgary.h
1363F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001364
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001365CAN NETWORK LAYER
1366P: Urs Thuermann
1367M: urs.thuermann@volkswagen.de
1368P: Oliver Hartkopp
1369M: oliver.hartkopp@volkswagen.de
1370L: socketcan-core@lists.berlios.de (subscribers-only)
1371W: http://developer.berlios.de/projects/socketcan/
1372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001373F: drivers/net/can/
1374F: include/linux/can/
1375F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001376
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001377CAN NETWORK DRIVERS
1378P: Wolfgang Grandegger
1379M: wg@grandegger.com
1380L: socketcan-core@lists.berlios.de (subscribers-only)
1381W: http://developer.berlios.de/projects/socketcan/
1382S: Maintained
1383
Arnd Bergmannb8154542008-05-16 11:10:59 +02001384CELL BROADBAND ENGINE ARCHITECTURE
1385P: Arnd Bergmann
1386M: arnd@arndb.de
1387L: linuxppc-dev@ozlabs.org
1388L: cbe-oss-dev@ozlabs.org
1389W: http://www.ibm.com/developerworks/power/cell/
1390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001391F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001392F: arch/powerpc/include/asm/spu*.h
1393F: arch/powerpc/oprofile/*cell*
1394F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001395
David Vrabel18332a82008-09-17 16:34:44 +01001396CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1397P: David Vrabel
1398M: david.vrabel@csr.com
1399L: linux-usb@vger.kernel.org
1400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001401F: Documentation/usb/WUSB-Design-overview.txt
1402F: Documentation/usb/wusb-cbaf
1403F: drivers/usb/wusbcore/
1404F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001405
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001406CFAG12864B LCD DRIVER
1407P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001408M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001409W: http://miguelojeda.es/auxdisplay.htm
1410W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001412F: drivers/auxdisplay/cfag12864b.c
1413F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001414
1415CFAG12864BFB LCD FRAMEBUFFER DRIVER
1416P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001417M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001418W: http://miguelojeda.es/auxdisplay.htm
1419W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001421F: drivers/auxdisplay/cfag12864bfb.c
1422F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001423
Johannes Berg704232c2007-04-23 12:20:05 -07001424CFG80211 and NL80211
1425P: Johannes Berg
1426M: johannes@sipsolutions.net
1427L: linux-wireless@vger.kernel.org
1428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001429F: include/linux/nl80211.h
1430F: include/net/cfg80211.h
1431F: net/wireless/*
1432X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001433
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001434CHECKPATCH
1435P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001436M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001438F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001439
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001440CISCO 10G ETHERNET DRIVER
1441P: Scott Feldman
1442M: scofeldm@cisco.com
1443P: Joe Eykholt
1444M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001446F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001447
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001448CIRRUS LOGIC EP93XX ETHERNET DRIVER
1449P: Lennert Buytenhek
1450M: kernel@wantstofly.org
1451L: netdev@vger.kernel.org
1452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001453F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001454
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001455CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1456P: Lennert Buytenhek
1457M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001458L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001460F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001461
Timur Tabid9e9d822008-04-24 08:45:26 +10001462CIRRUS LOGIC CS4270 SOUND DRIVER
1463P: Timur Tabi
1464M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001465L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001467F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1470P: Cirrus Logic Corporation (kernel 2.2 driver)
1471M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1472P: Nils Faerber (port to kernel 2.4)
1473M: Nils Faerber <nils@kernelconcepts.de>
1474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: Documentation/input/cs461x.txt
1476F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Russell Kingd4275352009-04-16 14:05:27 +01001478CLK API
1479P: Russell King
1480M: linux@arm.linux.org.uk
1481F: include/linux/clk.h
1482
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001483CISCO FCOE HBA DRIVER
1484P: Abhijeet Joglekar
1485M: abjoglek@cisco.com
1486P: Joe Eykholt
1487M: jeykholt@cisco.com
1488L: linux-scsi@vger.kernel.org
1489S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001490F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492CODA FILE SYSTEM
1493P: Jan Harkes
1494M: jaharkes@cs.cmu.edu
1495M: coda@cs.cmu.edu
1496L: codalist@coda.cs.cmu.edu
1497W: http://www.coda.cs.cmu.edu/
1498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001499F: Documentation/filesystems/coda.txt
1500F: fs/coda/
1501F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001503COMMON INTERNET FILE SYSTEM (CIFS)
1504P: Steve French
1505M: sfrench@samba.org
1506L: linux-cifs-client@lists.samba.org
1507L: samba-technical@lists.samba.org
1508W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001509T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001511F: Documentation/filesystems/cifs.txt
1512F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514COMPACTPCI HOTPLUG CORE
1515P: Scott Murray
1516M: scottm@somanetworks.com
1517M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001518L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001520F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1523P: Scott Murray
1524M: scottm@somanetworks.com
1525M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001526L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001528F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530COMPACTPCI HOTPLUG GENERIC DRIVER
1531P: Scott Murray
1532M: scottm@somanetworks.com
1533M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001534L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001536F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001538COMPAL LAPTOP SUPPORT
1539P: Cezary Jackiewicz
1540M: cezary.jackiewicz@gmail.com
1541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001542F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544COMPUTONE INTELLIPORT MULTIPORT CARD
1545P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001546M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: Documentation/serial/computone.txt
1550F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Simon Arlott949be0f2007-03-06 02:47:46 -08001552CONEXANT ACCESSRUNNER USB DRIVER
1553P: Simon Arlott
1554M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001555L: accessrunner-general@lists.sourceforge.net
1556W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001558F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001559
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001560CONFIGFS
1561P: Joel Becker
1562M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001563S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001564F: fs/configfs/
1565F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001566
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001567CONTROL GROUPS (CGROUPS)
1568P: Paul Menage
1569M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001570P: Li Zefan
1571M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001572L: containers@lists.linux-foundation.org
1573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001574F: include/linux/cgroup*
1575F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001576F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001577
Rudolf Marekbebe4672007-05-08 17:22:02 +02001578CORETEMP HARDWARE MONITORING DRIVER
1579P: Rudolf Marek
1580M: r.marek@assembler.cz
1581L: lm-sensors@lm-sensors.org
1582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001583F: Documentation/hwmon/coretemp
1584F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586COSA/SRP SYNC SERIAL DRIVER
1587P: Jan "Yenya" Kasprzak
1588M: kas@fi.muni.cz
1589W: http://www.fi.muni.cz/~kas/cosa/
1590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001591F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Florian Fainelli4371ee32009-06-01 02:43:17 -07001593CPMAC ETHERNET DRIVER
1594P: Florian Fainelli
1595M: florian@openwrt.org
1596L: netdev@vger.kernel.org
1597S: Maintained
1598F: drivers/net/cpmac.c
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600CPU FREQUENCY DRIVERS
1601P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001602M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001603L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001605T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001607F: arch/x86/kernel/cpu/cpufreq/
1608F: drivers/cpufreq/
1609F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611CPUID/MSR DRIVER
1612P: H. Peter Anvin
1613M: hpa@zytor.com
1614S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001615F: arch/x86/kernel/cpuid.c
1616F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Paul Jacksoned90fb42005-09-27 21:45:37 -07001618CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001619P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001620M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001621W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001622W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001624F: Documentation/cgroups/cpusets.txt
1625F: include/linux/cpuset.h
1626F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001629W: http://sourceforge.net/projects/cramfs/
1630S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001631F: Documentation/filesystems/cramfs.txt
1632F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634CRIS PORT
1635P: Mikael Starvik
1636M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001637P: Jesper Nilsson
1638M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639L: dev-etrax@axis.com
1640W: http://developer.axis.com
1641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644CRYPTO API
1645P: Herbert Xu
1646M: herbert@gondor.apana.org.au
1647P: David S. Miller
1648M: davem@davemloft.net
1649L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001650T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001652F: Documentation/crypto/
1653F: arch/*/crypto/
1654F: crypto/
1655F: drivers/crypto/
1656F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Neil Horman5b07bd52009-02-05 16:03:04 +11001658CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1659P: Neil Horman
1660M: nhorman@tuxdriver.com
1661L: linux-crypto@vger.kernel.org
1662S: Maintained
1663
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001664CS5535 Audio ALSA driver
1665P: Jaya Kumar
1666M: jayakumar.alsa@gmail.com
1667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001668F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001669
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001670CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001671P: Hans Verkuil
1672M: hverkuil@xs4all.nl
1673P: Andy Walls
1674M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001675L: ivtv-devel@ivtvdriver.org
1676L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001677L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001678T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001679W: http://linuxtv.org
1680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001681F: Documentation/video4linux/cx18.txt
1682F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001683
Steve Wisee5ec3782008-05-20 14:06:33 -07001684CXGB3 ETHERNET DRIVER (CXGB3)
1685P: Divy Le Ray
1686M: divy@chelsio.com
1687L: netdev@vger.kernel.org
1688W: http://www.chelsio.com
1689S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001690F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001691
1692CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1693P: Steve Wise
1694M: swise@chelsio.com
1695L: general@lists.openfabrics.org
1696W: http://www.openfabrics.org
1697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001698F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700CYBERPRO FB DRIVER
1701P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001702M: linux@arm.linux.org.uk
1703L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704W: http://www.arm.linux.org.uk/
1705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001706F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708CYCLADES 2X SYNC CARD DRIVER
1709P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001710M: acme@ghostprotocols.net
1711W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001713F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001717S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001718F: drivers/char/cyclades.c
1719F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001723S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001724F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726DAMA SLAVE for AX.25
1727P: Joerg Reuter
1728M: jreuter@yaina.de
1729W: http://yaina.de/jreuter/
1730W: http://www.qsl.net/dl1bke/
1731L: linux-hams@vger.kernel.org
1732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001733F: net/ax25/af_ax25.c
1734F: net/ax25/ax25_dev.c
1735F: net/ax25/ax25_ds_*
1736F: net/ax25/ax25_in.c
1737F: net/ax25/ax25_out.c
1738F: net/ax25/ax25_timer.c
1739F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001741DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1742P: Tobias Ringstrom
1743M: tori@unhappy.mine.nu
1744L: netdev@vger.kernel.org
1745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001746F: Documentation/networking/dmfe.txt
1747F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001748
1749DC390/AM53C974 SCSI driver
1750P: Kurt Garloff
1751M: garloff@suse.de
1752W: http://www.garloff.de/kurt/linux/dc390/
1753P: Guennadi Liakhovetski
1754M: g.liakhovetski@gmx.de
1755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001756F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758DC395x SCSI driver
1759P: Oliver Neukum
1760M: oliver@neukum.name
1761P: Ali Akcaagac
1762M: aliakc@web.de
1763P: Jamie Lenehan
1764M: lenehan@twibble.org
1765W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001766L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767L: http://lists.twibble.org/mailman/listinfo/dc395x/
1768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: Documentation/scsi/dc395x.txt
1770F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001772DCCP PROTOCOL
1773P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001774M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001775L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001776W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001778F: include/linux/dccp.h
1779F: include/linux/tfrc.h
1780F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001783P: Christine Caulfield
1784M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785W: http://linux-decnet.sourceforge.net
1786L: linux-decnet-user@lists.sourceforge.net
1787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001788F: Documentation/networking/decnet.txt
1789F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
1791DEFXX FDDI NETWORK DRIVER
1792P: Maciej W. Rozycki
1793M: macro@linux-mips.org
1794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001795F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001797DELL LAPTOP DRIVER
1798P: Matthew Garrett
1799M: mjg59@srcf.ucam.org
1800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001801F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803DELL LAPTOP SMM DRIVER
1804P: Massimo Dal Zotto
1805M: dz@debian.org
1806W: http://www.debian.org/~dz/i8k/
1807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001808F: drivers/char/i8k.c
1809F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Doug Warzecha90563ec2005-09-06 15:17:15 -07001811DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1812P: Doug Warzecha
1813M: Douglas_Warzecha@dell.com
1814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001815F: Documentation/dcdbas.txt
1816F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001817
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001818DELL WMI EXTRAS DRIVER
1819P: Matthew Garrett
1820M: mjg59@srcf.ucam.org
1821S: Maintained
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823DEVICE NUMBER REGISTRY
1824P: Torben Mathiasen
1825M: device@lanana.org
1826W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827S: Maintained
1828
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001829DEVICE-MAPPER (LVM)
1830P: Alasdair Kergon
1831L: dm-devel@redhat.com
1832W: http://sources.redhat.com/dm
1833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001834F: Documentation/device-mapper/
1835F: drivers/md/dm*
1836F: include/linux/device-mapper.h
1837F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839DIGI INTL. EPCA DRIVER
1840P: Digi International, Inc
1841M: Eng.Linux@digi.com
1842L: Eng.Linux@digi.com
1843W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001844S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001845F: Documentation/serial/digiepca.txt
1846F: drivers/char/epca*
1847F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Randy Dunlape7839f22008-10-12 16:11:45 -07001849DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001850P: Eric Paris
1851M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001853F: Documentation/filesystems/dnotify.txt
1854F: fs/notify/dnotify/
1855F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857DISK GEOMETRY AND PARTITION HANDLING
1858P: Andries Brouwer
1859M: aeb@cwi.nl
1860W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1861W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1862W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1863S: Maintained
1864
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001865DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866P: Jan Kara
1867M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001869F: Documentation/filesystems/quota.txt
1870F: fs/quota/
1871F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Randy Dunlape7839f22008-10-12 16:11:45 -07001873DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001874P: Christine Caulfield
1875M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001876P: David Teigland
1877M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001878L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001879W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001880T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001882F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001883
Dan Williamsb3e5f262007-08-07 10:26:35 -07001884DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001885P: Maciej Sosnowski
1886M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001887P: Dan Williams
1888M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001890F: drivers/dma/
1891F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001892
Juerg Haefligerb8250372007-06-09 10:11:16 -04001893DME1737 HARDWARE MONITOR DRIVER
1894P: Juerg Haefliger
1895M: juergh@gmail.com
1896L: lm-sensors@lm-sensors.org
1897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001898F: Documentation/hwmon/dme1737
1899F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001900
Martin Waitzba483d52005-06-17 13:20:59 -07001901DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001902P: Randy Dunlap
1903M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001904S: Maintained
1905
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001906DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001907P: Shaohua Li
1908M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001909L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001910S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001911F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001912
Joe Perches7d2c86b2009-04-07 20:59:01 -07001913DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001914P: Randy Dunlap
1915M: rdunlap@xenotime.net
1916L: linux-doc@vger.kernel.org
1917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001918F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920DOUBLETALK DRIVER
1921P: James R. Van Zandt
1922M: jrv@vanzandt.mv.com
1923L: blinux-list@redhat.com
1924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/char/dtlk.c
1926F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001928DPT_I2O SCSI RAID DRIVER
1929P: Adaptec OEM Raid Solutions
1930M: aacraid@adaptec.com
1931L: linux-scsi@vger.kernel.org
1932W: http://www.adaptec.com/
1933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001934F: drivers/scsi/dpt*
1935F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937DRIVER CORE, KOBJECTS, AND SYSFS
1938P: Greg Kroah-Hartman
1939M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001940T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001942F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001943F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001944F: fs/sysfs/
1945F: include/linux/kobj*
1946F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948DRM DRIVERS
1949P: David Airlie
1950M: airlied@linux.ie
1951L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001952T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001954F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001957P: Francois Romieu
1958M: romieu@fr.zoreil.com
1959L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001963DZ DECSTATION DZ11 SERIAL DRIVER
1964P: Maciej W. Rozycki
1965M: macro@linux-mips.org
1966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001967F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969EATA-DMA SCSI DRIVER
1970P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001971M: mike@i-Connect.Net
1972L: linux-eata@i-connect.net
1973L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001975F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977EATA ISA/EISA/PCI SCSI DRIVER
1978P: Dario Ballabio
1979M: ballabio_dario@emc.com
1980L: linux-scsi@vger.kernel.org
1981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001982F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984EATA-PIO SCSI DRIVER
1985P: Michael Neuffer
1986M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001987L: linux-eata@i-connect.net
1988L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001990F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992EBTABLES
1993P: Bart De Schuymer
1994M: bart.de.schuymer@pandora.be
1995L: ebtables-user@lists.sourceforge.net
1996L: ebtables-devel@lists.sourceforge.net
1997W: http://ebtables.sourceforge.net/
1998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001999F: include/linux/netfilter_bridge/ebt_*.h
2000F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Michael Halcrow237fead2006-10-04 02:16:22 -07002002ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002003P: Tyler Hicks
2004M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07002005P: Dustin Kirkland
2006M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08002007L: ecryptfs-devel@lists.launchpad.net
2008W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002009S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002010F: Documentation/filesystems/ecryptfs.txt
2011F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002012
Alan Coxda9bb1d2006-01-18 17:44:13 -08002013EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08002014P: 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
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002019F: Documentation/edac.txt
2020F: drivers/edac/edac_*
2021F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002022
Borislav Petkovc476c232009-05-20 20:31:58 +02002023EDAC-AMD64
2024P: Doug Thompson
2025M: dougthompson@xmission.com
2026P: Borislav Petkov
2027M: borislav.petkov@amd.com
2028L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2029W: bluesmoke.sourceforge.net
2030S: Supported
2031F: drivers/edac/amd64_edac*
2032
Dave Peterson0e438e32006-03-26 01:38:55 -08002033EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002034P: Mark Gross
2035M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002036P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002037M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002038L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002039W: bluesmoke.sourceforge.net
2040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002041F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002042
2043EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002044P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002045M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002046L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002047W: bluesmoke.sourceforge.net
2048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002049F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002050
Douglas Thompson6bc78402007-07-19 01:50:12 -07002051EDAC-I82443BXGX
2052P: Tim Small
2053M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002054L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002055W: bluesmoke.sourceforge.net
2056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002057F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002058
2059EDAC-I3000
2060P: Jason Uhlenkott
2061M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002062L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002063W: bluesmoke.sourceforge.net
2064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002065F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002066
2067EDAC-I5000
2068P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002069M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002070L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002071W: bluesmoke.sourceforge.net
2072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002073F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002074
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002075EDAC-I5400
2076P: Mauro Carvalho Chehab
2077M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002078L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002079W: bluesmoke.sourceforge.net
2080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002082
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002083EDAC-I82975X
2084P: Ranganathan Desikan
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002085M: rdesikan@jetzbroadband.com
Joe Perches5b7f92c2009-06-18 16:49:19 -07002086P: Arvind R.
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002087M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002088L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002089W: bluesmoke.sourceforge.net
2090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002091F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002092
2093EDAC-PASEMI
2094P: Egor Martovetsky
2095M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002096L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002097W: bluesmoke.sourceforge.net
2098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002099F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002100
Dave Peterson0e438e32006-03-26 01:38:55 -08002101EDAC-R82600
2102P: Tim Small
2103M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002104L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002105W: bluesmoke.sourceforge.net
2106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002108
Eric Coopere59f8792008-03-13 12:55:46 +01002109EEEPC LAPTOP EXTRAS DRIVER
2110P: Corentin Chary
2111M: corentincj@iksaif.net
2112L: acpi4asus-user@lists.sourceforge.net
2113W: http://sourceforge.net/projects/acpi4asus
2114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002115F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002116
Josh Triplett0bee8d22006-07-30 03:03:58 -07002117EFS FILESYSTEM
2118W: http://aeschi.ch.eu.org/efs/
2119S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002120F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002121
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002122EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002123P: Hoang-Nam Nguyen
2124M: hnguyen@de.ibm.com
2125P: Christoph Raisch
2126M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002127L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002129F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002130
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002131EMBEDDED LINUX
2132P: Paul Gortmaker
2133M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002134P: Matt Mackall
2135M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002136P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002137M: dwmw2@infradead.org
2138L: linux-embedded@vger.kernel.org
2139S: Maintained
2140
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002141EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002142P: James Smart
2143M: james.smart@emulex.com
2144L: linux-scsi@vger.kernel.org
2145W: http://sourceforge.net/projects/lpfcxxxx
2146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002147F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002148
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002149ENE CB710 FLASH CARD READER DRIVER
2150P: Michał Mirosław
2151M: mirq-linux@rere.qmqm.pl
2152L: linux-kernel@vger.kernel.org
2153S: Maintained
2154F: drivers/misc/cb710/
2155F: drivers/mmc/host/cb710-mmc.*
2156F: include/linux/cb710.h
2157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158EPSON 1355 FRAMEBUFFER DRIVER
2159P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002160M: ch@murgatroid.com
2161P: Christopher Hoover
2162M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002166EPSON S1D13XXX FRAMEBUFFER DRIVER
2167P: Kristoffer Ericson
2168M: kristoffer.ericson@gmail.com
2169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002170F: drivers/video/s1d13xxxfb.c
2171F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173ETHEREXPRESS-16 NETWORK DRIVER
2174P: Philip Blundell
2175M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002176L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002178F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180ETHERNET BRIDGE
2181P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002182M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002183L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002184W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002186F: include/linux/netfilter_bridge/
2187F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189ETHERTEAM 16I DRIVER
2190P: Mika Kuoppala
2191M: miku@iki.fi
2192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002193F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002196L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002198F: Documentation/filesystems/ext2.txt
2199F: fs/ext2/
2200F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002203P: Stephen Tweedie
2204M: sct@redhat.com
2205P: Andrew Morton
2206M: akpm@linux-foundation.org
2207P: Andreas Dilger
2208M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002209L: linux-ext4@vger.kernel.org
2210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: Documentation/filesystems/ext3.txt
2212F: fs/ext3/
2213F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002214
2215EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002216P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002217M: tytso@mit.edu
2218P: Andreas Dilger
2219M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002220L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002221W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002223F: Documentation/filesystems/ext4.txt
2224F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Jean Delvaree53004e2006-01-09 23:26:14 +01002226F71805F HARDWARE MONITORING DRIVER
2227P: Jean Delvare
2228M: khali@linux-fr.org
2229L: lm-sensors@lm-sensors.org
2230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002231F: Documentation/hwmon/f71805f
2232F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234FARSYNC SYNCHRONOUS DRIVER
2235P: Kevin Curtis
2236M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237W: http://www.farsite.co.uk/
2238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002239F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Akinobu Mitac5408b82007-04-23 14:41:20 -07002241FAULT INJECTION SUPPORT
2242P: Akinobu Mita
2243M: akinobu.mita@gmail.com
2244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002245F: Documentation/fault-injection/
2246F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002247
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002248FILE LOCKING (flock() and fcntl()/lockf())
2249P: Matthew Wilcox
2250M: matthew@wil.cx
2251L: linux-fsdevel@vger.kernel.org
2252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002253F: include/linux/fcntl.h
2254F: include/linux/fs.h
2255F: fs/fcntl.c
2256F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002257
2258FILESYSTEMS (VFS and infrastructure)
2259P: Alexander Viro
2260M: viro@zeniv.linux.org.uk
2261L: linux-fsdevel@vger.kernel.org
2262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002263F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002264
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002265FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2266P: Riku Voipio
2267M: riku.vipio@iki.fi
2268L: lm-sensors@lm-sensors.org
2269S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002270F: drivers/hwmon/f75375s.c
2271F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002272
Joe Perches7d2c86b2009-04-07 20:59:01 -07002273FIREWIRE SUBSYSTEM
2274P: Kristian Hoegsberg
2275M: krh@redhat.com
2276P: Stefan Richter
2277M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002278L: linux1394-devel@lists.sourceforge.net
2279W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002280T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: drivers/firewire/
2283F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002284
2285FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002286S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002287F: Documentation/firmware_class/
2288F: drivers/base/firmware*.c
2289F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002290
2291FPU EMULATOR
2292P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002293M: billm@melbpc.org.au
2294W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002296F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002297
2298FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2299P: Mike McLagan
2300M: mike.mclagan@linux.org
2301L: netdev@vger.kernel.org
2302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: drivers/net/wan/dlci.c
2304F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002307L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002309S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002310F: Documentation/fb/
2311F: drivers/video/fb*
2312F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Zhang Wei173acc72008-03-01 07:42:48 -07002314FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002315P: Li Yang
2316M: leoli@freescale.com
2317P: Zhang Wei
2318M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002319L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002321F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002322
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002323FREESCALE I2C CPM DRIVER
2324P: Jochen Friedrich
2325M: jochen@scram.de
2326L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002327L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002329F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002330
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002331FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2332P: Sascha Hauer
2333M: kernel@pengutronix.de
2334L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2335L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002337F: arch/arm/plat-mxc/include/mach/imxfb.h
2338F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002339
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002340FREESCALE SOC FS_ENET DRIVER
2341P: Pantelis Antoniou
2342M: pantelis.antoniou@gmail.com
2343P: Vitaly Bordug
2344M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002345L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002346L: netdev@vger.kernel.org
2347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002348F: drivers/net/fs_enet/
2349F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002350
Timur Tabid9e9d822008-04-24 08:45:26 +10002351FREESCALE QUICC ENGINE LIBRARY
2352P: Timur Tabi
2353M: timur@freescale.com
2354L: linuxppc-dev@ozlabs.org
2355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002356F: arch/powerpc/sysdev/qe_lib/
2357F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002358
Li Yanga7205b32007-04-23 10:38:18 -07002359FREESCALE HIGHSPEED USB DEVICE DRIVER
2360P: Li Yang
2361M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002362L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002363L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002365F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002366
Li Yangbeaf53b2007-05-25 13:54:02 +08002367FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2368P: Li Yang
2369M: leoli@freescale.com
2370L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002371L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002373F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002374
Timur Tabid9e9d822008-04-24 08:45:26 +10002375FREESCALE QUICC ENGINE UCC UART DRIVER
2376P: Timur Tabi
2377M: timur@freescale.com
2378L: linuxppc-dev@ozlabs.org
2379S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002380F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002381
2382FREESCALE SOC SOUND DRIVERS
2383P: Timur Tabi
2384M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002385L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002386L: linuxppc-dev@ozlabs.org
2387S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002388F: sound/soc/fsl/fsl*
2389F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391FREEVXFS FILESYSTEM
2392P: Christoph Hellwig
2393M: hch@infradead.org
2394W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002396F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Pavel Machek71038f52009-01-15 13:51:02 -08002398FREEZER
2399P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002400M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002401P: Rafael J. Wysocki
2402M: rjw@sisk.pl
2403L: linux-pm@lists.linux-foundation.org
2404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002405F: Documentation/power/freezing-of-tasks.txt
2406F: include/linux/freezer.h
2407F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002408
David Howellsa5432f52009-04-20 15:46:45 +01002409FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2410P: David Howells
2411M: dhowells@redhat.com
2412L: linux-cachefs@redhat.com
2413S: Supported
2414F: Documentation/filesystems/caching/
2415F: fs/fscache/
2416F: include/linux/fscache*.h
2417
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002418FTRACE
2419P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002420M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002421S: Maintained
Joe Perchesa65fd8e2009-06-18 16:49:23 -07002422F: Documentation/trace/ftrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07002423F: arch/*/*/*/ftrace.h
2424F: arch/*/kernel/ftrace.c
2425F: include/*/ftrace.h
2426F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002427
David Howells5ab7ffe2007-04-10 15:10:45 +01002428FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429P: David Howells
2430M: dhowells@redhat.com
2431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002432F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Jonathan Woithe20b93732008-06-11 10:14:56 +09302434FUJITSU LAPTOP EXTRAS
2435P: Jonathan Woithe
2436M: jwoithe@physics.adelaide.edu.au
2437L: linux-acpi@vger.kernel.org
2438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002439F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302440
Miklos Szeredi04578f12005-09-09 13:10:22 -07002441FUSE: FILESYSTEM IN USERSPACE
2442P: Miklos Szeredi
2443M: miklos@szeredi.hu
2444L: fuse-devel@lists.sourceforge.net
2445W: http://fuse.sourceforge.net/
2446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: fs/fuse/
2448F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2451P: Rik Faith
2452M: faith@cs.unc.edu
2453L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002454S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002455F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
2457GDT SCSI DISK ARRAY CONTROLLER DRIVER
2458P: Achim Leubner
2459M: achim_leubner@adaptec.com
2460L: linux-scsi@vger.kernel.org
2461W: http://www.icp-vortex.com/
2462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002463F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002465GENERIC GPIO I2C DRIVER
2466P: Haavard Skinnemoen
2467M: hskinnemoen@atmel.com
2468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002469F: drivers/i2c/busses/i2c-gpio.c
2470F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002471
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002472GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473P: Krzysztof Halasa
2474M: khc@pm.waw.pl
2475W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002477F: drivers/net/wan/c101.c
2478F: drivers/net/wan/hd6457*
2479F: drivers/net/wan/hdlc*
2480F: drivers/net/wan/n2.c
2481F: drivers/net/wan/pc300too.c
2482F: drivers/net/wan/pci200syn.c
2483F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002485GENERIC INCLUDE/ASM HEADER FILES
2486P: Arnd Bergmann
2487M: arnd@arndb.de
2488L: linux-arch@vger.kernel.org
2489T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2490S: Maintained
2491F: include/asm-generic
2492
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002493GFS2 FILE SYSTEM
2494P: Steven Whitehouse
2495M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002496L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002497W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002498T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2499T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002501F: Documentation/filesystems/gfs2*.txt
2502F: fs/gfs2/
2503F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002504
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002505GIGASET ISDN DRIVERS
2506P: Hansjoerg Lipp
2507M: hjlipp@web.de
2508P: Tilman Schmidt
2509M: tilman@imap.cc
2510L: gigaset307x-common@lists.sourceforge.net
2511W: http://gigaset307x.sourceforge.net/
2512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002513F: Documentation/isdn/README.gigaset
2514F: drivers/isdn/gigaset/
2515F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002516
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002517HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002518P: Frank Seidel
2519M: frank@f-seidel.de
2520L: lm-sensors@lm-sensors.org
2521W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002524
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002525HYPERVISOR VIRTUAL CONSOLE DRIVER
2526L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002527S: Odd Fixes
2528F: drivers/char/hvc_*
2529
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002530GSPCA FINEPIX SUBDRIVER
2531P: Frank Zago
2532M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002533L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002534T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002537
2538GSPCA M5602 SUBDRIVER
2539P: Erik Andren
2540M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002541L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002542T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002544F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002545
2546GSPCA PAC207 SONIXB SUBDRIVER
2547P: Hans de Goede
2548M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002549L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002550T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002552F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002553
2554GSPCA T613 SUBDRIVER
2555P: Leandro Costantino
2556M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002557L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002558T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002560F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002561
2562GSPCA USB WEBCAM DRIVER
2563P: Jean-Francois Moine
2564M: moinejf@free.fr
2565W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002566L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002567T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002569F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002570
Jean Delvare5b543962005-08-15 19:51:02 +02002571HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002572L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002573W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002574S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002575F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002576
Michael Buesch844dd052006-06-26 00:24:59 -07002577HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002578S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002579F: Documentation/hw_random.txt
2580F: drivers/char/hw_random/
2581F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002582
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583HARMONY SOUND DRIVER
2584P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002585M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002586L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002588F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590HAYES ESP SERIAL DRIVER
2591P: Andrew J. Robinson
2592M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593W: http://www.nyx.net/~arobinso
2594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002595F: Documentation/serial/hayes-esp.txt
2596F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002597
2598HEWLETT-PACKARD SMART2 RAID DRIVER
2599P: Chirag Kantharia
2600M: chirag.kantharia@hp.com
2601L: iss_storagedev@hp.com
2602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002603F: Documentation/blockdev/cpqarray.txt
2604F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002605
2606HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2607P: Mike Miller
2608M: mike.miller@hp.com
2609L: iss_storagedev@hp.com
2610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002611F: Documentation/blockdev/cciss.txt
2612F: drivers/block/cciss*
2613F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615HFS FILESYSTEM
2616P: Roman Zippel
2617M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002619F: Documentation/filesystems/hfs.txt
2620F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622HGA FRAMEBUFFER DRIVER
2623P: Ferenc Bakonyi
2624M: fero@drama.obuda.kando.hu
2625L: linux-nvidia@lists.surfsouth.com
2626W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002628F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002630HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002631P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002632M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002633P: Rafael J. Wysocki
2634M: rjw@sisk.pl
2635L: linux-pm@lists.linux-foundation.org
2636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002637F: arch/x86/power/
2638F: drivers/base/power/
2639F: kernel/power/
2640F: include/linux/suspend.h
2641F: include/linux/freezer.h
2642F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002643F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002644
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002645HID CORE LAYER
2646P: Jiri Kosina
2647M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002648L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002649T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002651F: drivers/hid/
2652F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002653
Ingo Molnar38bed542007-02-22 09:09:34 +01002654HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2655P: Thomas Gleixner
2656M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002658F: Documentation/timers/
2659F: kernel/hrtimer.c
2660F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662HIGH-SPEED SCC DRIVER FOR AX.25
2663P: Klaus Kudielka
2664M: klaus.kudielka@ieee.org
2665L: linux-hams@vger.kernel.org
2666W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/net/hamradio/dmascc.c
2669F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002671HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2672P: HighPoint Linux Team
2673M: linux@highpoint-tech.com
2674W: http://www.highpoint-tech.com
2675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002676F: Documentation/scsi/hptiop.txt
2677F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679HIPPI
2680P: Jes Sorensen
2681M: jes@trained-monkey.org
2682L: linux-hippi@sunsite.dk
2683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: include/linux/hippidevice.h
2685F: include/linux/if_hippi.h
2686F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
Jouni Malinenff1d2762005-05-12 22:54:16 -04002688HOST AP DRIVER
2689P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002690M: j@w1.fi
2691L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002692L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002693W: http://hostap.epitest.fi/
2694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002695F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002696
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002697HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2698P: Carlos Corbacho
2699M: carlos@strangeworlds.co.uk
2700S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002701F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002702
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002703HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2704P: Jaroslav Kysela
2705M: perex@perex.cz
2706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002707F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002708
Joe Perches7d2c86b2009-04-07 20:59:01 -07002709HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002710P: Clemens Ladisch
2711M: clemens@ladisch.de
2712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: Documentation/timers/hpet.txt
2714F: drivers/char/hpet.c
2715F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002716
2717HPET: i386
2718P: Venkatesh Pallipadi (Venki)
2719M: venkatesh.pallipadi@intel.com
2720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: arch/x86/kernel/hpet.c
2722F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002723
2724HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002725P: Vojtech Pavlik
2726M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002727S: Maintained
2728
Joe Perches7d2c86b2009-04-07 20:59:01 -07002729HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002730P: Bob Picco
2731M: bob.picco@hp.com
2732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002733F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002734
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735HPFS FILESYSTEM
2736P: Mikulas Patocka
2737M: mikulas@artax.karlin.mff.cuni.cz
2738W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002740F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Joe Perches7d2c86b2009-04-07 20:59:01 -07002742HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002743P: Jan Dumon
2744M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002745W: http://www.pharscape.org
2746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002747F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002748
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002749HTCPEN TOUCHSCREEN DRIVER
2750P: Pau Oliva Fora
2751M: pof@eslack.org
2752L: linux-input@vger.kernel.org
2753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002754F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756HUGETLB FILESYSTEM
2757P: William Irwin
2758M: wli@holomorphy.com
2759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002760F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002762I2C/SMBUS STUB DRIVER
2763P: Mark M. Hoffman
2764M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002765L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002767F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002768
Jean Delvare5b543962005-08-15 19:51:02 +02002769I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002770P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002772P: Ben Dooks (embedded platforms)
2773M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002774L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002775W: http://i2c.wiki.kernel.org/
2776T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002778F: Documentation/i2c/
2779F: drivers/i2c/
2780F: include/linux/i2c.h
2781F: include/linux/i2c-dev.h
2782F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Till Harbaume8c76ee2007-05-01 23:26:35 +02002784I2C-TINY-USB DRIVER
2785P: Till Harbaum
2786M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002787L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002788W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002790F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002793P: H. Peter Anvin
2794M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799P: H. Peter Anvin
2800M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002801T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802S: Maintained
2803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804IA64 (Itanium) PLATFORM
2805P: Tony Luck
2806M: tony.luck@intel.com
2807L: linux-ia64@vger.kernel.org
2808W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002809T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813IBM MCA SCSI SUBSYSTEM DRIVER
2814P: Michael Lang
2815M: langa2@kph.uni-mainz.de
2816W: http://www.uni-mainz.de/~langm000/linux.html
2817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002818F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
2820IBM Power Linux RAID adapter
2821P: Brian King
2822M: brking@us.ibm.com
2823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826IBM ServeRAID RAID DRIVER
2827P: Jack Hammer
2828P: Dave Jeffery
2829M: ipslinux@adaptec.com
2830W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002831S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002832F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002834IDE SUBSYSTEM
David S. Miller920d44e2009-06-21 16:11:33 -07002835P: David S. Miller
2836M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002838T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: Documentation/ide/
2841F: drivers/ide/
2842F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002844IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002845P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002846M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002847L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002849F: Documentation/cdrom/ide-cd
2850F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Andy Henroid27471fd2008-10-09 11:45:22 -07002852IDLE-I7300
2853P: Andy Henroid
2854M: andrew.d.henroid@intel.com
2855L: linux-pm@lists.linux-foundation.org
2856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002858
Joe Perches7d2c86b2009-04-07 20:59:01 -07002859IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002861M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002862P: Stefan Richter
2863M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864L: linux1394-devel@lists.sourceforge.net
2865W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002866T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Joe Perches7d2c86b2009-04-07 20:59:01 -07002870IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871P: Dan Dennedy
2872M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002873P: Stefan Richter
2874M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002877F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002878
Sergey Lapin02cf2282009-06-08 12:18:50 +00002879IEEE 802.15.4 SUBSYSTEM
2880P: Dmitry Eremin-Solenikov
2881M: dbaryshkov@gmail.com
2882P: Sergey Lapin
2883M: slapin@ossfans.org
2884L: linux-zigbee-devel@lists.sourceforge.net
2885W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002886T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002887S: Maintained
2888F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002889F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002890
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002891INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2892P: Mimi Zohar
2893M: zohar@us.ibm.com
2894S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002895F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002896
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002898L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002899S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002900F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902INFINIBAND SUBSYSTEM
2903P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002904M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002906M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002908M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002909L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002911T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002913F: Documentation/infiniband/
2914F: drivers/infiniband/
2915F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Robert Lovec9f04f52005-07-15 12:21:07 -04002917INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002918P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002919M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002920P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002921M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002922P: Eric Paris
2923M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002925F: Documentation/filesystems/inotify.txt
2926F: fs/notify/inotify/
2927F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002928
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002929INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2930P: Dmitry Torokhov
2931M: dmitry.torokhov@gmail.com
2932M: dtor@mail.ru
2933L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002934T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002936F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002937
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002938INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002939P: Sylvain Meyer
2940M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002941L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002943F: Documentation/fb/intelfb.txt
2944F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002945
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002947P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002948M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002949L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002951F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302953INTEL MENLOW THERMAL DRIVER
2954P: Sujith Thomas
2955M: sujith.thomas@intel.com
2956L: linux-acpi@vger.kernel.org
2957W: http://www.lesswatts.org/projects/acpi/
2958S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002959F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961INTEL IA32 MICROCODE UPDATE SUPPORT
2962P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002963M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002965F: arch/x86/kernel/microcode_core.c
2966F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002968INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002969P: Maciej Sosnowski
2970M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002972F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002973
David Woodhouse6c8909b2008-10-18 16:12:17 +01002974INTEL IOMMU (VT-d)
2975P: David Woodhouse
2976M: dwmw2@infradead.org
2977L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002978T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002980F: drivers/pci/intel-iommu.c
2981F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002982
Dan Williamsb3e5f262007-08-07 10:26:35 -07002983INTEL IOP-ADMA DMA DRIVER
2984P: Dan Williams
2985M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002986S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002987F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002988
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002989INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2990P: Krzysztof Halasa
2991M: khc@pm.waw.pl
2992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002993F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2994F: arch/arm/mach-ixp4xx/include/mach/npe.h
2995F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2996F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2997F: drivers/net/arm/ixp4xx_eth.c
2998F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002999
Michael Buesch844dd052006-06-26 00:24:59 -07003000INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
3001P: Deepak Saxena
3002M: dsaxena@plexity.net
3003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003004F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003005
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003006INTEL IXP2000 ETHERNET DRIVER
3007P: Lennert Buytenhek
3008M: kernel@wantstofly.org
3009L: netdev@vger.kernel.org
3010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003011F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003012
Auke Kokd94e6fe2008-03-03 14:37:47 -08003013INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003014P: Jeff Kirsher
3015M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003016P: Jesse Brandeburg
3017M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003018P: Bruce Allan
3019M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003020P: PJ Waskiewicz
3021M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003022P: John Ronciak
3023M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003024L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003025W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003027F: drivers/net/e100.c
3028F: drivers/net/e1000/
3029F: drivers/net/e1000e/
3030F: drivers/net/igb/
3031F: drivers/net/ixgb/
3032F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
James Ketrenos826d2ab2005-11-07 18:56:59 -06003034INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003035P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003036M: yi.zhu@intel.com
3037P: James Ketrenos
3038M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003039P: Reinette Chatre
3040M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003041L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003042L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003043W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003044W: http://ipw2100.sourceforge.net
3045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003046F: Documentation/networking/README.ipw2100
3047F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003048
3049INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003050P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003051M: yi.zhu@intel.com
3052P: James Ketrenos
3053M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003054P: Reinette Chatre
3055M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003056L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003057L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003058W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003059W: http://ipw2200.sourceforge.net
3060S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003061F: Documentation/networking/README.ipw2200
3062F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003063
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003064INTEL WIRELESS WIMAX CONNECTION 2400
3065P: Inaky Perez-Gonzalez
3066M: inaky.perez-gonzalez@intel.com
3067M: linux-wimax@intel.com
3068L: wimax@linuxwimax.org
3069S: Supported
3070W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003071F: Documentation/wimax/README.i2400m
3072F: drivers/net/wimax/i2400m/
3073F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003074
Zhu Yib481de92007-09-25 17:54:57 -07003075INTEL WIRELESS WIFI LINK (iwlwifi)
3076P: Zhu Yi
3077M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003078P: Reinette Chatre
3079M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003080L: linux-wireless@vger.kernel.org
3081L: ipw3945-devel@lists.sourceforge.net
3082W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003083T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003085F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003086
Ralf Baechlecb109a02007-08-30 23:56:30 -07003087IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088P: Ralf Baechle
3089M: ralf@linux-mips.org
3090L: linux-mips@linux-mips.org
3091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003092F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Ralf Baechlecb109a02007-08-30 23:56:30 -07003094IOC3 SERIAL DRIVER
3095P: Pat Gefre
3096M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003097L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003099F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003100
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003101IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102P: Juanjo Ciarlante
3103M: jjciarla@raiz.uncu.edu.ar
3104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Francois Romieu1202d6f2007-09-17 17:13:55 -07003107IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3108P: Francois Romieu
3109M: romieu@fr.zoreil.com
3110P: Sorbica Shieh
3111M: sorbica@icplus.com.tw
3112P: Jesse Huang
3113M: jesse@icplus.com.tw
3114L: netdev@vger.kernel.org
3115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003116F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003117
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003118IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003119P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003120M: infinipath@qlogic.com
3121L: general@lists.openfabrics.org
3122T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003124F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003125
Corey Minyard4409ebe2006-04-20 02:43:12 -07003126IPMI SUBSYSTEM
3127P: Corey Minyard
3128M: minyard@acm.org
3129L: openipmi-developer@lists.sourceforge.net
3130W: http://openipmi.sourceforge.net/
3131S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003132F: Documentation/IPMI.txt
3133F: drivers/char/ipmi/
3134F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003136IPS SCSI RAID DRIVER
3137P: Adaptec OEM Raid Solutions
3138M: aacraid@adaptec.com
3139L: linux-scsi@vger.kernel.org
3140W: http://www.adaptec.com/
3141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003143
3144IPVS
3145P: Wensong Zhang
3146M: wensong@linux-vs.org
3147P: Simon Horman
3148M: horms@verge.net.au
3149P: Julian Anastasov
3150M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003151L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003154F: Documentation/networking/ipvs-sysctl.txt
3155F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Randy Dunlape7839f22008-10-12 16:11:45 -07003157IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003158P: Jiri Kosina
3159M: jkosina@suse.cz
3160P: David Sterba
3161M: dsterba@suse.cz
3162S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003163T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003164F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003165
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003166IPX NETWORK LAYER
3167P: Arnaldo Carvalho de Melo
3168M: acme@ghostprotocols.net
3169L: netdev@vger.kernel.org
3170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003171F: include/linux/ipx.h
3172F: include/net/ipx.h
3173F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003176P: Samuel Ortiz
3177M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003178L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003180S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003181T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003182F: Documentation/networking/irda.txt
3183F: drivers/net/irda/
3184F: include/net/irda/
3185F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003187ISAPNP
3188P: Jaroslav Kysela
3189M: perex@perex.cz
3190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003191F: Documentation/isapnp.txt
3192F: drivers/pnp/isapnp/
3193F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194
Mike Christie14816b12007-11-28 16:22:06 -08003195ISCSI
3196P: Mike Christie
3197M: michaelc@cs.wisc.edu
3198L: open-iscsi@googlegroups.com
3199W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003200T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003202F: drivers/scsi/*iscsi*
3203F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205ISDN SUBSYSTEM
3206P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003207M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003208L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003210T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003212F: Documentation/isdn/
3213F: drivers/isdn/
3214F: include/linux/isdn.h
3215F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
3217ISDN SUBSYSTEM (Eicon active card driver)
3218P: Armin Schindler
3219M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003220L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221W: http://www.melware.de
3222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003223F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Hans Verkuil91821ff2007-12-02 09:35:33 -03003225IVTV VIDEO4LINUX DRIVER
3226P: Hans Verkuil
3227M: hverkuil@xs4all.nl
3228L: ivtv-devel@ivtvdriver.org
3229L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003230L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003231T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003232W: http://www.ivtvdriver.org
3233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003234F: Documentation/video4linux/*.ivtv
3235F: drivers/media/video/ivtv/
3236F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003237
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003238JFS FILESYSTEM
3239P: Dave Kleikamp
3240M: shaggy@austin.ibm.com
3241L: jfs-discussion@lists.sourceforge.net
3242W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003243T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003245F: Documentation/filesystems/jfs.txt
3246F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003247
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003248JME NETWORK DRIVER
3249P: Guo-Fu Tseng
3250M: cooldavid@cooldavid.org
3251L: netdev@vger.kernel.org
3252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003253F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3256P: David Woodhouse
3257M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003258L: linux-mtd@lists.infradead.org
3259W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003261F: fs/jffs2/
3262F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Josh Triplettde456d32006-07-30 03:04:00 -07003264JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003265P: Stephen Tweedie
3266M: sct@redhat.com
3267P: Andrew Morton
3268M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003269L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: fs/jbd*/
3272F: include/linux/ext*jbd*.h
3273F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003274
Rudolf Marek4660cb32006-10-08 22:01:26 +02003275K8TEMP HARDWARE MONITORING DRIVER
3276P: Rudolf Marek
3277M: r.marek@assembler.cz
3278L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003280F: Documentation/hwmon/k8temp
3281F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
3283KCONFIG
3284P: Roman Zippel
3285M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003286L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003288F: Documentation/kbuild/kconfig-language.txt
3289F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Vivek Goyalea6c2082006-05-20 14:59:55 -07003291KDUMP
3292P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003293M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003294P: Haren Myneni
3295M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003296L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003297W: http://lse.sourceforge.net/kdump/
3298S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003299F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301KERNEL AUTOMOUNTER (AUTOFS)
3302P: H. Peter Anvin
3303M: hpa@zytor.com
3304L: autofs@linux.kernel.org
3305S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003306F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308KERNEL AUTOMOUNTER v4 (AUTOFS4)
3309P: Ian Kent
3310M: raven@themaw.net
3311L: autofs@linux.kernel.org
3312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003313F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Joe Perches7d2c86b2009-04-07 20:59:01 -07003315KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316P: Sam Ravnborg
3317M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003318T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3319T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003320L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003322F: Documentation/kbuild/
3323F: Makefile
3324F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326KERNEL JANITORS
3327P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003328L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330S: Maintained
3331
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003332KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003333P: J. Bruce Fields
3334M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003336M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003337L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003340F: fs/nfsd/
3341F: include/linux/nfsd/
3342F: fs/lockd/
3343F: fs/nfs_common/
3344F: net/sunrpc/
3345F: include/linux/lockd/
3346F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Avi Kivity426d62e2006-12-13 00:34:03 -08003348KERNEL VIRTUAL MACHINE (KVM)
3349P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003350M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003351L: kvm@vger.kernel.org
3352W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003354F: Documentation/*/kvm.txt
3355F: arch/*/kvm/
3356F: arch/*/include/asm/kvm*
3357F: include/linux/kvm*
3358F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003359
Joerg Roedelad8003d2008-09-10 20:01:07 +02003360KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3361P: Joerg Roedel
3362M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003363L: kvm@vger.kernel.org
3364W: http://kvm.qumranet.com
3365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003366F: arch/x86/include/asm/svm.h
3367F: arch/x86/kvm/kvm_svm.h
3368F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003369
Hollis Blanchard513014b2008-04-16 23:28:08 -05003370KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3371P: Hollis Blanchard
3372M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003373L: kvm-ppc@vger.kernel.org
3374W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003376F: arch/powerpc/include/asm/kvm*
3377F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003378
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003379KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003380P: Xiantao Zhang
3381M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003382L: kvm-ia64@vger.kernel.org
3383W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003384S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003385F: Documentation/ia64/kvm.txt
3386F: arch/ia64/include/asm/kvm*
3387F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003388
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003389KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3390P: Carsten Otte
3391M: cotte@de.ibm.com
3392P: Christian Borntraeger
3393M: borntraeger@de.ibm.com
3394M: linux390@de.ibm.com
3395L: linux-s390@vger.kernel.org
3396W: http://www.ibm.com/developerworks/linux/linux390/
3397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003398F: Documentation/s390/kvm.txt
3399F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003400F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003401
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003402KEXEC
3403P: Eric Biederman
3404M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003405W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003406L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: include/linux/kexec.h
3409F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003410
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003411KGDB
3412P: Jason Wessel
3413M: jason.wessel@windriver.com
3414L: kgdb-bugreport@lists.sourceforge.net
3415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003416F: Documentation/DocBook/kgdb.tmpl
3417F: drivers/misc/kgdbts.c
3418F: drivers/serial/kgdboc.c
3419F: include/linux/kgdb.h
3420F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003421
Pekka Enberg456db8c2008-04-28 22:47:29 +03003422KMEMCHECK
3423P: Vegard Nossum
3424M: vegardno@ifi.uio.no
3425P Pekka Enberg
3426M: penberg@cs.helsinki.fi
3427L: linux-kernel@vger.kernel.org
3428S: Maintained
3429
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003430KMEMLEAK
3431P: Catalin Marinas
3432M: catalin.marinas@arm.com
3433L: linux-kernel@vger.kernel.org
3434S: Maintained
3435F: Documentation/kmemleak.txt
3436F: include/linux/kmemleak.h
3437F: mm/kmemleak.c
3438F: mm/kmemleak-test.c
3439
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003440KMEMTRACE
3441P: Eduard - Gabriel Munteanu
3442M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003443S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003444F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003445F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003446F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003447
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003448KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003449P: Ananth N Mavinakayanahalli
3450M: ananth@in.ibm.com
3451P: Anil S Keshavamurthy
3452M: anil.s.keshavamurthy@intel.com
3453P: David S. Miller
3454M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003455P: Masami Hiramatsu
3456M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003458F: Documentation/kprobes.txt
3459F: include/linux/kprobes.h
3460F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003461
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003462KS0108 LCD CONTROLLER DRIVER
3463P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003464M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003465W: http://miguelojeda.es/auxdisplay.htm
3466W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003468F: Documentation/auxdisplay/ks0108
3469F: drivers/auxdisplay/ks0108.c
3470F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003474S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003475F: Documentation/networking/lapb-module.txt
3476F: include/*/lapb.h
3477F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479LASI 53c700 driver for PARISC
3480P: James E.J. Bottomley
3481M: James.Bottomley@HansenPartnership.com
3482L: linux-scsi@vger.kernel.org
3483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003484F: Documentation/scsi/53c700.txt
3485F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
Richard Purdie263de9b2006-05-15 09:44:16 -07003487LED SUBSYSTEM
3488P: Richard Purdie
3489M: rpurdie@rpsys.net
3490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003491F: drivers/leds/
3492F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494LEGO USB Tower driver
3495P: Juergen Stuber
3496M: starblue@users.sourceforge.net
3497L: legousb-devel@lists.sourceforge.net
3498W: http://legousb.sourceforge.net/
3499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003500F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501
Rusty Russell568a17f2007-10-25 14:12:24 +10003502LGUEST
3503P: Rusty Russell
3504M: rusty@rustcorp.com.au
3505L: lguest@ozlabs.org
3506W: http://lguest.ozlabs.org/
3507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003508F: Documentation/lguest/
3509F: arch/x86/lguest/
3510F: drivers/lguest/
3511F: include/linux/lguest*.h
3512F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003513
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514LINUX FOR IBM pSERIES (RS/6000)
3515P: Paul Mackerras
3516M: paulus@au.ibm.com
3517W: http://www.ibm.com/linux/ltc/projects/ppc
3518S: Supported
3519
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003520LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003521P: Benjamin Herrenschmidt
3522M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003523P: Paul Mackerras
3524M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525W: http://www.penguinppc.org/
3526L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003527T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528S: Supported
3529
3530LINUX FOR POWER MACINTOSH
3531P: Benjamin Herrenschmidt
3532M: benh@kernel.crashing.org
3533W: http://www.penguinppc.org/
3534L: linuxppc-dev@ozlabs.org
3535S: Maintained
3536
Grant Likely77a76362008-07-12 12:11:43 -06003537LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003538P: Grant Likely
3539M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003541T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542S: Maintained
3543
3544LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003545P: Josh Boyer
3546M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547P: Matt Porter
3548M: mporter@kernel.crashing.org
3549W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003550L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003551T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552S: Maintained
3553
Grant Likely260c02a2007-10-02 12:15:34 +10003554LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3555P: Grant Likely
3556M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003557W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003558L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003559T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560S: Maintained
3561
Tom Rinie93adf12005-07-26 12:49:53 -07003562LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003563P: Vitaly Bordug
3564M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003565P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003566M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003567W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003568L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003569S: Maintained
3570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003572P: Kumar Gala
3573M: galak@kernel.crashing.org
3574W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003575L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003576S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Olof Johanssonab06ff32006-09-06 14:44:54 -05003578LINUX FOR POWERPC PA SEMI PWRFICIENT
3579P: Olof Johansson
3580M: olof@lixom.net
3581W: http://www.pasemi.com/
3582L: linuxppc-dev@ozlabs.org
3583S: Supported
3584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585LINUX SECURITY MODULE (LSM) FRAMEWORK
3586P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003587M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003588L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003589T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590S: Supported
3591
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003592LLC (802.2)
3593P: Arnaldo Carvalho de Melo
3594M: acme@ghostprotocols.net
3595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: include/linux/llc.h
3597F: include/net/llc*
3598F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003599
Pavel Machek455fbdd2008-11-12 13:27:02 -08003600LIS3LV02D ACCELEROMETER DRIVER
3601P: Eric Piel
3602M: eric.piel@tremplin-utc.net
3603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003604F: Documentation/hwmon/lis3lv02d
3605F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003606
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607LM83 HARDWARE MONITOR DRIVER
3608P: Jean Delvare
3609M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003610L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003612F: Documentation/hwmon/lm83
3613F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
3615LM90 HARDWARE MONITOR DRIVER
3616P: Jean Delvare
3617M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003618L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003620F: Documentation/hwmon/lm90
3621F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003623LOCKDEP AND LOCKSTAT
3624P: Peter Zijlstra
3625M: peterz@infradead.org
3626P: Ingo Molnar
3627M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003628T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003630F: Documentation/lockdep*.txt
3631F: Documentation/lockstat.txt
3632F: include/linux/lockdep.h
3633F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003634
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003635LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636P: Richard Russon (FlatCap)
3637M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003638L: linux-ntfs-dev@lists.sourceforge.net
3639W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003641F: Documentation/ldm.txt
3642F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003644LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3645P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003646M: Eric.Moore@lsi.com
3647M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003648L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003649L: linux-scsi@vger.kernel.org
3650W: http://www.lsilogic.com/support
3651S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003652F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3655P: Matthew Wilcox
3656M: matthew@wil.cx
3657L: linux-scsi@vger.kernel.org
3658S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003659F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Mike Frysinger81365c32008-10-29 14:01:12 -07003661LTP (Linux Test Project)
3662P: Subrata Modak
3663M: subrata@linux.vnet.ibm.com
3664P: Mike Frysinger
3665M: vapier@gentoo.org
3666L: ltp-list@lists.sourceforge.net (subscribers-only)
3667W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003668T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003669S: Maintained
3670
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003671M32R ARCHITECTURE
3672P: Hirokazu Takata
3673M: takata@linux-m32r.org
3674L: linux-m32r@ml.linux-m32r.org
3675L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3676W: http://www.linux-m32r.org/
3677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003678F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680M68K ARCHITECTURE
3681P: Geert Uytterhoeven
3682M: geert@linux-m68k.org
3683P: Roman Zippel
3684M: zippel@linux-m68k.org
3685L: linux-m68k@lists.linux-m68k.org
3686W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003687T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003690F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692M68K ON APPLE MACINTOSH
3693P: Joshua Thompson
3694M: funaho@jurai.org
3695W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003696L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003698F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
3700M68K ON HP9000/300
3701P: Philip Blundell
3702M: philb@gnu.org
3703W: http://www.tazenda.demon.co.uk/phil/linux-hp
3704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
Jiri Benc64a327a2007-05-05 11:47:08 -07003707MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003708P: Johannes Berg
3709M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003710L: linux-wireless@vger.kernel.org
3711W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003712T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003714F: Documentation/networking/mac80211-injection.txt
3715F: include/net/mac80211.h
3716F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003717
Stefano Brivio1036d862007-12-23 04:46:27 +01003718MAC80211 PID RATE CONTROL
3719P: Stefano Brivio
3720M: stefano.brivio@polimi.it
3721P: Mattias Nissler
3722M: mattias.nissler@gmx.de
3723L: linux-wireless@vger.kernel.org
3724W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003725T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003727F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003728
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003729MACVLAN DRIVER
3730P: Patrick McHardy
3731M: kaber@trash.net
3732L: netdev@vger.kernel.org
3733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003734F: drivers/net/macvlan.c
3735F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003736
Michael Kerriskfaf16682005-07-31 22:34:47 -07003737MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003738P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003739M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003740W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003741L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003742S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003743
Stefano Brivio74cda162007-11-19 20:27:46 +01003744MARVELL LIBERTAS WIRELESS DRIVER
3745P: Dan Williams
3746M: dcbw@redhat.com
3747L: libertas-dev@lists.infradead.org
3748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003750
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003751MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003752P: Lennert Buytenhek
3753M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003754L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003755S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003756F: drivers/net/mv643xx_eth.*
3757F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
Pierre Ossman2a695672009-03-16 19:52:26 +01003759MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3760P: Nicolas Pitre
3761M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003762S: Maintained
3763
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003764MARVELL YUKON / SYSKONNECT DRIVER
3765P: Mirko Lindner
3766M: mlindner@syskonnect.de
3767P: Ralph Roesler
3768M: rroesler@syskonnect.de
3769W: http://www.syskonnect.com
3770S: Supported
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772MATROX FRAMEBUFFER DRIVER
3773P: Petr Vandrovec
3774M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003775L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003777F: drivers/video/matrox/matroxfb_*
3778F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003780MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3781P: Hans J. Koch
3782M: hjk@linutronix.de
3783L: lm-sensors@lm-sensors.org
3784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003785F: Documentation/hwmon/max6650
3786F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003787
Joe Perches127c49a2009-04-08 08:34:04 -07003788MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3789P: Mauro Carvalho Chehab
3790M: mchehab@infradead.org
3791P: LinuxTV.org Project
3792L: linux-media@vger.kernel.org
3793W: http://linuxtv.org
3794T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3795S: Maintained
3796F: Documentation/dvb/
3797F: Documentation/video4linux/
3798F: drivers/media/
3799F: include/media/
3800F: include/linux/dvb/
3801F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003802
3803MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003804P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003805M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003806L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003807W: http://megaraid.lsilogic.com
3808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: Documentation/scsi/megaraid.txt
3810F: drivers/scsi/megaraid.*
3811F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003812
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813MEMORY MANAGEMENT
3814L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815W: http://www.linux-mm.org
3816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003817F: include/linux/mm.h
3818F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003819
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003820MEMORY RESOURCE CONTROLLER
3821P: Balbir Singh
3822M: balbir@linux.vnet.ibm.com
3823P: Pavel Emelyanov
3824M: xemul@openvz.org
3825P: KAMEZAWA Hiroyuki
3826M: kamezawa.hiroyu@jp.fujitsu.com
3827L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003828S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003829F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003830
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831MEMORY TECHNOLOGY DEVICES (MTD)
3832P: David Woodhouse
3833M: dwmw2@infradead.org
3834W: http://www.linux-mtd.infradead.org/
3835L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003836T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003838F: drivers/mtd/
3839F: include/linux/mtd/
3840F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Michal Simekc6375b02009-03-27 14:25:52 +01003842MICROBLAZE ARCHITECTURE
3843P: Michal Simek
3844M: monstr@monstr.eu
3845L: microblaze-uclinux@itee.uq.edu.au
3846W: http://www.monstr.eu/fdt/
3847T: git git://git.monstr.eu/linux-2.6-microblaze.git
3848S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003849F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
3851MICROTEK X6 SCANNER
3852P: Oliver Neukum
3853M: oliver@neukum.name
3854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003855F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
3857MIPS
3858P: Ralf Baechle
3859M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003860W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003862T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003864F: Documentation/mips/
3865F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
3867MISCELLANEOUS MCA-SUPPORT
3868P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003869M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003871F: Documentation/ia64/mca.txt
3872F: Documentation/mca.txt
3873F: drivers/mca/
3874F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
3876MODULE SUPPORT
3877P: Rusty Russell
3878M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003880F: include/linux/module.h
3881F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3884P: Stelian Pop
3885M: stelian@popies.net
3886W: http://popies.net/meye/
3887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003888F: Documentation/video4linux/meye.txt
3889F: drivers/media/video/meye.*
3890F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Pavel Pisac58ff042007-05-16 01:10:41 +02003892MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3893P: Pavel Pisa
3894M: ppisa@pikron.com
3895L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003897F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899MOUSE AND MISC DEVICES [GENERAL]
3900P: Alessandro Rubini
3901M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003903F: drivers/input/mouse/
3904F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Jiri Slabyb9705b62008-04-30 00:53:48 -07003906MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003907P: Jiri Slaby
3908M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003910F: Documentation/serial/moxa-smartio
3911F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003912
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003913MSI LAPTOP SUPPORT
3914P: Lennart Poettering
3915M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003916W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003917W: http://0pointer.de/lennart/tchibo.html
3918S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003919F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003920
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003921MULTIFUNCTION DEVICES (MFD)
3922P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003923M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003924T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003927
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003928MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003929P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003930M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: drivers/mmc/
3933F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003934
David Brownell15a05802007-08-08 09:12:54 -07003935MULTIMEDIA CARD (MMC) ETC. OVER SPI
3936P: David Brownell
3937M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003938S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003939F: drivers/mmc/host/mmc_spi.c
3940F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942MULTISOUND SOUND DRIVER
3943P: Andrew Veliath
3944M: andrewtv@usa.net
3945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003946F: Documentation/sound/oss/MultiSound
3947F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Jiri Slabyd7354102006-12-08 02:38:35 -08003949MULTITECH MULTIPORT CARD (ISICOM)
3950P: Jiri Slaby
3951M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: drivers/char/isicom.c
3954F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003955
Felipe Balbi550a7372008-07-24 12:27:36 +03003956MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003957P: Felipe Balbi
3958M: felipe.balbi@nokia.com
3959L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003960T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003962F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003963
Brice Goglin2d3cf582008-05-17 12:45:36 +02003964MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3965P: Andrew Gallatin
3966M: gallatin@myri.com
3967P: Brice Goglin
3968M: brice@myri.com
3969L: netdev@vger.kernel.org
3970W: http://www.myri.com/scs/download-Myri10GE.html
3971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003972F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003973
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003975P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976M: thockin@hockin.org
3977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003978F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
3980NCP FILESYSTEM
3981P: Petr Vandrovec
3982M: vandrove@vc.cvut.cz
3983L: linware@sh.cvut.cz
3984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003985F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
3987NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3988P: James E.J. Bottomley
3989M: James.Bottomley@HansenPartnership.com
3990L: linux-scsi@vger.kernel.org
3991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003992F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003994NETEFFECT IWARP RNIC DRIVER (IW_NES)
3995P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003996M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003997P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003998M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003999L: general@lists.openfabrics.org
4000W: http://www.neteffect.com
4001S: Supported
4002F: drivers/infiniband/hw/nes/
4003
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004004NETEM NETWORK EMULATOR
4005P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08004006M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07004007L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004009F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004010
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004011NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004012P: Ramkrishna Vepa
4013M: ram.vepa@neterion.com
4014P: Rastapur Santosh
4015M: santosh.rastapur@neterion.com
4016P: Sivakumar Subramani
4017M: sivakumar.subramani@neterion.com
4018P: Sreenivasa Honnur
4019M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004020P: Anil Murthy
4021M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004022L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004023W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4024W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004025S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004026F: Documentation/networking/s2io.txt
4027F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029NETFILTER/IPTABLES/IPCHAINS
4030P: Rusty Russell
4031P: Marc Boucher
4032P: James Morris
4033P: Harald Welte
4034P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004035P: Patrick McHardy
4036M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004037L: netfilter-devel@vger.kernel.org
4038L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004039L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040W: http://www.netfilter.org/
4041W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004043F: include/linux/netfilter*
4044F: include/linux/netfilter/
4045F: include/net/netfilter/
4046F: net/*/netfilter.c
4047F: net/*/netfilter/
4048F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
Paul Moore4cc67732006-09-25 15:57:13 -07004050NETLABEL
4051P: Paul Moore
4052M: paul.moore@hp.com
4053W: http://netlabel.sf.net
4054L: netdev@vger.kernel.org
4055S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004056F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004057F: include/net/netlabel.h
4058F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060NETROM NETWORK LAYER
4061P: Ralf Baechle
4062M: ralf@linux-mips.org
4063L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004064W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004066F: include/linux/netrom.h
4067F: include/net/netrom.h
4068F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004070NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071P: Paul Clements
4072M: Paul.Clements@steeleye.com
4073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: Documentation/blockdev/nbd.txt
4075F: drivers/block/nbd.c
4076F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
4078NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004079P: David S. Miller
4080M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004081L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004082W: http://www.linuxfoundation.org/en/Net
4083T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004085F: net/
4086F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
4088NETWORKING [IPv4/IPv6]
4089P: David S. Miller
4090M: davem@davemloft.net
4091P: Alexey Kuznetsov
4092M: kuznet@ms2.inr.ac.ru
4093P: Pekka Savola (ipv6)
4094M: pekkas@netcore.fi
4095P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004096M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097P: Hideaki YOSHIFUJI
4098M: yoshfuji@linux-ipv6.org
4099P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004100M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004101L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004102T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004104F: net/ipv4/
4105F: net/ipv6/
4106F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
James Morris10e2ff12007-08-25 14:41:28 -07004108NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4109P: Paul Moore
4110M: paul.moore@hp.com
4111L: netdev@vger.kernel.org
4112S: Maintained
4113
John W. Linville29f8f632006-01-18 14:52:48 -08004114NETWORKING [WIRELESS]
4115P: John W. Linville
4116M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004117L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004118T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004120F: net/wireless/
4121F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004122F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004123
Joe Perches788873a2009-04-16 09:38:45 +00004124NETWORKING DRIVERS
4125L: netdev@vger.kernel.org
4126W: http://www.linuxfoundation.org/en/Net
4127T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4128S: Odd Fixes
4129F: drivers/net/
4130
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004131NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004132P: Dhananjay Phadke
4133M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004134L: netdev@vger.kernel.org
4135W: http://www.netxen.com
4136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004137F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004138
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004139NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004141M: Trond.Myklebust@netapp.com
4142L: linux-nfs@vger.kernel.org
4143W: http://client.linux-nfs.org
4144T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004146F: fs/lockd/
4147F: fs/nfs/
4148F: fs/nfs_common/
4149F: net/sunrpc/
4150F: include/linux/lockd/
4151F: include/linux/nfs*
4152F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153
4154NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004155P: Jan-Pascal van Best
4156M: janpascal@vanbest.org
4157P: Andreas Mohr
4158M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004159L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004163NILFS2 FILESYSTEM
4164P: KONISHI Ryusuke
4165M: konishi.ryusuke@lab.ntt.co.jp
4166L: users@nilfs.org
4167W: http://www.nilfs.org/en/
4168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004169F: Documentation/filesystems/nilfs2.txt
4170F: fs/nilfs2/
4171F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004172
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4174P: YOKOTA Hiroshi
4175M: yokota@netlab.is.tsukuba.ac.jp
4176W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: Documentation/scsi/NinjaSCSI.txt
4179F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4182P: GOTO Masanori
4183M: gotom@debian.or.jp
4184P: YOKOTA Hiroshi
4185M: yokota@netlab.is.tsukuba.ac.jp
4186W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004188F: Documentation/scsi/NinjaSCSI.txt
4189F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191NTFS FILESYSTEM
4192P: Anton Altaparmakov
4193M: aia21@cantab.net
4194L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004195W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004196T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: Documentation/filesystems/ntfs.txt
4199F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004201NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004202P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004203M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004204L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004206F: drivers/video/riva/
4207F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Tony Lindgrenf5525782009-05-28 13:23:53 -07004209OMAP SUPPORT
4210P: Tony Lindgren <tony@atomide.com>
4211M: tony@atomide.com
4212L: linux-omap@vger.kernel.org
4213W: http://www.muru.com/linux/omap/
4214W: http://linux.omap.com/
4215T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4216S: Maintained
4217F: arch/arm/*omap*
4218
4219OMAP CLOCK FRAMEWORK SUPPORT
4220P: Paul Walmsley
4221M: paul@pwsan.com
4222L: linux-omap@vger.kernel.org
4223S: Maintained
4224F: arch/arm/*omap*/*clock*
4225
4226OMAP POWER MANAGEMENT SUPPORT
4227P: Kevin Hilman
4228M: khilman@deeprootsystems.com
4229L: linux-omap@vger.kernel.org
4230S: Maintained
4231F: arch/arm/*omap*/*pm*
4232
4233OMAP AUDIO SUPPORT
4234P: Jarkko Nikula
4235M: jhnikula@gmail.com
4236L: alsa-devel@alsa-project.org (subscribers-only)
4237L: linux-omap@vger.kernel.org
4238S: Maintained
4239F: sound/soc/omap/
4240
4241OMAP FRAMEBUFFER SUPPORT
4242P: Imre Deak
4243M: imre.deak@nokia.com
4244L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4245L: linux-omap@vger.kernel.org
4246S: Maintained
4247F: drivers/video/omap/
4248
4249OMAP MMC SUPPORT
4250P: Jarkko Lavinen
4251M: jarkko.lavinen@nokia.com
4252L: linux-kernel@vger.kernel.org
4253L: linux-omap@vger.kernel.org
4254S: Maintained
4255F: drivers/mmc/host/*omap*
4256
4257OMAP RANDOM NUMBER GENERATOR SUPPORT
4258P: Deepak Saxena
4259M: dsaxena@plexity.net
4260S: Maintained
4261F: drivers/char/hw_random/omap-rng.c
4262
4263OMAP USB SUPPORT
4264P: Felipe Balbi
4265M: felipe.balbi@nokia.com
4266P: David Brownell
4267M: dbrownell@users.sourceforge.net
4268L: linux-usb@vger.kernel.org
4269L: linux-omap@vger.kernel.org
4270S: Maintained
4271
Bob Copeland0ad122d2008-07-25 19:45:18 -07004272OMFS FILESYSTEM
4273P: Bob Copeland
4274M: me@bobcopeland.com
4275L: linux-karma-devel@lists.sourceforge.net
4276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004277F: Documentation/filesystems/omfs.txt
4278F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004279
Harald Weltec1986ee2005-11-13 16:06:29 -08004280OMNIKEY CARDMAN 4000 DRIVER
4281P: Harald Welte
4282M: laforge@gnumonks.org
4283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004284F: drivers/char/pcmcia/cm4000_cs.c
4285F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004286
Harald Welte77c44ab2005-11-13 16:06:26 -08004287OMNIKEY CARDMAN 4040 DRIVER
4288P: Harald Welte
4289M: laforge@gnumonks.org
4290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004291F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004292
Jonathan Corbet77d51402007-03-22 19:44:17 -03004293OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004294P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004295M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004296L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004297T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004299F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004300
Thomas Gleixner431bca72007-05-02 09:31:35 +02004301ONENAND FLASH DRIVER
4302P: Kyungmin Park
4303M: kyungmin.park@samsung.com
4304L: linux-mtd@lists.infradead.org
4305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004306F: drivers/mtd/onenand/
4307F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309ONSTREAM SCSI TAPE DRIVER
4310P: Willem Riede
4311M: osst@riede.org
4312L: osst-users@lists.sourceforge.net
4313L: linux-scsi@vger.kernel.org
4314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004315F: drivers/scsi/osst*
4316F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004318OPENCORES I2C BUS DRIVER
4319P: Peter Korsgaard
4320M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004321L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004323F: Documentation/i2c/busses/i2c-ocores
4324F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004325
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004327P: Robert Richter
4328M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329L: oprofile-list@lists.sf.net
4330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: arch/*/oprofile/
4332F: drivers/oprofile/
4333F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004335ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4336P: Mark Fasheh
4337M: mfasheh@suse.com
4338P: Joel Becker
4339M: joel.becker@oracle.com
4340L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4341W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004342T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004343S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004344F: Documentation/filesystems/ocfs2.txt
4345F: Documentation/filesystems/dlmfs.txt
4346F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004347
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348ORINOCO DRIVER
4349P: Pavel Roskin
4350M: proski@gnu.org
4351P: David Gibson
4352M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004353L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004354L: orinoco-users@lists.sourceforge.net
4355L: orinoco-devel@lists.sourceforge.net
4356W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
Boaz Harrosh68274792009-01-25 17:24:14 +02004360OSD LIBRARY
4361P: Boaz Harrosh
4362M: bharrosh@panasas.com
4363P: Benny Halevy
4364M: bhalevy@panasas.com
4365L: osd-dev@open-osd.org
4366W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004367T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004368S: Maintained
4369
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004370P54 WIRELESS DRIVER
4371P: Michael Wu
4372M: flamingice@sourmilk.net
4373L: linux-wireless@vger.kernel.org
4374W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004375T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004377F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004378
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004379PA SEMI ETHERNET DRIVER
4380P: Olof Johansson
4381M: olof@lixom.net
4382L: netdev@vger.kernel.org
4383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004384F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004385
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004386PA SEMI SMBUS DRIVER
4387P: Olof Johansson
4388M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004389L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004391F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004392
Harald Welte709ee532008-09-23 17:46:57 +02004393PANASONIC LAPTOP ACPI EXTRAS DRIVER
4394P: Harald Welte
4395M: laforge@gnumonks.org
4396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004398
David Howells4fa97182008-10-13 10:42:44 +01004399PANASONIC MN10300/AM33 PORT
4400P: David Howells
4401M: dhowells@redhat.com
4402P: Koichi Yasutake
4403M: yasutake.koichi@jp.panasonic.com
4404L: linux-am33-list@redhat.com (moderated for non-subscribers)
4405W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: Documentation/mn10300/
4408F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004411L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004412S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004413F: drivers/parport/
4414F: include/linux/parport*.h
4415F: drivers/char/ppdev.c
4416F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004418PARAVIRT_OPS INTERFACE
4419P: Jeremy Fitzhardinge
4420M: jeremy@xensource.com
4421P: Chris Wright
4422M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004423P: Alok Kataria
4424M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004425P: Rusty Russell
4426M: rusty@rustcorp.com.au
4427L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004428S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004429F: Documentation/ia64/paravirt_ops.txt
4430F: arch/*/kernel/paravirt*
4431F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4434P: Tim Waugh
4435M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004436L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437W: http://www.torque.net/linux-pp.html
4438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004439F: Documentation/blockdev/paride.txt
4440F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
4442PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004443P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004444M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004445P: Helge Deller
4446M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004447L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004449T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: arch/parisc/
4452F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
Jim Cromie1662d322006-10-06 00:43:59 -07004454PC87360 HARDWARE MONITORING DRIVER
4455P: Jim Cromie
4456M: jim.cromie@gmail.com
4457L: lm-sensors@lm-sensors.org
4458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004459F: Documentation/hwmon/pc87360
4460F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004461
4462PC8736x GPIO DRIVER
4463P: Jim Cromie
4464M: jim.cromie@gmail.com
4465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004466F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004467
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004468PCA9532 LED DRIVER
4469P: Riku Voipio
4470M: riku.voipio@iki.fi
4471S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004472F: drivers/leds/leds-pca9532.c
4473F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004474
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004475PCI ERROR RECOVERY
4476P: Linas Vepstas
4477M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004478L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004479S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004480F: Documentation/PCI/pci-error-recovery.txt
4481F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004482
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004484P: Jesse Barnes
4485M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004486L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004487T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004489F: Documentation/PCI/
4490F: drivers/pci/
4491F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004493PCIE HOTPLUG DRIVER
4494P: Kristen Carlson Accardi
4495M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004496L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004498F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004499
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004501P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004502L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004503W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004504T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004506F: Documentation/pcmcia/
4507F: drivers/pcmcia/
4508F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509
4510PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004511P: Don Fry
4512M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004513L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004515F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004517PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004518P: Balbir Singh
4519M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004521F: include/linux/delayacct.h
4522F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004523
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004524PERFORMANCE COUNTER SUBSYSTEM
4525P: Peter Zijlstra
4526M: a.p.zijlstra@chello.nl
4527P: Paul Mackerras
4528M: paulus@samba.org
4529P: Ingo Molnar
4530M: mingo@elte.hu
4531L: linux-kernel@vger.kernel.org
4532S: Supported
4533
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004534PERSONALITY HANDLING
4535P: Christoph Hellwig
4536M: hch@infradead.org
4537L: linux-abi-devel@lists.sourceforge.net
4538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004539F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004542P: Joern Engel
4543M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544L: linux-mtd@lists.infradead.org
4545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004546F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
Peter Osterlund249a6772005-09-27 21:45:30 -07004548PKTCDVD DRIVER
4549P: Peter Osterlund
4550M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004552F: drivers/block/pktcdvd.c
4553F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004556P: Thomas Gleixner
4557M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004559F: fs/timerfd.c
4560F: include/linux/timer*
4561F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Anton Vorontsov3be86142007-07-15 04:43:36 +04004563POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4564P: Anton Vorontsov
4565M: cbou@mail.ru
4566P: David Woodhouse
4567M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004568T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004570F: include/linux/power_supply.h
4571F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004572
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573PNP SUPPORT
4574P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004575M: abelay@mit.edu
4576P: Bjorn Helgaas
4577M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Vitaly Wool999445d2007-01-04 13:07:03 +01004581PNXxxxx I2C DRIVER
4582P: Vitaly Wool
4583M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004584L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004586F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004587
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588PPP PROTOCOL DRIVERS AND COMPRESSORS
4589P: Paul Mackerras
4590M: paulus@samba.org
4591L: linux-ppp@vger.kernel.org
4592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004593F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
4595PPP OVER ATM (RFC 2364)
4596P: Mitchell Blank Jr
4597M: mitch@sfgoth.com
4598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: net/atm/pppoatm.c
4600F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601
4602PPP OVER ETHERNET
4603P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004604M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004606F: drivers/net/pppoe.c
4607F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608
James Chapmana6d23702007-06-27 15:53:17 -07004609PPP OVER L2TP
4610P: James Chapman
4611M: jchapman@katalix.com
4612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004613F: drivers/net/pppol2tp.c
4614F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004615
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004616PPS SUPPORT
4617P: Rodolfo Giometti
4618M: giometti@enneenne.com
4619W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4620L: linuxpps@ml.enneenne.com (subscribers-only)
4621S: Maintained
4622
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623PREEMPTIBLE KERNEL
4624P: Robert Love
4625M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626L: kpreempt-tech@lists.sourceforge.net
4627W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004629F: Documentation/preempt-locking.txt
4630F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
4632PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004633P: Luis R. Rodriguez
4634M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004635L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636W: http://prism54.org
4637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004638F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639
4640PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4641P: Peter Denison
4642M: promise@pnd-pc.demon.co.uk
4643W: http://www.pnd-pc.demon.co.uk/promise/
4644S: Maintained
4645
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004646PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4647P: Mikael Pettersson
4648M: mikpe@it.uu.se
4649L: linux-ide@vger.kernel.org
4650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004651F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004652
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004653PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004654P: Geoff Levand
4655M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004656L: netdev@vger.kernel.org
4657L: cbe-oss-dev@ozlabs.org
4658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004659F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004660
Geoff Levandf58a9d12006-11-23 00:46:51 +01004661PS3 PLATFORM SUPPORT
4662P: Geoff Levand
4663M: geoffrey.levand@am.sony.com
4664L: linuxppc-dev@ozlabs.org
4665L: cbe-oss-dev@ozlabs.org
4666S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004667F: arch/powerpc/boot/ps3*
4668F: arch/powerpc/include/asm/lv1call.h
4669F: arch/powerpc/include/asm/ps3*.h
4670F: arch/powerpc/platforms/ps3/
4671F: drivers/*/ps3*
4672F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004673F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004674F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004675F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004676
Jim Pariscffb4add2009-01-06 11:32:10 +00004677PS3VRAM DRIVER
4678P: Jim Paris
4679M: jim@jtan.com
4680L: cbe-oss-dev@ozlabs.org
4681S: Maintained
4682
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004683PTRACE SUPPORT
4684P: Roland McGrath
4685M: roland@redhat.com
4686P: Oleg Nesterov
4687M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004688S: Maintained
4689F: include/asm-generic/syscall.h
4690F: include/linux/ptrace.h
4691F: include/linux/regset.h
4692F: include/linux/tracehook.h
4693F: kernel/ptrace.c
4694
Michael Krufky83202042006-07-03 00:24:18 -07004695PVRUSB2 VIDEO4LINUX DRIVER
4696P: Mike Isely
4697M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004698L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004699L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004700W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004701T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004703F: Documentation/video4linux/README.pvrusb2
4704F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004705
Eric Miao30ec2612008-06-12 15:21:41 -07004706PXA2xx/PXA3xx SUPPORT
4707P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004708M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004709P: Russell King
4710M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004711L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004713F: arch/arm/mach-pxa/
4714F: drivers/pcmcia/pxa2xx*
4715F: drivers/spi/pxa2xx*
4716F: drivers/usb/gadget/pxa2*
4717F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004718F: sound/arm/pxa*
4719F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004721PXA168 SUPPORT
4722P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004723M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004724P: Jason Chagas
4725M: jason.chagas@marvell.com
4726L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004727T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004728S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004729
Eric Miao5fa82eb2009-03-20 12:52:24 +08004730PXA910 SUPPORT
4731P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004732M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004733L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004734T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004735S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004736
Pierre Ossman272f1332007-05-14 21:25:26 +02004737PXA MMCI DRIVER
4738S: Orphan
4739
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004740PXA RTC DRIVER
4741P: Robert Jarzmik
4742M: robert.jarzmik@free.fr
4743L: rtc-linux@googlegroups.com
4744S: Maintained
4745
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746QLOGIC QLA2XXX FC-SCSI DRIVER
4747P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004748M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749L: linux-scsi@vger.kernel.org
4750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/scsi/LICENSE.qla2xxx
4752F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Ron Mercer5a4faa82006-07-25 00:40:21 -07004754QLOGIC QLA3XXX NETWORK DRIVER
4755P: Ron Mercer
4756M: linux-driver@qlogic.com
4757L: netdev@vger.kernel.org
4758S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004759F: Documentation/networking/LICENSE.qla3xxx
4760F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004761
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004762QLOGIC QLGE 10Gb ETHERNET DRIVER
4763P: Ron Mercer
4764M: linux-driver@qlogic.com
4765M: ron.mercer@qlogic.com
4766L: netdev@vger.kernel.org
4767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004768F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004769
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770QNX4 FILESYSTEM
4771P: Anders Larsen
4772M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773W: http://www.alarsen.net/linux/qnx4fs/
4774S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004775F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004776F: include/linux/qnx4_fs.h
4777F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
4779RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004780P: Benjamin Herrenschmidt
4781M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004782L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004784F: drivers/video/aty/radeon*
4785F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004788P: Paul Mackerras
4789M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004790L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004792F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
Randy Dunlape7839f22008-10-12 16:11:45 -07004794RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004795P: rt2x00 project
4796L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004797L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004798W: http://rt2x00.serialmonkey.com/
4799S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004800T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004801F: drivers/net/wireless/rt2x00/
4802
Nick Piggin9db55792008-02-08 04:19:49 -08004803RAMDISK RAM BLOCK DEVICE DRIVER
4804P: Nick Piggin
4805M: npiggin@suse.de
4806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004807F: Documentation/blockdev/ramdisk.txt
4808F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004809
Matt Mackall9e95ce22005-04-16 15:25:56 -07004810RANDOM NUMBER DRIVER
4811P: Matt Mackall
4812M: mpm@selenic.com
4813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004814F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004815
Matt Porter394b7012005-11-07 01:00:15 -08004816RAPIDIO SUBSYSTEM
4817P: Matt Porter
4818M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004821
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004822RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4823P: Corey Thomas
4824M: coreythomas@charter.net
4825L: linux-wireless@vger.kernel.org
4826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004828
4829RCUTORTURE MODULE
4830P: Josh Triplett
4831M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004832P: Paul E. McKenney
4833M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004835F: Documentation/RCU/torture.txt
4836F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004837
Florian Fainellic1f766b2008-02-06 22:39:44 +01004838RDC R-321X SoC
4839P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004840M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004841S: Maintained
4842
Florian Fainellidb17f392007-12-19 11:30:30 +01004843RDC R6040 FAST ETHERNET DRIVER
4844P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004845M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004846L: netdev@vger.kernel.org
4847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004848F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004849
Andy Grovera09ed662009-02-24 15:30:41 +00004850RDS - RELIABLE DATAGRAM SOCKETS
4851P: Andy Grover
4852M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004853L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004854S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004855F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004856
Josh Triplett595182b2006-10-04 02:17:21 -07004857READ-COPY UPDATE (RCU)
4858P: Dipankar Sarma
4859M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004860P: Paul E. McKenney
4861M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004862W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004863S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004864F: Documentation/RCU/rcu.txt
4865F: Documentation/RCU/rcuref.txt
4866F: include/linux/rcupdate.h
4867F: include/linux/srcu.h
4868F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004869
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870REAL TIME CLOCK DRIVER
4871P: Paul Gortmaker
4872M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: Documentation/rtc.txt
4875F: drivers/rtc/
4876F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004878REAL TIME CLOCK (RTC) SUBSYSTEM
4879P: Alessandro Zummo
4880M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004881L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004882S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004883F: Documentation/rtc.txt
4884F: drivers/rtc/
4885F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004886
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004888L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004890F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891
Ivo van Doorne08976452008-04-12 19:23:55 +02004892RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004893P: Johannes Berg
4894M: johannes@sipsolutions.net
4895L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004896S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004897F Documentation/rfkill.txt
4898F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004899
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004900RISCOM8 DRIVER
4901S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004902F: Documentation/serial/riscom8.txt
4903F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004904
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905ROCKETPORT DRIVER
4906P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907W: http://www.comtrol.com
4908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: Documentation/serial/rocket.txt
4910F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911
4912ROSE NETWORK LAYER
4913P: Ralf Baechle
4914M: ralf@linux-mips.org
4915L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004916W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004918F: include/linux/rose.h
4919F: include/net/rose.h
4920F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Larry Finger59840482008-11-12 17:13:09 -06004922RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004923P: John W. Linville
4924M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004925L: linux-wireless@vger.kernel.org
4926W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004927T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004930
Larry Finger59840482008-11-12 17:13:09 -06004931RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004932P: Herton Ronaldo Krzesinski
4933M: herton@mandriva.com.br
4934P: Hin-Tak Leung
4935M: htl10@users.sourceforge.net
4936P: Larry Finger
4937M: Larry.Finger@lwfinger.net
4938L: linux-wireless@vger.kernel.org
4939W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004940T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004941S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004942F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004943
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004944S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004945P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004946M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004947L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004949F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004950
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951S390
4952P: Martin Schwidefsky
4953M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004954P: Heiko Carstens
4955M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004957L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004958W: http://www.ibm.com/developerworks/linux/linux390/
4959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004960F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004961
4962S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004963P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004964M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004965P: Frank Blaschka
4966M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004967M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004968L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004969W: http://www.ibm.com/developerworks/linux/linux390/
4970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004971F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004972
Felix Beckfeed9b62009-03-26 15:24:23 +01004973S390 ZCRYPT DRIVER
4974P: Felix Beck
4975M: felix.beck@de.ibm.com
4976P: Ralph Wuerthner
4977M: ralph.wuerthner@de.ibm.com
4978M: linux390@de.ibm.com
4979L: linux-s390@vger.kernel.org
4980S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004981F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004982
Heiko Carstens5238da42006-02-11 17:56:01 -08004983S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004984P: Christof Schmitt
4985M: christof.schmitt@de.ibm.com
4986P: Martin Peschke
4987M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004988M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004989L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004990W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004992F: Documentation/s390/zfcpdump.txt
4993F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
Ursula Braundd96df22007-09-19 13:09:02 +02004995S390 IUCV NETWORK LAYER
4996P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004997M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004998M: linux390@de.ibm.com
4999L: linux-s390@vger.kernel.org
5000W: http://www.ibm.com/developerworks/linux/linux390/
5001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005002F: drivers/s390/net/*iucv*
5003F: include/net/iucv/
5004F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005005
Ben Dooks4dde7f72008-06-30 22:40:38 +01005006S3C24XX SD/MMC Driver
5007P: Ben Dooks
5008M: ben-linux@fluff.org
5009L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005011F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013SAA7146 VIDEO4LINUX-2 DRIVER
5014P: Michael Hunold
5015M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005016L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005017T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018W: http://www.mihu.de/linux/saa7146
5019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: drivers/media/common/saa7146*
5021F: drivers/media/video/*7146*
5022F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024SC1200 WDT DRIVER
5025P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005026M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005028F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029
5030SCHEDULER
5031P: Ingo Molnar
5032M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005033P: Peter Zijlstra
5034M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005036F: kernel/sched*
5037F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039SCSI CDROM DRIVER
5040P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005041M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042L: linux-scsi@vger.kernel.org
5043W: http://www.kernel.dk
5044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047SCSI SG DRIVER
5048P: Doug Gilbert
5049M: dgilbert@interlog.com
5050L: linux-scsi@vger.kernel.org
5051W: http://www.torque.net/sg
5052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005053F: drivers/scsi/sg.c
5054F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
5056SCSI SUBSYSTEM
5057P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005058M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005060T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5061T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5062T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: drivers/scsi/
5065F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005068P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069M: Kai.Makisara@kolumbus.fi
5070L: linux-scsi@vger.kernel.org
5071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: Documentation/scsi/st.txt
5073F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074
5075SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005076P: Vlad Yasevich
5077M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005078P: Sridhar Samudrala
5079M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005080L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005081W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005083F: Documentation/networking/sctp.txt
5084F: include/linux/sctp.h
5085F: include/net/sctp/
5086F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087
5088SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005089P: Jim Cromie
5090M: jim.cromie@gmail.com
5091S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005092F: Documentation/i2c/busses/scx200_acb
5093F: arch/x86/kernel/scx200_32.c
5094F: drivers/watchdog/scx200_wdt.c
5095F: drivers/i2c/busses/scx200*
5096F: drivers/mtd/maps/scx200_docflash.c
5097F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005098
5099SCx200 GPIO DRIVER
5100P: Jim Cromie
5101M: jim.cromie@gmail.com
5102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005103F: drivers/char/scx200_gpio.c
5104F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005105
5106SCx200 HRT CLOCKSOURCE DRIVER
5107P: Jim Cromie
5108M: jim.cromie@gmail.com
5109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
Sascha Sommer6a369132008-07-15 14:21:29 +02005112SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5113P: Sascha Sommer
5114M: saschasommer@freenet.de
5115L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005118
Randy Dunlape7839f22008-10-12 16:11:45 -07005119SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005120P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005121M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005122L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005123S: Maintained
5124
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005125SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5126P: Anton Vorontsov
5127M: avorontsov@ru.mvista.com
5128L: linuxppc-dev@ozlabs.org
5129L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005131F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
Ben Dooks0d1bb412009-06-14 13:52:37 +01005133SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5134P: Ben Dooks
5135M: ben-linux@fluff.org
5136L: sdhci-devel@lists.ossman.eu
5137S: Maintained
5138F: drivers/mmc/host/sdhci-s3c.c
5139
James Morris8711cca2008-12-04 03:19:45 +11005140SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005141P: James Morris
5142M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005143L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005144T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005145W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005146S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005147F: security/
James Morris8711cca2008-12-04 03:19:45 +11005148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149SECURITY CONTACT
5150P: Security Officers
5151M: security@kernel.org
5152S: Supported
5153
5154SELINUX SECURITY MODULE
5155P: Stephen Smalley
5156M: sds@tycho.nsa.gov
5157P: James Morris
5158M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005159P: Eric Paris
5160M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005161L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005162W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005163T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005165F: include/linux/selinux*
5166F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167
Jiri Slabycef2cf02007-05-08 00:31:45 -07005168SENSABLE PHANTOM
5169P: Jiri Slaby
5170M: jirislaby@gmail.com
5171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/misc/phantom.c
5173F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005174
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005175SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176P: Jeff Garzik
5177M: jgarzik@pobox.com
5178L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005179T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005181F: drivers/ata/
5182F: include/linux/ata.h
5183F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005185SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5186P: Sathya Perla
5187M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005188P: Subbu Seetharaman
5189M: subbus@serverengines.com
5190L: netdev@vger.kernel.org
5191W: http://www.serverengines.com
5192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005193F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005194
Ben Hutchings8ceee662008-04-27 12:55:59 +01005195SFC NETWORK DRIVER
5196P: Steve Hodgson
5197P: Ben Hutchings
5198P: Robert Stonehouse
5199M: linux-net-drivers@solarflare.com
5200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005201F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005203SGI GRU DRIVER
5204P: Jack Steiner
5205M: steiner@sgi.com
5206S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005207F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005208
5209SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5210P: Pat Gefre
5211M: pfg@sgi.com
5212L: linux-ia64@vger.kernel.org
5213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005214F: Documentation/ia64/serial.txt
5215F: drivers/serial/ioc?_serial.c
5216F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005217
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218SGI VISUAL WORKSTATION 320 AND 540
5219P: Andrey Panin
5220M: pazke@donpac.ru
5221L: linux-visws-devel@lists.sf.net
5222W: http://linux-visws.sf.net
5223S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005224F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
Jack Steiner75312612008-08-15 00:40:42 -07005226SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005227P: Robin Holt
5228M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005230F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005231
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005232SHARP LH SUPPORT (LH7952X & LH7A40X)
5233P: Marc Singer
5234M: elf@buici.com
5235W: http://projects.buici.com/arm
5236L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005238F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5239F: arch/arm/mach-lh7a40x/
5240F: drivers/serial/serial_lh7a40x.c
5241F: drivers/usb/gadget/lh7a40*
5242F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005243
5244SHPC HOTPLUG DRIVER
5245P: Kristen Carlson Accardi
5246M: kristen.c.accardi@intel.com
5247L: linux-pci@vger.kernel.org
5248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005249F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005250
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251SIMTEC EB110ATX (Chalice CATS)
5252P: Ben Dooks
5253P: Vincent Sanders
5254M: support@simtec.co.uk
5255W: http://www.simtec.co.uk/products/EB110ATX/
5256S: Supported
5257
5258SIMTEC EB2410ITX (BAST)
5259P: Ben Dooks
5260P: Vincent Sanders
5261M: support@simtec.co.uk
5262W: http://www.simtec.co.uk/products/EB2410ITX/
5263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005264F: arch/arm/mach-s3c2410/
5265F: drivers/*/*s3c2410*
5266F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Francois Romieu92aab3c2005-07-30 13:11:18 +02005268SIS 190 ETHERNET DRIVER
5269P: Francois Romieu
5270M: romieu@fr.zoreil.com
5271L: netdev@vger.kernel.org
5272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005273F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005274
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275SIS 900/7016 FAST ETHERNET DRIVER
5276P: Daniele Venzano
5277M: venza@brownhat.org
5278W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005279L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005281F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005283SIS 96X I2C/SMBUS DRIVER
5284P: Mark M. Hoffman
5285M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005286L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: Documentation/i2c/busses/i2c-sis96x
5289F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291SIS FRAMEBUFFER DRIVER
5292P: Thomas Winischhofer
5293M: thomas@winischhofer.net
5294W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005296F: Documentation/fb/sisfb.txt
5297F: drivers/video/sis/
5298F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
5300SIS USB2VGA DRIVER
5301P: Thomas Winischhofer
5302M: thomas@winischhofer.net
5303W: http://www.winischhofer.at/linuxsisusbvga.shtml
5304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005305F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005307SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5308P: Stephen Hemminger
5309M: shemminger@linux-foundation.org
5310L: netdev@vger.kernel.org
5311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005312F: drivers/net/skge.*
5313F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005314
Christoph Lameter415ad262007-07-26 10:40:56 -07005315SLAB ALLOCATOR
5316P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005317M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005318P: Pekka Enberg
5319M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005320P: Matt Mackall
5321M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005322L: linux-mm@kvack.org
5323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005324F: include/linux/sl?b*.h
5325F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005326
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327SMC91x ETHERNET DRIVER
5328P: Nicolas Pitre
5329M: nico@cam.org
5330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005331F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005333SMSC47B397 HARDWARE MONITOR DRIVER
5334P: Mark M. Hoffman
5335M: mhoffman@lightlink.com
5336L: lm-sensors@lm-sensors.org
5337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005338F: Documentation/hwmon/smsc47b397
5339F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005340
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005341SMSC911x ETHERNET DRIVER
5342P: Steve Glendinning
5343M: steve.glendinning@smsc.com
5344L: netdev@vger.kernel.org
5345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005346F: include/linux/smsc911x.h
5347F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005348
Steve Glendinning2cb37722008-12-11 20:54:30 -08005349SMSC9420 PCI ETHERNET DRIVER
5350P: Steve Glendinning
5351M: steve.glendinning@smsc.com
5352L: netdev@vger.kernel.org
5353S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005354F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005355
Ben Nizetteb54f2862008-03-13 22:27:30 +11005356SMX UIO Interface
5357P: Ben Nizette
5358M: bn@niasdigital.com
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005362SN-IA64 (Itanium) SUB-PLATFORM
5363P: Jes Sorensen
5364M: jes@sgi.com
5365L: linux-altix@sgi.com
5366L: linux-ia64@vger.kernel.org
5367W: http://www.sgi.com/altix
5368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005370
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005371SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005372P: Guennadi Liakhovetski
5373M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005374L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005375T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: include/media/v4l2*
5378F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005380SOEKRIS NET48XX LED SUPPORT
5381P: Chris Boot
5382M: bootc@bootc.net
5383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005384F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005388M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005391F: drivers/md/
5392F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394SONIC NETWORK DRIVER
5395P: Thomas Bogendoerfer
5396M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005397L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005399F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
Michael Buesch61e115a2007-09-18 15:12:50 -04005401SONICS SILICON BACKPLANE DRIVER (SSB)
5402P: Michael Buesch
5403M: mb@bu3sch.de
5404L: netdev@vger.kernel.org
5405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005406F: drivers/ssb/
5407F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005410P: Mattia Dongili
5411M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005412L: linux-acpi@vger.kernel.org
5413W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: Documentation/laptops/sony-laptop.txt
5416F: drivers/char/sonypi.c
5417F: drivers/platform/x86/sony-laptop.c
5418F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Alex Dubovbaf85322008-02-09 10:20:54 -08005420SONY MEMORYSTICK CARD SUPPORT
5421P: Alex Dubov
5422M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005423W: http://tifmxx.berlios.de/
5424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427SOUND
5428P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005429M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005430P: Takashi Iwai
5431M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005432L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005433W: http://www.alsa-project.org/
5434T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5435T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005437F: Documentation/sound/
5438F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005439F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440
Mark Brownbd903bd2008-11-19 19:16:05 +00005441SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005442P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005443M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005444P: Mark Brown
5445M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005446T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005447L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005448W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005450F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005451F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005452
Sam Ravnborg473321f2009-01-04 15:47:49 -08005453SPARC + UltraSPARC (sparc/sparc64)
5454P: David S. Miller
5455M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005457T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5458T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005460F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
5462SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5463P: Roger Wolff
5464M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005466F: Documentation/serial/specialix.txt
5467F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005469SPI SUBSYSTEM
5470P: David Brownell
5471M: dbrownell@users.sourceforge.net
5472L: spi-devel-general@lists.sourceforge.net
5473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005474F: Documentation/spi/
5475F: drivers/spi/
5476F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005477
Jim Lewis2752e402006-09-29 02:01:19 -07005478SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005479P: Ishizaki Kou
5480M: kou.ishizaki@toshiba.co.jp
5481P: Jens Osterkamp
5482M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005483L: netdev@vger.kernel.org
5484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005485F: Documentation/networking/spider_net.txt
5486F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005487
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005488SPU FILE SYSTEM
5489P: Jeremy Kerr
5490M: jk@ozlabs.org
5491L: linuxppc-dev@ozlabs.org
5492L: cbe-oss-dev@ozlabs.org
5493W: http://www.ibm.com/developerworks/power/cell/
5494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005495F: Documentation/filesystems/spufs.txt
5496F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005497
Phillip Lougherfc555842009-01-05 08:46:29 +00005498SQUASHFS FILE SYSTEM
5499P: Phillip Lougher
5500M: phillip@lougher.demon.co.uk
5501L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5502W: http://squashfs.org.uk
5503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: Documentation/filesystems/squashfs.txt
5505F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005506
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507SRM (Alpha) environment access
5508P: Jan-Benedict Glaw
5509M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005511F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512
Linus Torvalds26e9a392008-10-17 09:50:12 -07005513STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005514P: Greg Kroah-Hartman
5515M: greg@kroah.com
5516P: Chris Wright
5517M: chrisw@sous-sol.org
5518L: stable@kernel.org
5519S: Maintained
5520
Linus Torvalds26e9a392008-10-17 09:50:12 -07005521STAGING SUBSYSTEM
5522P: Greg Kroah-Hartman
5523M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005524T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005525L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005527F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005528
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529STARFIRE/DURALAN NETWORK DRIVER
5530P: Ion Badulescu
5531M: ionut@cs.columbia.edu
5532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
5535STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5536W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005537S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/net/wireless/strip.c
5539F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
5541STRADIS MPEG-2 DECODER DRIVER
5542P: Nathan Laredo
5543M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544W: http://www.stradis.com/
5545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005546F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005548SUN3/3X
5549P: Sam Creasey
5550M: sammy@sammy.net
5551W: http://sammy.net/sun3/
5552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005553F: arch/m68k/kernel/*sun3*
5554F: arch/m68k/sun3*/
5555F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005556
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005557SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558P: Paul Mundt
5559M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005560L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005562T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005563S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005564F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005565F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005566F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005568SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005569P: Len Brown
5570M: len.brown@intel.com
5571P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005572M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005573P: Rafael J. Wysocki
5574M: rjw@sisk.pl
5575L: linux-pm@lists.linux-foundation.org
5576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005577F: Documentation/power/
5578F: arch/x86/kernel/acpi/
5579F: drivers/base/power/
5580F: kernel/power/
5581F: include/linux/suspend.h
5582F: include/linux/freezer.h
5583F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
5585SVGA HANDLING
5586P: Martin Mares
5587M: mj@ucw.cz
5588L: linux-video@atrey.karlin.mff.cuni.cz
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: Documentation/svga.txt
5591F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
5593SYSV FILESYSTEM
5594P: Christoph Hellwig
5595M: hch@infradead.org
5596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: Documentation/filesystems/sysv-fs.txt
5598F: fs/sysv/
5599F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600
Alan Cox4e688522008-04-30 00:52:11 -07005601TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005602P: Balbir Singh
5603M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005605F: Documentation/accounting/taskstats*
5606F: include/linux/taskstats*
5607F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005608
Stephen Hemminger781b4562006-07-10 20:25:29 -07005609TC CLASSIFIER
5610P: Jamal Hadi Salim
5611M: hadi@cyberus.ca
5612L: netdev@vger.kernel.org
5613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005614F: include/linux/pkt_cls.h
5615F: include/net/pkt_cls.h
5616F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005617
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005618TCP LOW PRIORITY MODULE
5619P: Wong Hoi Sing, Edison
5620M: hswong3i@gmail.com
5621P: Hung Hing Lun, Mike
5622M: hlhung3i@gmail.com
5623W: http://tcp-lp-mod.sourceforge.net/
5624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005626
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005627TEHUTI ETHERNET DRIVER
5628P: Alexander Indenbaum
5629M: baum@tehutinetworks.net
5630P: Andy Gospodarek
5631M: andy@greyhouse.net
5632L: netdev@vger.kernel.org
5633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005634F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005635
Alan Cox4e688522008-04-30 00:52:11 -07005636Telecom Clock Driver for MCPL0010
5637P: Mark Gross
5638M: mark.gross@intel.com
5639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005641
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005642TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005643P: Chris Zankel
5644M: chris@zankel.net
5645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005646F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005647
5648THINKPAD ACPI EXTRAS DRIVER
5649P: Henrique de Moraes Holschuh
5650M: ibm-acpi@hmh.eng.br
5651L: ibm-acpi-devel@lists.sourceforge.net
5652W: http://ibm-acpi.sourceforge.net
5653W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005654T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005656F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005657
Alex Dubov4020f2d2006-10-04 02:15:37 -07005658TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005659P: Alex Dubov
5660M: oakad@yahoo.com
5661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/misc/tifm*
5663F: drivers/mmc/host/tifm_sd.c
5664F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005665
Per Lidene86eaa32006-01-12 16:45:18 +01005666TIPC NETWORK LAYER
5667P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005668M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005669P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005670M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005671P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005672M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005673L: tipc-discussion@lists.sourceforge.net
5674W: http://tipc.sourceforge.net/
5675W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005676T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: include/linux/tipc*.h
5679F: include/net/tipc/
5680F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005681
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682TLAN NETWORK DRIVER
5683P: Samuel Chessman
5684M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005685L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686W: http://sourceforge.net/projects/tlan/
5687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005688F: Documentation/networking/tlan.txt
5689F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005691TOMOYO SECURITY MODULE
5692P: Kentaro Takeda
5693M: takedakn@nttdata.co.jp
5694P: Tetsuo Handa
5695M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005696L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5697L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5698L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5699W: http://tomoyo.sourceforge.jp/
5700T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005702F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005705S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
5708TOSHIBA SMM DRIVER
5709P: Jonathan Buzzard
5710M: jonathan@buzzard.org.uk
5711L: tlinux-users@tce.toshiba-dme.co.jp
5712W: http://www.buzzard.org.uk/toshiba/
5713S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005714F: drivers/char/toshiba.c
5715F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716
Pierre Ossmand719f902009-03-24 21:06:09 +01005717TMIO MMC DRIVER
5718P: Ian Molton
5719M: ian@mnementh.co.uk
5720S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005721F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005722
Hugh Dickins98f32602009-05-21 20:33:58 +01005723TMPFS (SHMEM FILESYSTEM)
5724P: Hugh Dickins
5725M: hugh.dickins@tiscali.co.uk
5726L: linux-mm@kvack.org
5727S: Maintained
5728F: include/linux/shmem_fs.h
5729F: mm/shmem.c
5730
Alan Cox4e688522008-04-30 00:52:11 -07005731TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005732P: Debora Velarde
5733M: debora@linux.vnet.ibm.com
5734P: Rajiv Andrade
5735M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005736W: http://tpmdd.sourceforge.net
5737P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005738M: m.selhorst@sirrix.com
5739W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005740L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005742F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005743
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005745P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005746M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005747T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005749F: drivers/char/tty_*
5750F: drivers/serial/serial_core.c
5751F: include/linux/serial_core.h
5752F: include/linux/serial.h
5753F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754
Alan Cox4e688522008-04-30 00:52:11 -07005755TTY LAYER
5756P: Alan Cox
5757M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005758S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005759T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005760
Grant Grundler740db6d2008-02-17 11:53:49 -07005761TULIP NETWORK DRIVERS
5762P: Grant Grundler
5763M: grundler@parisc-linux.org
5764P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005765M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005766L: netdev@vger.kernel.org
5767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769
5770TUN/TAP driver
5771P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005772M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773L: vtun@office.satix.net
5774W: http://vtun.sourceforge.net/tun
5775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005776F: Documentation/networking/tuntap.txt
5777F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005779TURBOCHANNEL SUBSYSTEM
5780P: Maciej W. Rozycki
5781M: macro@linux-mips.org
5782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005783F: drivers/tc/
5784F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005785
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786U14-34F SCSI DRIVER
5787P: Dario Ballabio
5788M: ballabio_dario@emc.com
5789L: linux-scsi@vger.kernel.org
5790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005791F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793UBI FILE SYSTEM (UBIFS)
5794P: Artem Bityutskiy
5795M: dedekind@infradead.org
5796P: Adrian Hunter
5797M: ext-adrian.hunter@nokia.com
5798L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005799T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005800W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005802F: Documentation/filesystems/ubifs.txt
5803F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005804
Alan Coxcc2020e2008-05-19 14:21:51 +01005805UCLINUX (AND M68KNOMMU)
5806P: Greg Ungerer
5807M: gerg@uclinux.org
5808W: http://www.uclinux.org/
5809L: uclinux-dev@uclinux.org (subscribers-only)
5810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005811F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005812
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005813UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005814P: Yoshinori Sato
5815M: ysato@users.sourceforge.jp
5816W: http://uclinux-h8.sourceforge.jp/
5817S: Supported
5818
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005820P: Jan Kara
5821M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822W: http://linux-udf.sourceforge.net
5823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/filesystems/udf.txt
5825F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Alan Coxcc2020e2008-05-19 14:21:51 +01005827UFS FILESYSTEM
5828P: Evgeniy Dushistov
5829M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005831F: Documentation/filesystems/ufs.txt
5832F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005833
David Vrabel18332a82008-09-17 16:34:44 +01005834ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5835P: David Vrabel
5836M: david.vrabel@csr.com
5837L: linux-usb@vger.kernel.org
5838S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005839F: drivers/uwb/*
5840F: include/linux/uwb.h
5841F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005842
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843UNIFORM CDROM DRIVER
5844P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005845M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846W: http://www.kernel.dk
5847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: Documentation/cdrom/
5849F: drivers/cdrom/cdrom.c
5850F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005852UNSORTED BLOCK IMAGES (UBI)
5853P: Artem Bityutskiy
5854M: dedekind@infradead.org
5855W: http://www.linux-mtd.infradead.org/
5856L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005857T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005858S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005859F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005860F: include/linux/mtd/ubi.h
5861F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005862
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863USB ACM DRIVER
5864P: Oliver Neukum
5865M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005866L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005868F: Documentation/usb/acm.txt
5869F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
5871USB BLOCK DRIVER (UB ub)
5872P: Pete Zaitcev
5873M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005874L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005876F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878USB CDC ETHERNET DRIVER
5879P: Greg Kroah-Hartman
5880M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005881L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882S: Maintained
5883W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005884F: drivers/net/usb/cdc_*.c
5885F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005887USB CYPRESS C67X00 DRIVER
5888P: Peter Korsgaard
5889M: jacmet@sunsite.dk
5890L: linux-usb@vger.kernel.org
5891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005893
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005894USB DAVICOM DM9601 DRIVER
5895P: Peter Korsgaard
5896M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005897L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005898W: http://www.linux-usb.org/usbnet
5899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005900F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005901
Alan Coxcc2020e2008-05-19 14:21:51 +01005902USB DIAMOND RIO500 DRIVER
5903P: Cesar Miquel
5904M: miquel@df.uba.ar
5905L: rio500-users@lists.sourceforge.net
5906W: http://rio500.sourceforge.net
5907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005908F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005909
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910USB EHCI DRIVER
5911P: David Brownell
5912M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005913L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005914S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005915F: Documentation/usb/ehci.txt
5916F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917
Luca Risolia7ce08c92006-01-11 02:06:59 +00005918USB ET61X[12]51 DRIVER
5919P: Luca Risolia
5920M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005921L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005922L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005923T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005924W: http://www.linux-projects.org
5925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005926F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005927
David Brownell69ae9e32006-11-14 02:03:31 -08005928USB GADGET/PERIPHERAL SUBSYSTEM
5929P: David Brownell
5930M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005931L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005932W: http://www.linux-usb.org/gadget
5933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005934F: drivers/usb/gadget/
5935F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005936
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005937USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005938P: Jiri Kosina
5939M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005940L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005941T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005943F: Documentation/usb/hiddev.txt
5944F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
Olav Kongas959eea22005-11-03 17:38:14 +02005946USB ISP116X DRIVER
5947P: Olav Kongas
5948M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005949L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005951F: drivers/usb/host/isp116x*
5952F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005953
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954USB KAWASAKI LSI DRIVER
5955P: Oliver Neukum
5956M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005957L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005959F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960
5961USB MASS STORAGE DRIVER
5962P: Matthew Dharm
5963M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005964L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005965L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966S: Maintained
5967W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005968F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
5970USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005971P: David Brownell
5972M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005973L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005974S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005975F: Documentation/usb/ohci.txt
5976F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977
Matthias Urlichsba460e42005-07-14 00:33:47 -07005978USB OPTION-CARD DRIVER
5979P: Matthias Urlichs
5980M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005981L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005984
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985USB OV511 DRIVER
5986P: Mark McClelland
5987M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005988L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989W: http://alpha.dyndns.org/ov511/
5990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005991F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992
5993USB PEGASUS DRIVER
5994P: Petko Manolov
5995M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005996L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005997L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998W: http://pegasus2.sourceforge.net/
5999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006000F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006002USB PRINTER DRIVER (usblp)
6003P: Pete Zaitcev
6004M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006005L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006006S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006007F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008
6009USB RTL8150 DRIVER
6010P: Petko Manolov
6011M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006012L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006013L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014W: http://pegasus2.sourceforge.net/
6015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017
6018USB SE401 DRIVER
6019P: Jeroen Vreeken
6020M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006021L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022W: http://www.chello.nl/~j.vreeken/se401/
6023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: Documentation/video4linux/se401.txt
6025F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Alan Cox4e688522008-04-30 00:52:11 -07006027USB SERIAL BELKIN F5U103 DRIVER
6028P: William Greathouse
6029M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006030L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006033
6034USB SERIAL CYPRESS M8 DRIVER
6035P: Lonnie Mendez
6036M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006037L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006038S: Maintained
6039W: http://geocities.com/i0xox0i
6040W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006041F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006042
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043USB SERIAL CYBERJACK DRIVER
6044P: Matthias Bruestle and Harald Welte
6045M: support@reiner-sct.com
6046W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049
6050USB SERIAL DIGI ACCELEPORT DRIVER
6051P: Peter Berger and Al Borchers
6052M: pberger@brimson.com
6053M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006054L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006056F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
6058USB SERIAL DRIVER
6059P: Greg Kroah-Hartman
6060M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006061L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006063F: Documentation/usb/usb-serial.txt
6064F: drivers/usb/serial/generic.c
6065F: drivers/usb/serial/usb-serial.c
6066F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6069P: Gary Brubaker
6070M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006071L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074
6075USB SERIAL KEYSPAN DRIVER
6076P: Greg Kroah-Hartman
6077M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006078L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079W: http://www.kroah.com/linux/
6080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006081F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
6083USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006084P: Support Department
6085M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006086L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087W: http://www.connecttech.com
6088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006089F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006091USB SMSC95XX ETHERNET DRIVER
6092P: Steve Glendinning
6093M: steve.glendinning@smsc.com
6094L: netdev@vger.kernel.org
6095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006096F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006097
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006098USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006099P: Luca Risolia
6100M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006101L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006102L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006103T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104W: http://www.linux-projects.org
6105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006106F: Documentation/video4linux/sn9c102.txt
6107F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108
6109USB SUBSYSTEM
6110P: Greg Kroah-Hartman
6111M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006112L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006114T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/usb/
6117F: drivers/net/usb/
6118F: drivers/usb/
6119F: include/linux/usb.h
6120F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121
6122USB UHCI DRIVER
6123P: Alan Stern
6124M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006125L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128
David Brownell69ae9e32006-11-14 02:03:31 -08006129USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130P: David Brownell
6131M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006132L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006133W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006135F: drivers/net/usb/usbnet.c
6136F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006138USB VIDEO CLASS
6139P: Laurent Pinchart
6140M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006141L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006142L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006143T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006144W: http://linux-uvc.berlios.de
6145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006146F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148USB W996[87]CF DRIVER
6149P: Luca Risolia
6150M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006151L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006152L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006153T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154W: http://www.linux-projects.org
6155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: Documentation/video4linux/w9968cf.txt
6157F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006159USB WIRELESS RNDIS DRIVER (rndis_wlan)
6160P: Jussi Kivilinna
6161M: jussi.kivilinna@mbnet.fi
6162L: linux-wireless@vger.kernel.org
6163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006164F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006165
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006166USB XHCI DRIVER
6167P: Sarah Sharp
6168M: sarah.a.sharp@intel.com
6169L: linux-usb@vger.kernel.org
6170S: Supported
6171
Luca Risolia60f78052006-02-06 16:29:35 +00006172USB ZC0301 DRIVER
6173P: Luca Risolia
6174M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006175L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006176L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006177T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006178W: http://www.linux-projects.org
6179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006180F: Documentation/video4linux/zc0301.txt
6181F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006182
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183USB ZD1201 DRIVER
6184P: Jeroen Vreeken
6185M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006186L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187W: http://linux-lc100020.sourceforge.net
6188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006189F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006191USB ZR364XX DRIVER
6192P: Antoine Jacquet
6193M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006194L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006195L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006196T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006197W: http://royale.zerezo.com/zr364xx/
6198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006199F: Documentation/video4linux/zr364xx.txt
6200F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006201
Randy Dunlape7839f22008-10-12 16:11:45 -07006202USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006204M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205L: user-mode-linux-devel@lists.sourceforge.net
6206L: user-mode-linux-user@lists.sourceforge.net
6207W: http://user-mode-linux.sourceforge.net
6208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: Documentation/uml/
6210F: arch/um/
6211F: fs/hostfs/
6212F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006213
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006214USERSPACE I/O (UIO)
6215P: Hans J. Koch
6216M: hjk@linutronix.de
6217P: Greg Kroah-Hartman
6218M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006220F: Documentation/DocBook/uio-howto.tmpl
6221F: drivers/uio/
6222F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006223
Karel Zakf899b0a2008-05-23 13:04:21 -07006224UTIL-LINUX-NG PACKAGE
6225P: Karel Zak
6226M: kzak@redhat.com
6227L: util-linux-ng@vger.kernel.org
6228W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006229T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006230S: Maintained
6231
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006232UVESAFB DRIVER
6233P: Michal Januszewski
6234M: spock@gentoo.org
6235L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6236W: http://dev.gentoo.org/~spock/projects/uvesafb/
6237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006238F: Documentation/fb/uvesafb.txt
6239F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006240
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006241VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242P: OGAWA Hirofumi
6243M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006245F: Documentation/filesystems/vfat.txt
6246F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248VIA RHINE NETWORK DRIVER
6249P: Roger Luethi
6250M: rl@hellgate.ch
6251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006252F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
Jean Delvare32c0a522005-09-22 21:47:58 +02006254VIAPRO SMBUS DRIVER
6255P: Jean Delvare
6256M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006257L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006259F: Documentation/i2c/busses/i2c-viapro
6260F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006261
Harald Weltef0bf7f62009-06-17 20:22:39 +02006262VIA SD/MMC CARD CONTROLLER DRIVER
6263P: Joseph Chan
6264M: JosephChan@via.com.tw
6265P: Harald Welte
6266M: HaraldWelte@viatech.com
6267S: Maintained
6268F: drivers/mmc/host/via-sdmmc.c
6269
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006270VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6271P: Joseph Chan
6272M: JosephChan@via.com.tw
6273P: Scott Fang
6274M: ScottFang@viatech.com.cn
6275L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006277F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006278
Francois Romieu01f20732007-01-26 00:57:17 -08006279VIA VELOCITY NETWORK DRIVER
6280P: Francois Romieu
6281M: romieu@fr.zoreil.com
6282L: netdev@vger.kernel.org
6283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006284F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
Patrick McHardybe7f8272007-10-23 20:26:36 -07006286VLAN (802.1Q)
6287P: Patrick McHardy
6288M: kaber@trash.net
6289L: netdev@vger.kernel.org
6290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/net/macvlan.c
6292F: include/linux/if_*vlan.h
6293F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006294
Florian Fainelli55e331c2009-06-16 15:33:53 -07006295VLYNQ BUS
6296P: Florian Fainelli
6297M: florian@openwrt.org
6298L: openwrt-devel@lists.openwrt.org
6299S: Maintained
6300F: drivers/vlynq/vlynq.c
6301F: include/linux/vlynq.h
6302
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006303VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6304P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006305M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006306P: Mark Brown
6307M: broonie@opensource.wolfsonmicro.com
6308W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006309W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006310T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006312F: drivers/regulator/
6313F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006314
Juerg Haefligerab413192006-09-24 20:54:04 +02006315VT1211 HARDWARE MONITOR DRIVER
6316P: Juerg Haefliger
6317M: juergh@gmail.com
6318L: lm-sensors@lm-sensors.org
6319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: Documentation/hwmon/vt1211
6321F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006322
Roger Lucas1de9e372005-11-26 20:20:05 +01006323VT8231 HARDWARE MONITOR DRIVER
6324P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006325M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006326L: lm-sensors@lm-sensors.org
6327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006328F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006329
Linus Torvalds1da177e2005-04-16 15:20:36 -07006330W1 DALLAS'S 1-WIRE BUS
6331P: Evgeniy Polyakov
6332M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006334F: Documentation/w1/
6335F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336
Charles Spirakis13927072006-07-05 18:05:15 +02006337W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006338P: Marc Hulsman
6339M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006340L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006342F: Documentation/hwmon/w83791d
6343F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006344
Rudolf Marek61db0112006-12-12 18:18:30 +01006345W83793 HARDWARE MONITORING DRIVER
6346P: Rudolf Marek
6347M: r.marek@assembler.cz
6348L: lm-sensors@lm-sensors.org
6349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006350F: Documentation/hwmon/w83793
6351F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006352
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353W83L51xD SD/MMC CARD INTERFACE DRIVER
6354P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006355M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006357F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006359WATCHDOG DEVICE DRIVERS
6360P: Wim Van Sebroeck
6361M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006362T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006364F: Documentation/watchdog/
6365F: drivers/watchdog/
6366F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006367
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6369P: Jean Tourrilhes
6370M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006371L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006372W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: Documentation/networking/wavelan.txt
6375F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006376
6377WD7000 SCSI DRIVER
6378P: Miroslav Zagorac
6379M: zaga@fly.cc.fer.hr
6380L: linux-scsi@vger.kernel.org
6381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006382F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006384WIMAX STACK
6385P: Inaky Perez-Gonzalez
6386M: inaky.perez-gonzalez@intel.com
6387M: linux-wimax@intel.com
6388L: wimax@linuxwimax.org
6389S: Supported
6390W: http://linuxwimax.org
6391
David Vrabel18332a82008-09-17 16:34:44 +01006392WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6393P: David Vrabel
6394M: david.vrabel@csr.com
6395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006396F: include/linux/wlp.h
6397F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006398
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006399WISTRON LAPTOP BUTTON DRIVER
6400P: Miloslav Trmac
6401M: mitr@volny.cz
6402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006404
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405WL3501 WIRELESS PCMCIA CARD DRIVER
6406P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006407M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006408L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006409W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006411F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Mark Brownfebf1df2008-04-02 00:51:09 -04006413WM97XX TOUCHSCREEN DRIVERS
6414P: Mark Brown
6415M: broonie@opensource.wolfsonmicro.com
6416P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006417M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006418L: linux-input@vger.kernel.org
6419T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6420W: http://opensource.wolfsonmicro.com/node/7
6421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006422F: drivers/input/touchscreen/*wm97*
6423F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006424
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425X.25 NETWORK LAYER
6426P: Henner Eisen
6427M: eis@baty.hanse.de
6428L: linux-x25@vger.kernel.org
6429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006430F: Documentation/networking/x25*
6431F: include/net/x25*
6432F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006434X86 ARCHITECTURE (32-BIT AND 64-BIT)
6435P: Thomas Gleixner
6436M: tglx@linutronix.de
6437P: Ingo Molnar
6438M: mingo@redhat.com
6439P: H. Peter Anvin
6440M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006441M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006442T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006444F: Documentation/x86/
6445F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006446
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006447XEN HYPERVISOR INTERFACE
6448P: Jeremy Fitzhardinge
6449M: jeremy@xensource.com
6450P: Chris Wright
6451M: chrisw@sous-sol.org
6452L: virtualization@lists.osdl.org
6453L: xen-devel@lists.xensource.com
6454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006455F: arch/x86/xen/
6456F: drivers/*/xen-*front.c
6457F: drivers/xen/
6458F: arch/x86/include/asm/xen/
6459F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006460
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461XFS FILESYSTEM
6462P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006463P: Felix Blyakher
6464M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006466L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006468T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006470F: Documentation/filesystems/xfs.txt
6471F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006473XILINX SYSTEMACE DRIVER
6474P: Grant Likely
6475M: grant.likely@secretlab.ca
6476W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006479
Peter Korsgaard238b8722006-12-06 20:35:17 -08006480XILINX UARTLITE SERIAL DRIVER
6481P: Peter Korsgaard
6482M: jacmet@sunsite.dk
6483L: linux-serial@vger.kernel.org
6484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006485F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006486
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487YAM DRIVER FOR AX.25
6488P: Jean-Paul Roubelat
6489M: jpr@f6fbb.org
6490L: linux-hams@vger.kernel.org
6491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006492F: drivers/net/hamradio/yam*
6493F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494
Henkaf64a5e2005-10-12 15:02:56 +02006495YEALINK PHONE DRIVER
6496P: Henk Vergonet
6497M: Henk.Vergonet@gmail.com
6498L: usbb2k-api-dev@nongnu.org
6499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006500F: Documentation/input/yealink.txt
6501F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006502
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503Z8530 DRIVER FOR AX.25
6504P: Joerg Reuter
6505M: jreuter@yaina.de
6506W: http://yaina.de/jreuter/
6507W: http://www.qsl.net/dl1bke/
6508L: linux-hams@vger.kernel.org
6509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006510F: Documentation/networking/z8530drv.txt
6511F: drivers/net/hamradio/*scc.c
6512F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006514ZD1211RW WIRELESS DRIVER
6515P: Daniel Drake
6516M: dsd@gentoo.org
6517P: Ulrich Kunitz
6518M: kune@deine-taler.de
6519W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006520L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006521L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006523F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006527L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006529T: Mercurial http://linuxtv.org/hg/v4l-dvb
6530S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006533ZS DECSTATION Z85C30 SERIAL DRIVER
6534P: Maciej W. Rozycki
6535M: macro@linux-mips.org
6536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006537F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006538
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539THE REST
6540P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006541M: torvalds@linux-foundation.org
6542L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006543T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006545F: *
6546F: */