blob: 02f6f78b561f4bce68789776d5527ab5dbabcc22 [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
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002485GFS2 FILE SYSTEM
2486P: Steven Whitehouse
2487M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002488L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002489W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002490T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2491T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002493F: Documentation/filesystems/gfs2*.txt
2494F: fs/gfs2/
2495F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002496
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002497GIGASET ISDN DRIVERS
2498P: Hansjoerg Lipp
2499M: hjlipp@web.de
2500P: Tilman Schmidt
2501M: tilman@imap.cc
2502L: gigaset307x-common@lists.sourceforge.net
2503W: http://gigaset307x.sourceforge.net/
2504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002505F: Documentation/isdn/README.gigaset
2506F: drivers/isdn/gigaset/
2507F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002508
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002509HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002510P: Frank Seidel
2511M: frank@f-seidel.de
2512L: lm-sensors@lm-sensors.org
2513W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002515F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002516
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002517HYPERVISOR VIRTUAL CONSOLE DRIVER
2518L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002519S: Odd Fixes
2520F: drivers/char/hvc_*
2521
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002522GSPCA FINEPIX SUBDRIVER
2523P: Frank Zago
2524M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002525L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002526T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002528F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002529
2530GSPCA M5602 SUBDRIVER
2531P: Erik Andren
2532M: erik.andren@gmail.com
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/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002537
2538GSPCA PAC207 SONIXB SUBDRIVER
2539P: Hans de Goede
2540M: hdegoede@redhat.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/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002545
2546GSPCA T613 SUBDRIVER
2547P: Leandro Costantino
2548M: lcostantino@gmail.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/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002553
2554GSPCA USB WEBCAM DRIVER
2555P: Jean-Francois Moine
2556M: moinejf@free.fr
2557W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002558L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002559T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002561F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002562
Jean Delvare5b543962005-08-15 19:51:02 +02002563HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002564L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002565W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002566S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002567F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002568
Michael Buesch844dd052006-06-26 00:24:59 -07002569HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002570S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002571F: Documentation/hw_random.txt
2572F: drivers/char/hw_random/
2573F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575HARMONY SOUND DRIVER
2576P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002577M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002578L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002580F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582HAYES ESP SERIAL DRIVER
2583P: Andrew J. Robinson
2584M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585W: http://www.nyx.net/~arobinso
2586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002587F: Documentation/serial/hayes-esp.txt
2588F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002589
2590HEWLETT-PACKARD SMART2 RAID DRIVER
2591P: Chirag Kantharia
2592M: chirag.kantharia@hp.com
2593L: iss_storagedev@hp.com
2594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002595F: Documentation/blockdev/cpqarray.txt
2596F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002597
2598HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2599P: Mike Miller
2600M: mike.miller@hp.com
2601L: iss_storagedev@hp.com
2602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002603F: Documentation/blockdev/cciss.txt
2604F: drivers/block/cciss*
2605F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607HFS FILESYSTEM
2608P: Roman Zippel
2609M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002611F: Documentation/filesystems/hfs.txt
2612F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
2614HGA FRAMEBUFFER DRIVER
2615P: Ferenc Bakonyi
2616M: fero@drama.obuda.kando.hu
2617L: linux-nvidia@lists.surfsouth.com
2618W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002620F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002622HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002623P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002624M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002625P: Rafael J. Wysocki
2626M: rjw@sisk.pl
2627L: linux-pm@lists.linux-foundation.org
2628S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002629F: arch/x86/power/
2630F: drivers/base/power/
2631F: kernel/power/
2632F: include/linux/suspend.h
2633F: include/linux/freezer.h
2634F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002635F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002636
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002637HID CORE LAYER
2638P: Jiri Kosina
2639M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002640L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002641T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002643F: drivers/hid/
2644F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002645
Ingo Molnar38bed542007-02-22 09:09:34 +01002646HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2647P: Thomas Gleixner
2648M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002650F: Documentation/timers/
2651F: kernel/hrtimer.c
2652F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654HIGH-SPEED SCC DRIVER FOR AX.25
2655P: Klaus Kudielka
2656M: klaus.kudielka@ieee.org
2657L: linux-hams@vger.kernel.org
2658W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002660F: drivers/net/hamradio/dmascc.c
2661F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002663HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2664P: HighPoint Linux Team
2665M: linux@highpoint-tech.com
2666W: http://www.highpoint-tech.com
2667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002668F: Documentation/scsi/hptiop.txt
2669F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671HIPPI
2672P: Jes Sorensen
2673M: jes@trained-monkey.org
2674L: linux-hippi@sunsite.dk
2675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002676F: include/linux/hippidevice.h
2677F: include/linux/if_hippi.h
2678F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Jouni Malinenff1d2762005-05-12 22:54:16 -04002680HOST AP DRIVER
2681P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002682M: j@w1.fi
2683L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002684L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002685W: http://hostap.epitest.fi/
2686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002687F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002688
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002689HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2690P: Carlos Corbacho
2691M: carlos@strangeworlds.co.uk
2692S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002693F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002694
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002695HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2696P: Jaroslav Kysela
2697M: perex@perex.cz
2698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002699F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002700
Joe Perches7d2c86b2009-04-07 20:59:01 -07002701HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002702P: Clemens Ladisch
2703M: clemens@ladisch.de
2704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002705F: Documentation/timers/hpet.txt
2706F: drivers/char/hpet.c
2707F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002708
2709HPET: i386
2710P: Venkatesh Pallipadi (Venki)
2711M: venkatesh.pallipadi@intel.com
2712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002713F: arch/x86/kernel/hpet.c
2714F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002715
2716HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002717P: Vojtech Pavlik
2718M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002719S: Maintained
2720
Joe Perches7d2c86b2009-04-07 20:59:01 -07002721HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002722P: Bob Picco
2723M: bob.picco@hp.com
2724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002725F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727HPFS FILESYSTEM
2728P: Mikulas Patocka
2729M: mikulas@artax.karlin.mff.cuni.cz
2730W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002732F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Joe Perches7d2c86b2009-04-07 20:59:01 -07002734HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002735P: Jan Dumon
2736M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002737W: http://www.pharscape.org
2738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002739F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002740
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002741HTCPEN TOUCHSCREEN DRIVER
2742P: Pau Oliva Fora
2743M: pof@eslack.org
2744L: linux-input@vger.kernel.org
2745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002746F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748HUGETLB FILESYSTEM
2749P: William Irwin
2750M: wli@holomorphy.com
2751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002752F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002754I2C/SMBUS STUB DRIVER
2755P: Mark M. Hoffman
2756M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002757L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002759F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002760
Jean Delvare5b543962005-08-15 19:51:02 +02002761I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002762P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002764P: Ben Dooks (embedded platforms)
2765M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002766L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002767W: http://i2c.wiki.kernel.org/
2768T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002770F: Documentation/i2c/
2771F: drivers/i2c/
2772F: include/linux/i2c.h
2773F: include/linux/i2c-dev.h
2774F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Till Harbaume8c76ee2007-05-01 23:26:35 +02002776I2C-TINY-USB DRIVER
2777P: Till Harbaum
2778M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002779L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002780W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002785P: H. Peter Anvin
2786M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791P: H. Peter Anvin
2792M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002793T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794S: Maintained
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796IA64 (Itanium) PLATFORM
2797P: Tony Luck
2798M: tony.luck@intel.com
2799L: linux-ia64@vger.kernel.org
2800W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002801T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002803F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805IBM MCA SCSI SUBSYSTEM DRIVER
2806P: Michael Lang
2807M: langa2@kph.uni-mainz.de
2808W: http://www.uni-mainz.de/~langm000/linux.html
2809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002810F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812IBM Power Linux RAID adapter
2813P: Brian King
2814M: brking@us.ibm.com
2815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818IBM ServeRAID RAID DRIVER
2819P: Jack Hammer
2820P: Dave Jeffery
2821M: ipslinux@adaptec.com
2822W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002824F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002826IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002828M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002830T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002832F: Documentation/ide/
2833F: drivers/ide/
2834F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002836IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002837P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002838M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002839L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002841F: Documentation/cdrom/ide-cd
2842F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
Andy Henroid27471fd2008-10-09 11:45:22 -07002844IDLE-I7300
2845P: Andy Henroid
2846M: andrew.d.henroid@intel.com
2847L: linux-pm@lists.linux-foundation.org
2848S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002849F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002850
Joe Perches7d2c86b2009-04-07 20:59:01 -07002851IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002853M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002854P: Stefan Richter
2855M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856L: linux1394-devel@lists.sourceforge.net
2857W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002858T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002860F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Joe Perches7d2c86b2009-04-07 20:59:01 -07002862IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863P: Dan Dennedy
2864M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002865P: Stefan Richter
2866M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002870
Sergey Lapin02cf2282009-06-08 12:18:50 +00002871IEEE 802.15.4 SUBSYSTEM
2872P: Dmitry Eremin-Solenikov
2873M: dbaryshkov@gmail.com
2874P: Sergey Lapin
2875M: slapin@ossfans.org
2876L: linux-zigbee-devel@lists.sourceforge.net
2877W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002878T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002879S: Maintained
2880F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002881F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002882
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002883INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2884P: Mimi Zohar
2885M: zohar@us.ibm.com
2886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002887F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002890L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002891S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002892F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
2894INFINIBAND SUBSYSTEM
2895P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002896M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002898M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002900M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002901L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002903T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002905F: Documentation/infiniband/
2906F: drivers/infiniband/
2907F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Robert Lovec9f04f52005-07-15 12:21:07 -04002909INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002910P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002911M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002912P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002913M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002914P: Eric Paris
2915M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002917F: Documentation/filesystems/inotify.txt
2918F: fs/notify/inotify/
2919F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002920
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002921INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2922P: Dmitry Torokhov
2923M: dmitry.torokhov@gmail.com
2924M: dtor@mail.ru
2925L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002926T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002928F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002929
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002930INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002931P: Sylvain Meyer
2932M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002933L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002935F: Documentation/fb/intelfb.txt
2936F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002939P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002940M: adaplas@gmail.com
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: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302945INTEL MENLOW THERMAL DRIVER
2946P: Sujith Thomas
2947M: sujith.thomas@intel.com
2948L: linux-acpi@vger.kernel.org
2949W: http://www.lesswatts.org/projects/acpi/
2950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002951F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302952
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953INTEL IA32 MICROCODE UPDATE SUPPORT
2954P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002955M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: arch/x86/kernel/microcode_core.c
2958F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002960INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002961P: Maciej Sosnowski
2962M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002964F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002965
David Woodhouse6c8909b2008-10-18 16:12:17 +01002966INTEL IOMMU (VT-d)
2967P: David Woodhouse
2968M: dwmw2@infradead.org
2969L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002970T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002971S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002972F: drivers/pci/intel-iommu.c
2973F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002974
Dan Williamsb3e5f262007-08-07 10:26:35 -07002975INTEL IOP-ADMA DMA DRIVER
2976P: Dan Williams
2977M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002978S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002979F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002980
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002981INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2982P: Krzysztof Halasa
2983M: khc@pm.waw.pl
2984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002985F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2986F: arch/arm/mach-ixp4xx/include/mach/npe.h
2987F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2988F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2989F: drivers/net/arm/ixp4xx_eth.c
2990F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002991
Michael Buesch844dd052006-06-26 00:24:59 -07002992INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2993P: Deepak Saxena
2994M: dsaxena@plexity.net
2995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002997
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002998INTEL IXP2000 ETHERNET DRIVER
2999P: Lennert Buytenhek
3000M: kernel@wantstofly.org
3001L: netdev@vger.kernel.org
3002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003003F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003004
Auke Kokd94e6fe2008-03-03 14:37:47 -08003005INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08003006P: Jeff Kirsher
3007M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07003008P: Jesse Brandeburg
3009M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08003010P: Bruce Allan
3011M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07003012P: PJ Waskiewicz
3013M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08003014P: John Ronciak
3015M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08003016L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003017W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003019F: drivers/net/e100.c
3020F: drivers/net/e1000/
3021F: drivers/net/e1000e/
3022F: drivers/net/igb/
3023F: drivers/net/ixgb/
3024F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
James Ketrenos826d2ab2005-11-07 18:56:59 -06003026INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003027P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003028M: yi.zhu@intel.com
3029P: James Ketrenos
3030M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003031P: Reinette Chatre
3032M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003033L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003034L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003035W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003036W: http://ipw2100.sourceforge.net
3037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003038F: Documentation/networking/README.ipw2100
3039F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003040
3041INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003042P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003043M: yi.zhu@intel.com
3044P: James Ketrenos
3045M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003046P: Reinette Chatre
3047M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003048L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003049L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003050W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003051W: http://ipw2200.sourceforge.net
3052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/networking/README.ipw2200
3054F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003055
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003056INTEL WIRELESS WIMAX CONNECTION 2400
3057P: Inaky Perez-Gonzalez
3058M: inaky.perez-gonzalez@intel.com
3059M: linux-wimax@intel.com
3060L: wimax@linuxwimax.org
3061S: Supported
3062W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003063F: Documentation/wimax/README.i2400m
3064F: drivers/net/wimax/i2400m/
3065F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003066
Zhu Yib481de92007-09-25 17:54:57 -07003067INTEL WIRELESS WIFI LINK (iwlwifi)
3068P: Zhu Yi
3069M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003070P: Reinette Chatre
3071M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003072L: linux-wireless@vger.kernel.org
3073L: ipw3945-devel@lists.sourceforge.net
3074W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003075T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003076S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003077F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003078
Ralf Baechlecb109a02007-08-30 23:56:30 -07003079IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080P: Ralf Baechle
3081M: ralf@linux-mips.org
3082L: linux-mips@linux-mips.org
3083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003084F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Ralf Baechlecb109a02007-08-30 23:56:30 -07003086IOC3 SERIAL DRIVER
3087P: Pat Gefre
3088M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003089L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003091F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003092
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003093IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094P: Juanjo Ciarlante
3095M: jjciarla@raiz.uncu.edu.ar
3096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Francois Romieu1202d6f2007-09-17 17:13:55 -07003099IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3100P: Francois Romieu
3101M: romieu@fr.zoreil.com
3102P: Sorbica Shieh
3103M: sorbica@icplus.com.tw
3104P: Jesse Huang
3105M: jesse@icplus.com.tw
3106L: netdev@vger.kernel.org
3107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003108F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003109
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003110IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003111P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003112M: infinipath@qlogic.com
3113L: general@lists.openfabrics.org
3114T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003115S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003116F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003117
Corey Minyard4409ebe2006-04-20 02:43:12 -07003118IPMI SUBSYSTEM
3119P: Corey Minyard
3120M: minyard@acm.org
3121L: openipmi-developer@lists.sourceforge.net
3122W: http://openipmi.sourceforge.net/
3123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003124F: Documentation/IPMI.txt
3125F: drivers/char/ipmi/
3126F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003128IPS SCSI RAID DRIVER
3129P: Adaptec OEM Raid Solutions
3130M: aacraid@adaptec.com
3131L: linux-scsi@vger.kernel.org
3132W: http://www.adaptec.com/
3133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003134F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003135
3136IPVS
3137P: Wensong Zhang
3138M: wensong@linux-vs.org
3139P: Simon Horman
3140M: horms@verge.net.au
3141P: Julian Anastasov
3142M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003143L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003144L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003146F: Documentation/networking/ipvs-sysctl.txt
3147F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Randy Dunlape7839f22008-10-12 16:11:45 -07003149IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003150P: Jiri Kosina
3151M: jkosina@suse.cz
3152P: David Sterba
3153M: dsterba@suse.cz
3154S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003155T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003156F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003158IPX NETWORK LAYER
3159P: Arnaldo Carvalho de Melo
3160M: acme@ghostprotocols.net
3161L: netdev@vger.kernel.org
3162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003163F: include/linux/ipx.h
3164F: include/net/ipx.h
3165F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003168P: Samuel Ortiz
3169M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003170L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003172S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003173T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003174F: Documentation/networking/irda.txt
3175F: drivers/net/irda/
3176F: include/net/irda/
3177F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003179ISAPNP
3180P: Jaroslav Kysela
3181M: perex@perex.cz
3182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003183F: Documentation/isapnp.txt
3184F: drivers/pnp/isapnp/
3185F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003186
Mike Christie14816b12007-11-28 16:22:06 -08003187ISCSI
3188P: Mike Christie
3189M: michaelc@cs.wisc.edu
3190L: open-iscsi@googlegroups.com
3191W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003192T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003194F: drivers/scsi/*iscsi*
3195F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197ISDN SUBSYSTEM
3198P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003199M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003200L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003202T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003204F: Documentation/isdn/
3205F: drivers/isdn/
3206F: include/linux/isdn.h
3207F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209ISDN SUBSYSTEM (Eicon active card driver)
3210P: Armin Schindler
3211M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003212L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213W: http://www.melware.de
3214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003215F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Hans Verkuil91821ff2007-12-02 09:35:33 -03003217IVTV VIDEO4LINUX DRIVER
3218P: Hans Verkuil
3219M: hverkuil@xs4all.nl
3220L: ivtv-devel@ivtvdriver.org
3221L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003222L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003223T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003224W: http://www.ivtvdriver.org
3225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003226F: Documentation/video4linux/*.ivtv
3227F: drivers/media/video/ivtv/
3228F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003229
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003230JFS FILESYSTEM
3231P: Dave Kleikamp
3232M: shaggy@austin.ibm.com
3233L: jfs-discussion@lists.sourceforge.net
3234W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003235T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003237F: Documentation/filesystems/jfs.txt
3238F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003239
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003240JME NETWORK DRIVER
3241P: Guo-Fu Tseng
3242M: cooldavid@cooldavid.org
3243L: netdev@vger.kernel.org
3244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003245F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003246
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3248P: David Woodhouse
3249M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003250L: linux-mtd@lists.infradead.org
3251W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003253F: fs/jffs2/
3254F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Josh Triplettde456d32006-07-30 03:04:00 -07003256JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003257P: Stephen Tweedie
3258M: sct@redhat.com
3259P: Andrew Morton
3260M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003261L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: fs/jbd*/
3264F: include/linux/ext*jbd*.h
3265F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003266
Rudolf Marek4660cb32006-10-08 22:01:26 +02003267K8TEMP HARDWARE MONITORING DRIVER
3268P: Rudolf Marek
3269M: r.marek@assembler.cz
3270L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003272F: Documentation/hwmon/k8temp
3273F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
3275KCONFIG
3276P: Roman Zippel
3277M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003278L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003280F: Documentation/kbuild/kconfig-language.txt
3281F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Vivek Goyalea6c2082006-05-20 14:59:55 -07003283KDUMP
3284P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003285M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003286P: Haren Myneni
3287M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003288L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003289W: http://lse.sourceforge.net/kdump/
3290S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003291F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003292
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293KERNEL AUTOMOUNTER (AUTOFS)
3294P: H. Peter Anvin
3295M: hpa@zytor.com
3296L: autofs@linux.kernel.org
3297S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003298F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300KERNEL AUTOMOUNTER v4 (AUTOFS4)
3301P: Ian Kent
3302M: raven@themaw.net
3303L: autofs@linux.kernel.org
3304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003305F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Joe Perches7d2c86b2009-04-07 20:59:01 -07003307KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308P: Sam Ravnborg
3309M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003310T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3311T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003312L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003314F: Documentation/kbuild/
3315F: Makefile
3316F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318KERNEL JANITORS
3319P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003320L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322S: Maintained
3323
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003324KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003325P: J. Bruce Fields
3326M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003328M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003329L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003331S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003332F: fs/nfsd/
3333F: include/linux/nfsd/
3334F: fs/lockd/
3335F: fs/nfs_common/
3336F: net/sunrpc/
3337F: include/linux/lockd/
3338F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Avi Kivity426d62e2006-12-13 00:34:03 -08003340KERNEL VIRTUAL MACHINE (KVM)
3341P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003342M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003343L: kvm@vger.kernel.org
3344W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003346F: Documentation/*/kvm.txt
3347F: arch/*/kvm/
3348F: arch/*/include/asm/kvm*
3349F: include/linux/kvm*
3350F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003351
Joerg Roedelad8003d2008-09-10 20:01:07 +02003352KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3353P: Joerg Roedel
3354M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003355L: kvm@vger.kernel.org
3356W: http://kvm.qumranet.com
3357S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003358F: arch/x86/include/asm/svm.h
3359F: arch/x86/kvm/kvm_svm.h
3360F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003361
Hollis Blanchard513014b2008-04-16 23:28:08 -05003362KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3363P: Hollis Blanchard
3364M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003365L: kvm-ppc@vger.kernel.org
3366W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003368F: arch/powerpc/include/asm/kvm*
3369F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003370
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003371KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003372P: Xiantao Zhang
3373M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003374L: kvm-ia64@vger.kernel.org
3375W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003376S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003377F: Documentation/ia64/kvm.txt
3378F: arch/ia64/include/asm/kvm*
3379F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003380
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003381KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3382P: Carsten Otte
3383M: cotte@de.ibm.com
3384P: Christian Borntraeger
3385M: borntraeger@de.ibm.com
3386M: linux390@de.ibm.com
3387L: linux-s390@vger.kernel.org
3388W: http://www.ibm.com/developerworks/linux/linux390/
3389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003390F: Documentation/s390/kvm.txt
3391F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003392F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003393
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003394KEXEC
3395P: Eric Biederman
3396M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003397W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003398L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003400F: include/linux/kexec.h
3401F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003402
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003403KGDB
3404P: Jason Wessel
3405M: jason.wessel@windriver.com
3406L: kgdb-bugreport@lists.sourceforge.net
3407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: Documentation/DocBook/kgdb.tmpl
3409F: drivers/misc/kgdbts.c
3410F: drivers/serial/kgdboc.c
3411F: include/linux/kgdb.h
3412F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003413
Pekka Enberg456db8c2008-04-28 22:47:29 +03003414KMEMCHECK
3415P: Vegard Nossum
3416M: vegardno@ifi.uio.no
3417P Pekka Enberg
3418M: penberg@cs.helsinki.fi
3419L: linux-kernel@vger.kernel.org
3420S: Maintained
3421
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003422KMEMLEAK
3423P: Catalin Marinas
3424M: catalin.marinas@arm.com
3425L: linux-kernel@vger.kernel.org
3426S: Maintained
3427F: Documentation/kmemleak.txt
3428F: include/linux/kmemleak.h
3429F: mm/kmemleak.c
3430F: mm/kmemleak-test.c
3431
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003432KMEMTRACE
3433P: Eduard - Gabriel Munteanu
3434M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003435S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003436F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003437F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003438F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003439
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003440KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003441P: Ananth N Mavinakayanahalli
3442M: ananth@in.ibm.com
3443P: Anil S Keshavamurthy
3444M: anil.s.keshavamurthy@intel.com
3445P: David S. Miller
3446M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003447P: Masami Hiramatsu
3448M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003450F: Documentation/kprobes.txt
3451F: include/linux/kprobes.h
3452F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003453
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003454KS0108 LCD CONTROLLER DRIVER
3455P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003456M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003457W: http://miguelojeda.es/auxdisplay.htm
3458W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003460F: Documentation/auxdisplay/ks0108
3461F: drivers/auxdisplay/ks0108.c
3462F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003466S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003467F: Documentation/networking/lapb-module.txt
3468F: include/*/lapb.h
3469F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
3471LASI 53c700 driver for PARISC
3472P: James E.J. Bottomley
3473M: James.Bottomley@HansenPartnership.com
3474L: linux-scsi@vger.kernel.org
3475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: Documentation/scsi/53c700.txt
3477F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
Richard Purdie263de9b2006-05-15 09:44:16 -07003479LED SUBSYSTEM
3480P: Richard Purdie
3481M: rpurdie@rpsys.net
3482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003483F: drivers/leds/
3484F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486LEGO USB Tower driver
3487P: Juergen Stuber
3488M: starblue@users.sourceforge.net
3489L: legousb-devel@lists.sourceforge.net
3490W: http://legousb.sourceforge.net/
3491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003492F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Rusty Russell568a17f2007-10-25 14:12:24 +10003494LGUEST
3495P: Rusty Russell
3496M: rusty@rustcorp.com.au
3497L: lguest@ozlabs.org
3498W: http://lguest.ozlabs.org/
3499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003500F: Documentation/lguest/
3501F: arch/x86/lguest/
3502F: drivers/lguest/
3503F: include/linux/lguest*.h
3504F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003505
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506LINUX FOR IBM pSERIES (RS/6000)
3507P: Paul Mackerras
3508M: paulus@au.ibm.com
3509W: http://www.ibm.com/linux/ltc/projects/ppc
3510S: Supported
3511
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003512LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003513P: Benjamin Herrenschmidt
3514M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003515P: Paul Mackerras
3516M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517W: http://www.penguinppc.org/
3518L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003519T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520S: Supported
3521
3522LINUX FOR POWER MACINTOSH
3523P: Benjamin Herrenschmidt
3524M: benh@kernel.crashing.org
3525W: http://www.penguinppc.org/
3526L: linuxppc-dev@ozlabs.org
3527S: Maintained
3528
Grant Likely77a76362008-07-12 12:11:43 -06003529LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003530P: Grant Likely
3531M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003533T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534S: Maintained
3535
3536LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003537P: Josh Boyer
3538M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539P: Matt Porter
3540M: mporter@kernel.crashing.org
3541W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003542L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003543T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544S: Maintained
3545
Grant Likely260c02a2007-10-02 12:15:34 +10003546LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3547P: Grant Likely
3548M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003549W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003550L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003551T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552S: Maintained
3553
Tom Rinie93adf12005-07-26 12:49:53 -07003554LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003555P: Vitaly Bordug
3556M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003557P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003558M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003559W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003560L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003561S: Maintained
3562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003564P: Kumar Gala
3565M: galak@kernel.crashing.org
3566W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003567L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003568S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Olof Johanssonab06ff32006-09-06 14:44:54 -05003570LINUX FOR POWERPC PA SEMI PWRFICIENT
3571P: Olof Johansson
3572M: olof@lixom.net
3573W: http://www.pasemi.com/
3574L: linuxppc-dev@ozlabs.org
3575S: Supported
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577LINUX SECURITY MODULE (LSM) FRAMEWORK
3578P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003579M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003580L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003581T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582S: Supported
3583
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003584LLC (802.2)
3585P: Arnaldo Carvalho de Melo
3586M: acme@ghostprotocols.net
3587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003588F: include/linux/llc.h
3589F: include/net/llc*
3590F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003591
Pavel Machek455fbdd2008-11-12 13:27:02 -08003592LIS3LV02D ACCELEROMETER DRIVER
3593P: Eric Piel
3594M: eric.piel@tremplin-utc.net
3595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003596F: Documentation/hwmon/lis3lv02d
3597F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003598
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599LM83 HARDWARE MONITOR DRIVER
3600P: Jean Delvare
3601M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003602L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003604F: Documentation/hwmon/lm83
3605F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
3607LM90 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/lm90
3613F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003615LOCKDEP AND LOCKSTAT
3616P: Peter Zijlstra
3617M: peterz@infradead.org
3618P: Ingo Molnar
3619M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003620T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003622F: Documentation/lockdep*.txt
3623F: Documentation/lockstat.txt
3624F: include/linux/lockdep.h
3625F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003626
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003627LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628P: Richard Russon (FlatCap)
3629M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003630L: linux-ntfs-dev@lists.sourceforge.net
3631W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003633F: Documentation/ldm.txt
3634F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003636LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3637P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003638M: Eric.Moore@lsi.com
3639M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003640L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003641L: linux-scsi@vger.kernel.org
3642W: http://www.lsilogic.com/support
3643S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003644F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003645
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3647P: Matthew Wilcox
3648M: matthew@wil.cx
3649L: linux-scsi@vger.kernel.org
3650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003651F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652
Mike Frysinger81365c32008-10-29 14:01:12 -07003653LTP (Linux Test Project)
3654P: Subrata Modak
3655M: subrata@linux.vnet.ibm.com
3656P: Mike Frysinger
3657M: vapier@gentoo.org
3658L: ltp-list@lists.sourceforge.net (subscribers-only)
3659W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003660T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003661S: Maintained
3662
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003663M32R ARCHITECTURE
3664P: Hirokazu Takata
3665M: takata@linux-m32r.org
3666L: linux-m32r@ml.linux-m32r.org
3667L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3668W: http://www.linux-m32r.org/
3669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003670F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672M68K ARCHITECTURE
3673P: Geert Uytterhoeven
3674M: geert@linux-m68k.org
3675P: Roman Zippel
3676M: zippel@linux-m68k.org
3677L: linux-m68k@lists.linux-m68k.org
3678W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003679T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003681F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003682F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
3684M68K ON APPLE MACINTOSH
3685P: Joshua Thompson
3686M: funaho@jurai.org
3687W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003688L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003690F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692M68K ON HP9000/300
3693P: Philip Blundell
3694M: philb@gnu.org
3695W: http://www.tazenda.demon.co.uk/phil/linux-hp
3696S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003697F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Jiri Benc64a327a2007-05-05 11:47:08 -07003699MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003700P: Johannes Berg
3701M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003702L: linux-wireless@vger.kernel.org
3703W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003704T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: Documentation/networking/mac80211-injection.txt
3707F: include/net/mac80211.h
3708F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003709
Stefano Brivio1036d862007-12-23 04:46:27 +01003710MAC80211 PID RATE CONTROL
3711P: Stefano Brivio
3712M: stefano.brivio@polimi.it
3713P: Mattias Nissler
3714M: mattias.nissler@gmx.de
3715L: linux-wireless@vger.kernel.org
3716W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003717T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003720
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003721MACVLAN DRIVER
3722P: Patrick McHardy
3723M: kaber@trash.net
3724L: netdev@vger.kernel.org
3725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/net/macvlan.c
3727F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003728
Michael Kerriskfaf16682005-07-31 22:34:47 -07003729MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003730P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003731M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003732W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003733L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003734S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003735
Stefano Brivio74cda162007-11-19 20:27:46 +01003736MARVELL LIBERTAS WIRELESS DRIVER
3737P: Dan Williams
3738M: dcbw@redhat.com
3739L: libertas-dev@lists.infradead.org
3740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003741F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003742
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003743MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003744P: Lennert Buytenhek
3745M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003746L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003747S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003748F: drivers/net/mv643xx_eth.*
3749F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
Pierre Ossman2a695672009-03-16 19:52:26 +01003751MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3752P: Nicolas Pitre
3753M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003754S: Maintained
3755
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003756MARVELL YUKON / SYSKONNECT DRIVER
3757P: Mirko Lindner
3758M: mlindner@syskonnect.de
3759P: Ralph Roesler
3760M: rroesler@syskonnect.de
3761W: http://www.syskonnect.com
3762S: Supported
3763
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764MATROX FRAMEBUFFER DRIVER
3765P: Petr Vandrovec
3766M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003767L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003769F: drivers/video/matrox/matroxfb_*
3770F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003772MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3773P: Hans J. Koch
3774M: hjk@linutronix.de
3775L: lm-sensors@lm-sensors.org
3776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003777F: Documentation/hwmon/max6650
3778F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003779
Joe Perches127c49a2009-04-08 08:34:04 -07003780MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3781P: Mauro Carvalho Chehab
3782M: mchehab@infradead.org
3783P: LinuxTV.org Project
3784L: linux-media@vger.kernel.org
3785W: http://linuxtv.org
3786T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3787S: Maintained
3788F: Documentation/dvb/
3789F: Documentation/video4linux/
3790F: drivers/media/
3791F: include/media/
3792F: include/linux/dvb/
3793F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003794
3795MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003796P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003797M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003798L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003799W: http://megaraid.lsilogic.com
3800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003801F: Documentation/scsi/megaraid.txt
3802F: drivers/scsi/megaraid.*
3803F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805MEMORY MANAGEMENT
3806L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807W: http://www.linux-mm.org
3808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003809F: include/linux/mm.h
3810F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003811
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003812MEMORY RESOURCE CONTROLLER
3813P: Balbir Singh
3814M: balbir@linux.vnet.ibm.com
3815P: Pavel Emelyanov
3816M: xemul@openvz.org
3817P: KAMEZAWA Hiroyuki
3818M: kamezawa.hiroyu@jp.fujitsu.com
3819L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003821F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003822
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823MEMORY TECHNOLOGY DEVICES (MTD)
3824P: David Woodhouse
3825M: dwmw2@infradead.org
3826W: http://www.linux-mtd.infradead.org/
3827L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003828T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003830F: drivers/mtd/
3831F: include/linux/mtd/
3832F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833
Michal Simekc6375b02009-03-27 14:25:52 +01003834MICROBLAZE ARCHITECTURE
3835P: Michal Simek
3836M: monstr@monstr.eu
3837L: microblaze-uclinux@itee.uq.edu.au
3838W: http://www.monstr.eu/fdt/
3839T: git git://git.monstr.eu/linux-2.6-microblaze.git
3840S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003841F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842
3843MICROTEK X6 SCANNER
3844P: Oliver Neukum
3845M: oliver@neukum.name
3846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003847F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849MIPS
3850P: Ralf Baechle
3851M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003852W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003854T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003856F: Documentation/mips/
3857F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
3859MISCELLANEOUS MCA-SUPPORT
3860P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003861M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003863F: Documentation/ia64/mca.txt
3864F: Documentation/mca.txt
3865F: drivers/mca/
3866F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
3868MODULE SUPPORT
3869P: Rusty Russell
3870M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003872F: include/linux/module.h
3873F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
3875MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3876P: Stelian Pop
3877M: stelian@popies.net
3878W: http://popies.net/meye/
3879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003880F: Documentation/video4linux/meye.txt
3881F: drivers/media/video/meye.*
3882F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
Pavel Pisac58ff042007-05-16 01:10:41 +02003884MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3885P: Pavel Pisa
3886M: ppisa@pikron.com
3887L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003889F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891MOUSE AND MISC DEVICES [GENERAL]
3892P: Alessandro Rubini
3893M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003895F: drivers/input/mouse/
3896F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
Jiri Slabyb9705b62008-04-30 00:53:48 -07003898MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003899P: Jiri Slaby
3900M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003902F: Documentation/serial/moxa-smartio
3903F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003904
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003905MSI LAPTOP SUPPORT
3906P: Lennart Poettering
3907M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003908W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003909W: http://0pointer.de/lennart/tchibo.html
3910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003912
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003913MULTIFUNCTION DEVICES (MFD)
3914P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003915M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003916T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003917S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003918F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003919
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003920MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003921P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003922M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003924F: drivers/mmc/
3925F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003926
David Brownell15a05802007-08-08 09:12:54 -07003927MULTIMEDIA CARD (MMC) ETC. OVER SPI
3928P: David Brownell
3929M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003930S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003931F: drivers/mmc/host/mmc_spi.c
3932F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003933
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934MULTISOUND SOUND DRIVER
3935P: Andrew Veliath
3936M: andrewtv@usa.net
3937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003938F: Documentation/sound/oss/MultiSound
3939F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Jiri Slabyd7354102006-12-08 02:38:35 -08003941MULTITECH MULTIPORT CARD (ISICOM)
3942P: Jiri Slaby
3943M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003945F: drivers/char/isicom.c
3946F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003947
Felipe Balbi550a7372008-07-24 12:27:36 +03003948MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003949P: Felipe Balbi
3950M: felipe.balbi@nokia.com
3951L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003952T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003954F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003955
Brice Goglin2d3cf582008-05-17 12:45:36 +02003956MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3957P: Andrew Gallatin
3958M: gallatin@myri.com
3959P: Brice Goglin
3960M: brice@myri.com
3961L: netdev@vger.kernel.org
3962W: http://www.myri.com/scs/download-Myri10GE.html
3963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003964F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003967P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968M: thockin@hockin.org
3969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003970F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972NCP FILESYSTEM
3973P: Petr Vandrovec
3974M: vandrove@vc.cvut.cz
3975L: linware@sh.cvut.cz
3976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003977F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
3979NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3980P: James E.J. Bottomley
3981M: James.Bottomley@HansenPartnership.com
3982L: linux-scsi@vger.kernel.org
3983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003984F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003986NETEFFECT IWARP RNIC DRIVER (IW_NES)
3987P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003988M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003989P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003990M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003991L: general@lists.openfabrics.org
3992W: http://www.neteffect.com
3993S: Supported
3994F: drivers/infiniband/hw/nes/
3995
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003996NETEM NETWORK EMULATOR
3997P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003998M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003999L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004001F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004002
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004003NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07004004P: Ramkrishna Vepa
4005M: ram.vepa@neterion.com
4006P: Rastapur Santosh
4007M: santosh.rastapur@neterion.com
4008P: Sivakumar Subramani
4009M: sivakumar.subramani@neterion.com
4010P: Sreenivasa Honnur
4011M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004012P: Anil Murthy
4013M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07004014L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004015W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4016W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004017S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004018F: Documentation/networking/s2io.txt
4019F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021NETFILTER/IPTABLES/IPCHAINS
4022P: Rusty Russell
4023P: Marc Boucher
4024P: James Morris
4025P: Harald Welte
4026P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004027P: Patrick McHardy
4028M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004029L: netfilter-devel@vger.kernel.org
4030L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004031L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032W: http://www.netfilter.org/
4033W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004035F: include/linux/netfilter*
4036F: include/linux/netfilter/
4037F: include/net/netfilter/
4038F: net/*/netfilter.c
4039F: net/*/netfilter/
4040F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Paul Moore4cc67732006-09-25 15:57:13 -07004042NETLABEL
4043P: Paul Moore
4044M: paul.moore@hp.com
4045W: http://netlabel.sf.net
4046L: netdev@vger.kernel.org
4047S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004048F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004049F: include/net/netlabel.h
4050F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004051
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052NETROM NETWORK LAYER
4053P: Ralf Baechle
4054M: ralf@linux-mips.org
4055L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004056W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004058F: include/linux/netrom.h
4059F: include/net/netrom.h
4060F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004062NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063P: Paul Clements
4064M: Paul.Clements@steeleye.com
4065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004066F: Documentation/blockdev/nbd.txt
4067F: drivers/block/nbd.c
4068F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004071P: David S. Miller
4072M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004073L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004074W: http://www.linuxfoundation.org/en/Net
4075T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004077F: net/
4078F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
4080NETWORKING [IPv4/IPv6]
4081P: David S. Miller
4082M: davem@davemloft.net
4083P: Alexey Kuznetsov
4084M: kuznet@ms2.inr.ac.ru
4085P: Pekka Savola (ipv6)
4086M: pekkas@netcore.fi
4087P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004088M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089P: Hideaki YOSHIFUJI
4090M: yoshfuji@linux-ipv6.org
4091P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004092M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004093L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004094T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004096F: net/ipv4/
4097F: net/ipv6/
4098F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
James Morris10e2ff12007-08-25 14:41:28 -07004100NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4101P: Paul Moore
4102M: paul.moore@hp.com
4103L: netdev@vger.kernel.org
4104S: Maintained
4105
John W. Linville29f8f632006-01-18 14:52:48 -08004106NETWORKING [WIRELESS]
4107P: John W. Linville
4108M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004109L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004110T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004112F: net/wireless/
4113F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004114F: include/linux/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004115
Joe Perches788873a2009-04-16 09:38:45 +00004116NETWORKING DRIVERS
4117L: netdev@vger.kernel.org
4118W: http://www.linuxfoundation.org/en/Net
4119T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4120S: Odd Fixes
4121F: drivers/net/
4122
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004123NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004124P: Dhananjay Phadke
4125M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004126L: netdev@vger.kernel.org
4127W: http://www.netxen.com
4128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004129F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004130
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004131NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004133M: Trond.Myklebust@netapp.com
4134L: linux-nfs@vger.kernel.org
4135W: http://client.linux-nfs.org
4136T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: fs/lockd/
4139F: fs/nfs/
4140F: fs/nfs_common/
4141F: net/sunrpc/
4142F: include/linux/lockd/
4143F: include/linux/nfs*
4144F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
4146NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004147P: Jan-Pascal van Best
4148M: janpascal@vanbest.org
4149P: Andreas Mohr
4150M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004151L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004153F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004155NILFS2 FILESYSTEM
4156P: KONISHI Ryusuke
4157M: konishi.ryusuke@lab.ntt.co.jp
4158L: users@nilfs.org
4159W: http://www.nilfs.org/en/
4160S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004161F: Documentation/filesystems/nilfs2.txt
4162F: fs/nilfs2/
4163F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004164
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4166P: YOKOTA Hiroshi
4167M: yokota@netlab.is.tsukuba.ac.jp
4168W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004170F: Documentation/scsi/NinjaSCSI.txt
4171F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
4173NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4174P: GOTO Masanori
4175M: gotom@debian.or.jp
4176P: YOKOTA Hiroshi
4177M: yokota@netlab.is.tsukuba.ac.jp
4178W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004180F: Documentation/scsi/NinjaSCSI.txt
4181F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183NTFS FILESYSTEM
4184P: Anton Altaparmakov
4185M: aia21@cantab.net
4186L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004187W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004188T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004190F: Documentation/filesystems/ntfs.txt
4191F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004193NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004194P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004195M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004196L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004198F: drivers/video/riva/
4199F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Tony Lindgrenf5525782009-05-28 13:23:53 -07004201OMAP SUPPORT
4202P: Tony Lindgren <tony@atomide.com>
4203M: tony@atomide.com
4204L: linux-omap@vger.kernel.org
4205W: http://www.muru.com/linux/omap/
4206W: http://linux.omap.com/
4207T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4208S: Maintained
4209F: arch/arm/*omap*
4210
4211OMAP CLOCK FRAMEWORK SUPPORT
4212P: Paul Walmsley
4213M: paul@pwsan.com
4214L: linux-omap@vger.kernel.org
4215S: Maintained
4216F: arch/arm/*omap*/*clock*
4217
4218OMAP POWER MANAGEMENT SUPPORT
4219P: Kevin Hilman
4220M: khilman@deeprootsystems.com
4221L: linux-omap@vger.kernel.org
4222S: Maintained
4223F: arch/arm/*omap*/*pm*
4224
4225OMAP AUDIO SUPPORT
4226P: Jarkko Nikula
4227M: jhnikula@gmail.com
4228L: alsa-devel@alsa-project.org (subscribers-only)
4229L: linux-omap@vger.kernel.org
4230S: Maintained
4231F: sound/soc/omap/
4232
4233OMAP FRAMEBUFFER SUPPORT
4234P: Imre Deak
4235M: imre.deak@nokia.com
4236L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4237L: linux-omap@vger.kernel.org
4238S: Maintained
4239F: drivers/video/omap/
4240
4241OMAP MMC SUPPORT
4242P: Jarkko Lavinen
4243M: jarkko.lavinen@nokia.com
4244L: linux-kernel@vger.kernel.org
4245L: linux-omap@vger.kernel.org
4246S: Maintained
4247F: drivers/mmc/host/*omap*
4248
4249OMAP RANDOM NUMBER GENERATOR SUPPORT
4250P: Deepak Saxena
4251M: dsaxena@plexity.net
4252S: Maintained
4253F: drivers/char/hw_random/omap-rng.c
4254
4255OMAP USB SUPPORT
4256P: Felipe Balbi
4257M: felipe.balbi@nokia.com
4258P: David Brownell
4259M: dbrownell@users.sourceforge.net
4260L: linux-usb@vger.kernel.org
4261L: linux-omap@vger.kernel.org
4262S: Maintained
4263
Bob Copeland0ad122d2008-07-25 19:45:18 -07004264OMFS FILESYSTEM
4265P: Bob Copeland
4266M: me@bobcopeland.com
4267L: linux-karma-devel@lists.sourceforge.net
4268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004269F: Documentation/filesystems/omfs.txt
4270F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004271
Harald Weltec1986ee2005-11-13 16:06:29 -08004272OMNIKEY CARDMAN 4000 DRIVER
4273P: Harald Welte
4274M: laforge@gnumonks.org
4275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004276F: drivers/char/pcmcia/cm4000_cs.c
4277F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004278
Harald Welte77c44ab2005-11-13 16:06:26 -08004279OMNIKEY CARDMAN 4040 DRIVER
4280P: Harald Welte
4281M: laforge@gnumonks.org
4282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004283F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004284
Jonathan Corbet77d51402007-03-22 19:44:17 -03004285OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004286P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004287M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004288L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004289T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004291F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004292
Thomas Gleixner431bca72007-05-02 09:31:35 +02004293ONENAND FLASH DRIVER
4294P: Kyungmin Park
4295M: kyungmin.park@samsung.com
4296L: linux-mtd@lists.infradead.org
4297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004298F: drivers/mtd/onenand/
4299F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004300
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301ONSTREAM SCSI TAPE DRIVER
4302P: Willem Riede
4303M: osst@riede.org
4304L: osst-users@lists.sourceforge.net
4305L: linux-scsi@vger.kernel.org
4306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/scsi/osst*
4308F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004310OPENCORES I2C BUS DRIVER
4311P: Peter Korsgaard
4312M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004313L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004315F: Documentation/i2c/busses/i2c-ocores
4316F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004317
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004319P: Robert Richter
4320M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321L: oprofile-list@lists.sf.net
4322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004323F: arch/*/oprofile/
4324F: drivers/oprofile/
4325F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004327ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4328P: Mark Fasheh
4329M: mfasheh@suse.com
4330P: Joel Becker
4331M: joel.becker@oracle.com
4332L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4333W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004334T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004335S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004336F: Documentation/filesystems/ocfs2.txt
4337F: Documentation/filesystems/dlmfs.txt
4338F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340ORINOCO DRIVER
4341P: Pavel Roskin
4342M: proski@gnu.org
4343P: David Gibson
4344M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004345L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004346L: orinoco-users@lists.sourceforge.net
4347L: orinoco-devel@lists.sourceforge.net
4348W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004350F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Boaz Harrosh68274792009-01-25 17:24:14 +02004352OSD LIBRARY
4353P: Boaz Harrosh
4354M: bharrosh@panasas.com
4355P: Benny Halevy
4356M: bhalevy@panasas.com
4357L: osd-dev@open-osd.org
4358W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004359T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004360S: Maintained
4361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004362P54 WIRELESS DRIVER
4363P: Michael Wu
4364M: flamingice@sourmilk.net
4365L: linux-wireless@vger.kernel.org
4366W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004367T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004369F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004370
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004371PA SEMI ETHERNET DRIVER
4372P: Olof Johansson
4373M: olof@lixom.net
4374L: netdev@vger.kernel.org
4375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004376F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004377
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004378PA SEMI SMBUS DRIVER
4379P: Olof Johansson
4380M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004381L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004383F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004384
Harald Welte709ee532008-09-23 17:46:57 +02004385PANASONIC LAPTOP ACPI EXTRAS DRIVER
4386P: Harald Welte
4387M: laforge@gnumonks.org
4388S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004389F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004390
David Howells4fa97182008-10-13 10:42:44 +01004391PANASONIC MN10300/AM33 PORT
4392P: David Howells
4393M: dhowells@redhat.com
4394P: Koichi Yasutake
4395M: yasutake.koichi@jp.panasonic.com
4396L: linux-am33-list@redhat.com (moderated for non-subscribers)
4397W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004399F: Documentation/mn10300/
4400F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004403L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004404S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004405F: drivers/parport/
4406F: include/linux/parport*.h
4407F: drivers/char/ppdev.c
4408F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004410PARAVIRT_OPS INTERFACE
4411P: Jeremy Fitzhardinge
4412M: jeremy@xensource.com
4413P: Chris Wright
4414M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004415P: Alok Kataria
4416M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004417P: Rusty Russell
4418M: rusty@rustcorp.com.au
4419L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004421F: Documentation/ia64/paravirt_ops.txt
4422F: arch/*/kernel/paravirt*
4423F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004424
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4426P: Tim Waugh
4427M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004428L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429W: http://www.torque.net/linux-pp.html
4430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/blockdev/paride.txt
4432F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
4434PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004435P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004436M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004437P: Helge Deller
4438M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004439L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004441T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004443F: arch/parisc/
4444F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
Jim Cromie1662d322006-10-06 00:43:59 -07004446PC87360 HARDWARE MONITORING DRIVER
4447P: Jim Cromie
4448M: jim.cromie@gmail.com
4449L: lm-sensors@lm-sensors.org
4450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004451F: Documentation/hwmon/pc87360
4452F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004453
4454PC8736x GPIO DRIVER
4455P: Jim Cromie
4456M: jim.cromie@gmail.com
4457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004458F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004459
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004460PCA9532 LED DRIVER
4461P: Riku Voipio
4462M: riku.voipio@iki.fi
4463S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004464F: drivers/leds/leds-pca9532.c
4465F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004466
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004467PCI ERROR RECOVERY
4468P: Linas Vepstas
4469M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004470L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004472F: Documentation/PCI/pci-error-recovery.txt
4473F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004474
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004476P: Jesse Barnes
4477M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004478L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004479T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004481F: Documentation/PCI/
4482F: drivers/pci/
4483F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004485PCIE HOTPLUG DRIVER
4486P: Kristen Carlson Accardi
4487M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004488L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004490F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004491
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004493P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004494L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004495W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004496T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: Documentation/pcmcia/
4499F: drivers/pcmcia/
4500F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501
4502PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004503P: Don Fry
4504M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004505L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004507F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004509PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004510P: Balbir Singh
4511M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004513F: include/linux/delayacct.h
4514F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004515
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004516PERFORMANCE COUNTER SUBSYSTEM
4517P: Peter Zijlstra
4518M: a.p.zijlstra@chello.nl
4519P: Paul Mackerras
4520M: paulus@samba.org
4521P: Ingo Molnar
4522M: mingo@elte.hu
4523L: linux-kernel@vger.kernel.org
4524S: Supported
4525
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004526PERSONALITY HANDLING
4527P: Christoph Hellwig
4528M: hch@infradead.org
4529L: linux-abi-devel@lists.sourceforge.net
4530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004532
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004534P: Joern Engel
4535M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536L: linux-mtd@lists.infradead.org
4537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004538F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539
Peter Osterlund249a6772005-09-27 21:45:30 -07004540PKTCDVD DRIVER
4541P: Peter Osterlund
4542M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004544F: drivers/block/pktcdvd.c
4545F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004548P: Thomas Gleixner
4549M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004551F: fs/timerfd.c
4552F: include/linux/timer*
4553F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Anton Vorontsov3be86142007-07-15 04:43:36 +04004555POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4556P: Anton Vorontsov
4557M: cbou@mail.ru
4558P: David Woodhouse
4559M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004560T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: include/linux/power_supply.h
4563F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004564
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565PNP SUPPORT
4566P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004567M: abelay@mit.edu
4568P: Bjorn Helgaas
4569M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Vitaly Wool999445d2007-01-04 13:07:03 +01004573PNXxxxx I2C DRIVER
4574P: Vitaly Wool
4575M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004576L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580PPP PROTOCOL DRIVERS AND COMPRESSORS
4581P: Paul Mackerras
4582M: paulus@samba.org
4583L: linux-ppp@vger.kernel.org
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586
4587PPP OVER ATM (RFC 2364)
4588P: Mitchell Blank Jr
4589M: mitch@sfgoth.com
4590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004591F: net/atm/pppoatm.c
4592F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
4594PPP OVER ETHERNET
4595P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004596M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004598F: drivers/net/pppoe.c
4599F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
James Chapmana6d23702007-06-27 15:53:17 -07004601PPP OVER L2TP
4602P: James Chapman
4603M: jchapman@katalix.com
4604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004605F: drivers/net/pppol2tp.c
4606F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004607
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004608PPS SUPPORT
4609P: Rodolfo Giometti
4610M: giometti@enneenne.com
4611W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4612L: linuxpps@ml.enneenne.com (subscribers-only)
4613S: Maintained
4614
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615PREEMPTIBLE KERNEL
4616P: Robert Love
4617M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618L: kpreempt-tech@lists.sourceforge.net
4619W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004621F: Documentation/preempt-locking.txt
4622F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004625P: Luis R. Rodriguez
4626M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004627L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628W: http://prism54.org
4629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004630F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
4632PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4633P: Peter Denison
4634M: promise@pnd-pc.demon.co.uk
4635W: http://www.pnd-pc.demon.co.uk/promise/
4636S: Maintained
4637
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004638PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4639P: Mikael Pettersson
4640M: mikpe@it.uu.se
4641L: linux-ide@vger.kernel.org
4642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004643F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004644
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004645PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004646P: Geoff Levand
4647M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004648L: netdev@vger.kernel.org
4649L: cbe-oss-dev@ozlabs.org
4650S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004651F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004652
Geoff Levandf58a9d12006-11-23 00:46:51 +01004653PS3 PLATFORM SUPPORT
4654P: Geoff Levand
4655M: geoffrey.levand@am.sony.com
4656L: linuxppc-dev@ozlabs.org
4657L: cbe-oss-dev@ozlabs.org
4658S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004659F: arch/powerpc/boot/ps3*
4660F: arch/powerpc/include/asm/lv1call.h
4661F: arch/powerpc/include/asm/ps3*.h
4662F: arch/powerpc/platforms/ps3/
4663F: drivers/*/ps3*
4664F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004665F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004666F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004667F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004668
Jim Pariscffb4add2009-01-06 11:32:10 +00004669PS3VRAM DRIVER
4670P: Jim Paris
4671M: jim@jtan.com
4672L: cbe-oss-dev@ozlabs.org
4673S: Maintained
4674
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004675PTRACE SUPPORT
4676P: Roland McGrath
4677M: roland@redhat.com
4678P: Oleg Nesterov
4679M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004680S: Maintained
4681F: include/asm-generic/syscall.h
4682F: include/linux/ptrace.h
4683F: include/linux/regset.h
4684F: include/linux/tracehook.h
4685F: kernel/ptrace.c
4686
Michael Krufky83202042006-07-03 00:24:18 -07004687PVRUSB2 VIDEO4LINUX DRIVER
4688P: Mike Isely
4689M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004690L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004691L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004692W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004693T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004695F: Documentation/video4linux/README.pvrusb2
4696F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004697
Eric Miao30ec2612008-06-12 15:21:41 -07004698PXA2xx/PXA3xx SUPPORT
4699P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004700M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004701P: Russell King
4702M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004703L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004705F: arch/arm/mach-pxa/
4706F: drivers/pcmcia/pxa2xx*
4707F: drivers/spi/pxa2xx*
4708F: drivers/usb/gadget/pxa2*
4709F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004710F: sound/arm/pxa*
4711F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004713PXA168 SUPPORT
4714P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004715M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004716P: Jason Chagas
4717M: jason.chagas@marvell.com
4718L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004719T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004720S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004721
Eric Miao5fa82eb2009-03-20 12:52:24 +08004722PXA910 SUPPORT
4723P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004724M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004725L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004726T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004727S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004728
Pierre Ossman272f1332007-05-14 21:25:26 +02004729PXA MMCI DRIVER
4730S: Orphan
4731
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004732PXA RTC DRIVER
4733P: Robert Jarzmik
4734M: robert.jarzmik@free.fr
4735L: rtc-linux@googlegroups.com
4736S: Maintained
4737
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738QLOGIC QLA2XXX FC-SCSI DRIVER
4739P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004740M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741L: linux-scsi@vger.kernel.org
4742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004743F: Documentation/scsi/LICENSE.qla2xxx
4744F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745
Ron Mercer5a4faa82006-07-25 00:40:21 -07004746QLOGIC QLA3XXX NETWORK DRIVER
4747P: Ron Mercer
4748M: linux-driver@qlogic.com
4749L: netdev@vger.kernel.org
4750S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004751F: Documentation/networking/LICENSE.qla3xxx
4752F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004753
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004754QLOGIC QLGE 10Gb ETHERNET DRIVER
4755P: Ron Mercer
4756M: linux-driver@qlogic.com
4757M: ron.mercer@qlogic.com
4758L: netdev@vger.kernel.org
4759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004760F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004761
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762QNX4 FILESYSTEM
4763P: Anders Larsen
4764M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765W: http://www.alarsen.net/linux/qnx4fs/
4766S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004767F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004768F: include/linux/qnx4_fs.h
4769F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770
4771RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004772P: Benjamin Herrenschmidt
4773M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004774L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004776F: drivers/video/aty/radeon*
4777F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778
4779RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004780P: Paul Mackerras
4781M: paulus@samba.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/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785
Randy Dunlape7839f22008-10-12 16:11:45 -07004786RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004787P: rt2x00 project
4788L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004789L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004790W: http://rt2x00.serialmonkey.com/
4791S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004792T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004793F: drivers/net/wireless/rt2x00/
4794
Nick Piggin9db55792008-02-08 04:19:49 -08004795RAMDISK RAM BLOCK DEVICE DRIVER
4796P: Nick Piggin
4797M: npiggin@suse.de
4798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004799F: Documentation/blockdev/ramdisk.txt
4800F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004801
Matt Mackall9e95ce22005-04-16 15:25:56 -07004802RANDOM NUMBER DRIVER
4803P: Matt Mackall
4804M: mpm@selenic.com
4805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004806F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004807
Matt Porter394b7012005-11-07 01:00:15 -08004808RAPIDIO SUBSYSTEM
4809P: Matt Porter
4810M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004812F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004813
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004814RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4815P: Corey Thomas
4816M: coreythomas@charter.net
4817L: linux-wireless@vger.kernel.org
4818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004819F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004820
4821RCUTORTURE MODULE
4822P: Josh Triplett
4823M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004824P: Paul E. McKenney
4825M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004827F: Documentation/RCU/torture.txt
4828F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004829
Florian Fainellic1f766b2008-02-06 22:39:44 +01004830RDC R-321X SoC
4831P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004832M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004833S: Maintained
4834
Florian Fainellidb17f392007-12-19 11:30:30 +01004835RDC R6040 FAST ETHERNET DRIVER
4836P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004837M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004838L: netdev@vger.kernel.org
4839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004840F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004841
Andy Grovera09ed662009-02-24 15:30:41 +00004842RDS - RELIABLE DATAGRAM SOCKETS
4843P: Andy Grover
4844M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004845L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004846S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004847F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004848
Josh Triplett595182b2006-10-04 02:17:21 -07004849READ-COPY UPDATE (RCU)
4850P: Dipankar Sarma
4851M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004852P: Paul E. McKenney
4853M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004854W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004856F: Documentation/RCU/rcu.txt
4857F: Documentation/RCU/rcuref.txt
4858F: include/linux/rcupdate.h
4859F: include/linux/srcu.h
4860F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862REAL TIME CLOCK DRIVER
4863P: Paul Gortmaker
4864M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: Documentation/rtc.txt
4867F: drivers/rtc/
4868F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004870REAL TIME CLOCK (RTC) SUBSYSTEM
4871P: Alessandro Zummo
4872M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004873L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004875F: Documentation/rtc.txt
4876F: drivers/rtc/
4877F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004878
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004880L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004882F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
Ivo van Doorne08976452008-04-12 19:23:55 +02004884RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004885P: Johannes Berg
4886M: johannes@sipsolutions.net
4887L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004888S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004889F Documentation/rfkill.txt
4890F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004891
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004892RISCOM8 DRIVER
4893S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004894F: Documentation/serial/riscom8.txt
4895F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004896
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897ROCKETPORT DRIVER
4898P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899W: http://www.comtrol.com
4900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: Documentation/serial/rocket.txt
4902F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903
4904ROSE NETWORK LAYER
4905P: Ralf Baechle
4906M: ralf@linux-mips.org
4907L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004908W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004910F: include/linux/rose.h
4911F: include/net/rose.h
4912F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
Larry Finger59840482008-11-12 17:13:09 -06004914RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004915P: John W. Linville
4916M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004917L: linux-wireless@vger.kernel.org
4918W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004919T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004921F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004922
Larry Finger59840482008-11-12 17:13:09 -06004923RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004924P: Herton Ronaldo Krzesinski
4925M: herton@mandriva.com.br
4926P: Hin-Tak Leung
4927M: htl10@users.sourceforge.net
4928P: Larry Finger
4929M: Larry.Finger@lwfinger.net
4930L: linux-wireless@vger.kernel.org
4931W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004932T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004934F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004935
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004936S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004937P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004938M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004939L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004941F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004942
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943S390
4944P: Martin Schwidefsky
4945M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004946P: Heiko Carstens
4947M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004949L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004950W: http://www.ibm.com/developerworks/linux/linux390/
4951S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004952F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004953
4954S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004955P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004956M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004957P: Frank Blaschka
4958M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004959M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004960L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004961W: http://www.ibm.com/developerworks/linux/linux390/
4962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004963F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004964
Felix Beckfeed9b62009-03-26 15:24:23 +01004965S390 ZCRYPT DRIVER
4966P: Felix Beck
4967M: felix.beck@de.ibm.com
4968P: Ralph Wuerthner
4969M: ralph.wuerthner@de.ibm.com
4970M: linux390@de.ibm.com
4971L: linux-s390@vger.kernel.org
4972S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004973F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004974
Heiko Carstens5238da42006-02-11 17:56:01 -08004975S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004976P: Christof Schmitt
4977M: christof.schmitt@de.ibm.com
4978P: Martin Peschke
4979M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004980M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004981L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004982W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004984F: Documentation/s390/zfcpdump.txt
4985F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
Ursula Braundd96df22007-09-19 13:09:02 +02004987S390 IUCV NETWORK LAYER
4988P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004989M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004990M: linux390@de.ibm.com
4991L: linux-s390@vger.kernel.org
4992W: http://www.ibm.com/developerworks/linux/linux390/
4993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004994F: drivers/s390/net/*iucv*
4995F: include/net/iucv/
4996F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004997
Ben Dooks4dde7f72008-06-30 22:40:38 +01004998S3C24XX SD/MMC Driver
4999P: Ben Dooks
5000M: ben-linux@fluff.org
5001L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005002S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005003F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005SAA7146 VIDEO4LINUX-2 DRIVER
5006P: Michael Hunold
5007M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005008L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005009T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010W: http://www.mihu.de/linux/saa7146
5011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005012F: drivers/media/common/saa7146*
5013F: drivers/media/video/*7146*
5014F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016SC1200 WDT DRIVER
5017P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07005018M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
5022SCHEDULER
5023P: Ingo Molnar
5024M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005025P: Peter Zijlstra
5026M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005028F: kernel/sched*
5029F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030
5031SCSI CDROM DRIVER
5032P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005033M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034L: linux-scsi@vger.kernel.org
5035W: http://www.kernel.dk
5036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005037F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039SCSI SG DRIVER
5040P: Doug Gilbert
5041M: dgilbert@interlog.com
5042L: linux-scsi@vger.kernel.org
5043W: http://www.torque.net/sg
5044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005045F: drivers/scsi/sg.c
5046F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
5048SCSI SUBSYSTEM
5049P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005050M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005052T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5053T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5054T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005056F: drivers/scsi/
5057F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005060P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061M: Kai.Makisara@kolumbus.fi
5062L: linux-scsi@vger.kernel.org
5063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005064F: Documentation/scsi/st.txt
5065F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
5067SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005068P: Vlad Yasevich
5069M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005070P: Sridhar Samudrala
5071M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005072L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005073W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005075F: Documentation/networking/sctp.txt
5076F: include/linux/sctp.h
5077F: include/net/sctp/
5078F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005081P: Jim Cromie
5082M: jim.cromie@gmail.com
5083S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005084F: Documentation/i2c/busses/scx200_acb
5085F: arch/x86/kernel/scx200_32.c
5086F: drivers/watchdog/scx200_wdt.c
5087F: drivers/i2c/busses/scx200*
5088F: drivers/mtd/maps/scx200_docflash.c
5089F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005090
5091SCx200 GPIO DRIVER
5092P: Jim Cromie
5093M: jim.cromie@gmail.com
5094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005095F: drivers/char/scx200_gpio.c
5096F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005097
5098SCx200 HRT CLOCKSOURCE DRIVER
5099P: Jim Cromie
5100M: jim.cromie@gmail.com
5101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005102F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Sascha Sommer6a369132008-07-15 14:21:29 +02005104SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5105P: Sascha Sommer
5106M: saschasommer@freenet.de
5107L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005109F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005110
Randy Dunlape7839f22008-10-12 16:11:45 -07005111SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005112P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005113M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005114L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005115S: Maintained
5116
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005117SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5118P: Anton Vorontsov
5119M: avorontsov@ru.mvista.com
5120L: linuxppc-dev@ozlabs.org
5121L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005123F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Ben Dooks0d1bb412009-06-14 13:52:37 +01005125SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
5126P: Ben Dooks
5127M: ben-linux@fluff.org
5128L: sdhci-devel@lists.ossman.eu
5129S: Maintained
5130F: drivers/mmc/host/sdhci-s3c.c
5131
James Morris8711cca2008-12-04 03:19:45 +11005132SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005133P: James Morris
5134M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005135L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005136T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005137W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005138S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005139F: security/
James Morris8711cca2008-12-04 03:19:45 +11005140
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141SECURITY CONTACT
5142P: Security Officers
5143M: security@kernel.org
5144S: Supported
5145
5146SELINUX SECURITY MODULE
5147P: Stephen Smalley
5148M: sds@tycho.nsa.gov
5149P: James Morris
5150M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005151P: Eric Paris
5152M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005153L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005154W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005155T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005157F: include/linux/selinux*
5158F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
Jiri Slabycef2cf02007-05-08 00:31:45 -07005160SENSABLE PHANTOM
5161P: Jiri Slaby
5162M: jirislaby@gmail.com
5163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005164F: drivers/misc/phantom.c
5165F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005166
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005167SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168P: Jeff Garzik
5169M: jgarzik@pobox.com
5170L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005171T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005173F: drivers/ata/
5174F: include/linux/ata.h
5175F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005177SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5178P: Sathya Perla
5179M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005180P: Subbu Seetharaman
5181M: subbus@serverengines.com
5182L: netdev@vger.kernel.org
5183W: http://www.serverengines.com
5184S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005185F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005186
Ben Hutchings8ceee662008-04-27 12:55:59 +01005187SFC NETWORK DRIVER
5188P: Steve Hodgson
5189P: Ben Hutchings
5190P: Robert Stonehouse
5191M: linux-net-drivers@solarflare.com
5192S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005193F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005194
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005195SGI GRU DRIVER
5196P: Jack Steiner
5197M: steiner@sgi.com
5198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005199F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005200
5201SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5202P: Pat Gefre
5203M: pfg@sgi.com
5204L: linux-ia64@vger.kernel.org
5205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005206F: Documentation/ia64/serial.txt
5207F: drivers/serial/ioc?_serial.c
5208F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005209
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210SGI VISUAL WORKSTATION 320 AND 540
5211P: Andrey Panin
5212M: pazke@donpac.ru
5213L: linux-visws-devel@lists.sf.net
5214W: http://linux-visws.sf.net
5215S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005216F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
Jack Steiner75312612008-08-15 00:40:42 -07005218SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005219P: Robin Holt
5220M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005222F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005223
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005224SHARP LH SUPPORT (LH7952X & LH7A40X)
5225P: Marc Singer
5226M: elf@buici.com
5227W: http://projects.buici.com/arm
5228L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005230F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5231F: arch/arm/mach-lh7a40x/
5232F: drivers/serial/serial_lh7a40x.c
5233F: drivers/usb/gadget/lh7a40*
5234F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005235
5236SHPC HOTPLUG DRIVER
5237P: Kristen Carlson Accardi
5238M: kristen.c.accardi@intel.com
5239L: linux-pci@vger.kernel.org
5240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005241F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005242
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243SIMTEC EB110ATX (Chalice CATS)
5244P: Ben Dooks
5245P: Vincent Sanders
5246M: support@simtec.co.uk
5247W: http://www.simtec.co.uk/products/EB110ATX/
5248S: Supported
5249
5250SIMTEC EB2410ITX (BAST)
5251P: Ben Dooks
5252P: Vincent Sanders
5253M: support@simtec.co.uk
5254W: http://www.simtec.co.uk/products/EB2410ITX/
5255S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005256F: arch/arm/mach-s3c2410/
5257F: drivers/*/*s3c2410*
5258F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Francois Romieu92aab3c2005-07-30 13:11:18 +02005260SIS 190 ETHERNET DRIVER
5261P: Francois Romieu
5262M: romieu@fr.zoreil.com
5263L: netdev@vger.kernel.org
5264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005265F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267SIS 900/7016 FAST ETHERNET DRIVER
5268P: Daniele Venzano
5269M: venza@brownhat.org
5270W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005271L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005273F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005275SIS 96X I2C/SMBUS DRIVER
5276P: Mark M. Hoffman
5277M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005278L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: Documentation/i2c/busses/i2c-sis96x
5281F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005282
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283SIS FRAMEBUFFER DRIVER
5284P: Thomas Winischhofer
5285M: thomas@winischhofer.net
5286W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: Documentation/fb/sisfb.txt
5289F: drivers/video/sis/
5290F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291
5292SIS USB2VGA DRIVER
5293P: Thomas Winischhofer
5294M: thomas@winischhofer.net
5295W: http://www.winischhofer.at/linuxsisusbvga.shtml
5296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005297F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005299SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5300P: Stephen Hemminger
5301M: shemminger@linux-foundation.org
5302L: netdev@vger.kernel.org
5303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005304F: drivers/net/skge.*
5305F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005306
Christoph Lameter415ad262007-07-26 10:40:56 -07005307SLAB ALLOCATOR
5308P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005309M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005310P: Pekka Enberg
5311M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005312P: Matt Mackall
5313M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005314L: linux-mm@kvack.org
5315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005316F: include/linux/sl?b*.h
5317F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005318
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319SMC91x ETHERNET DRIVER
5320P: Nicolas Pitre
5321M: nico@cam.org
5322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005323F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005325SMSC47B397 HARDWARE MONITOR DRIVER
5326P: Mark M. Hoffman
5327M: mhoffman@lightlink.com
5328L: lm-sensors@lm-sensors.org
5329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005330F: Documentation/hwmon/smsc47b397
5331F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005332
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005333SMSC911x ETHERNET DRIVER
5334P: Steve Glendinning
5335M: steve.glendinning@smsc.com
5336L: netdev@vger.kernel.org
5337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005338F: include/linux/smsc911x.h
5339F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005340
Steve Glendinning2cb37722008-12-11 20:54:30 -08005341SMSC9420 PCI 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: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005347
Ben Nizetteb54f2862008-03-13 22:27:30 +11005348SMX UIO Interface
5349P: Ben Nizette
5350M: bn@niasdigital.com
5351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005352F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005353
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005354SN-IA64 (Itanium) SUB-PLATFORM
5355P: Jes Sorensen
5356M: jes@sgi.com
5357L: linux-altix@sgi.com
5358L: linux-ia64@vger.kernel.org
5359W: http://www.sgi.com/altix
5360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005361F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005362
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005363SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005364P: Guennadi Liakhovetski
5365M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005366L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005367T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: include/media/v4l2*
5370F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005371
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005372SOEKRIS NET48XX LED SUPPORT
5373P: Chris Boot
5374M: bootc@bootc.net
5375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005376F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005377
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005380M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005382S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005383F: drivers/md/
5384F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386SONIC NETWORK DRIVER
5387P: Thomas Bogendoerfer
5388M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005389L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005391F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392
Michael Buesch61e115a2007-09-18 15:12:50 -04005393SONICS SILICON BACKPLANE DRIVER (SSB)
5394P: Michael Buesch
5395M: mb@bu3sch.de
5396L: netdev@vger.kernel.org
5397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005398F: drivers/ssb/
5399F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005400
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005402P: Mattia Dongili
5403M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005404L: linux-acpi@vger.kernel.org
5405W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: Documentation/laptops/sony-laptop.txt
5408F: drivers/char/sonypi.c
5409F: drivers/platform/x86/sony-laptop.c
5410F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411
Alex Dubovbaf85322008-02-09 10:20:54 -08005412SONY MEMORYSTICK CARD SUPPORT
5413P: Alex Dubov
5414M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005415W: http://tifmxx.berlios.de/
5416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005417F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419SOUND
5420P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005421M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005422P: Takashi Iwai
5423M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005424L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005425W: http://www.alsa-project.org/
5426T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5427T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005429F: Documentation/sound/
5430F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005431F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432
Mark Brownbd903bd2008-11-19 19:16:05 +00005433SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005434P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005435M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005436P: Mark Brown
5437M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005438T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005439L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005440W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005442F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005443F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005444
Sam Ravnborg473321f2009-01-04 15:47:49 -08005445SPARC + UltraSPARC (sparc/sparc64)
5446P: David S. Miller
5447M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005449T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5450T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
5454SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5455P: Roger Wolff
5456M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005458F: Documentation/serial/specialix.txt
5459F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005461SPI SUBSYSTEM
5462P: David Brownell
5463M: dbrownell@users.sourceforge.net
5464L: spi-devel-general@lists.sourceforge.net
5465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: Documentation/spi/
5467F: drivers/spi/
5468F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005469
Jim Lewis2752e402006-09-29 02:01:19 -07005470SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005471P: Ishizaki Kou
5472M: kou.ishizaki@toshiba.co.jp
5473P: Jens Osterkamp
5474M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005475L: netdev@vger.kernel.org
5476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005477F: Documentation/networking/spider_net.txt
5478F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005479
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005480SPU FILE SYSTEM
5481P: Jeremy Kerr
5482M: jk@ozlabs.org
5483L: linuxppc-dev@ozlabs.org
5484L: cbe-oss-dev@ozlabs.org
5485W: http://www.ibm.com/developerworks/power/cell/
5486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005487F: Documentation/filesystems/spufs.txt
5488F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005489
Phillip Lougherfc555842009-01-05 08:46:29 +00005490SQUASHFS FILE SYSTEM
5491P: Phillip Lougher
5492M: phillip@lougher.demon.co.uk
5493L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5494W: http://squashfs.org.uk
5495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005496F: Documentation/filesystems/squashfs.txt
5497F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005498
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499SRM (Alpha) environment access
5500P: Jan-Benedict Glaw
5501M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005503F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
Linus Torvalds26e9a392008-10-17 09:50:12 -07005505STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005506P: Greg Kroah-Hartman
5507M: greg@kroah.com
5508P: Chris Wright
5509M: chrisw@sous-sol.org
5510L: stable@kernel.org
5511S: Maintained
5512
Linus Torvalds26e9a392008-10-17 09:50:12 -07005513STAGING SUBSYSTEM
5514P: Greg Kroah-Hartman
5515M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005516T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005517L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005519F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005520
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521STARFIRE/DURALAN NETWORK DRIVER
5522P: Ion Badulescu
5523M: ionut@cs.columbia.edu
5524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005525F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
5527STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5528W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005529S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005530F: drivers/net/wireless/strip.c
5531F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532
5533STRADIS MPEG-2 DECODER DRIVER
5534P: Nathan Laredo
5535M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536W: http://www.stradis.com/
5537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005540SUN3/3X
5541P: Sam Creasey
5542M: sammy@sammy.net
5543W: http://sammy.net/sun3/
5544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: arch/m68k/kernel/*sun3*
5546F: arch/m68k/sun3*/
5547F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005548
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005549SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550P: Paul Mundt
5551M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005552L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005554T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005555S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005556F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005557F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005558F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005560SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005561P: Len Brown
5562M: len.brown@intel.com
5563P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005564M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005565P: Rafael J. Wysocki
5566M: rjw@sisk.pl
5567L: linux-pm@lists.linux-foundation.org
5568S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/power/
5570F: arch/x86/kernel/acpi/
5571F: drivers/base/power/
5572F: kernel/power/
5573F: include/linux/suspend.h
5574F: include/linux/freezer.h
5575F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576
5577SVGA HANDLING
5578P: Martin Mares
5579M: mj@ucw.cz
5580L: linux-video@atrey.karlin.mff.cuni.cz
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: Documentation/svga.txt
5583F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
5585SYSV FILESYSTEM
5586P: Christoph Hellwig
5587M: hch@infradead.org
5588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: Documentation/filesystems/sysv-fs.txt
5590F: fs/sysv/
5591F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Alan Cox4e688522008-04-30 00:52:11 -07005593TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005594P: Balbir Singh
5595M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: Documentation/accounting/taskstats*
5598F: include/linux/taskstats*
5599F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005600
Stephen Hemminger781b4562006-07-10 20:25:29 -07005601TC CLASSIFIER
5602P: Jamal Hadi Salim
5603M: hadi@cyberus.ca
5604L: netdev@vger.kernel.org
5605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005606F: include/linux/pkt_cls.h
5607F: include/net/pkt_cls.h
5608F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005609
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005610TCP LOW PRIORITY MODULE
5611P: Wong Hoi Sing, Edison
5612M: hswong3i@gmail.com
5613P: Hung Hing Lun, Mike
5614M: hlhung3i@gmail.com
5615W: http://tcp-lp-mod.sourceforge.net/
5616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005617F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005618
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005619TEHUTI ETHERNET DRIVER
5620P: Alexander Indenbaum
5621M: baum@tehutinetworks.net
5622P: Andy Gospodarek
5623M: andy@greyhouse.net
5624L: netdev@vger.kernel.org
5625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005626F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005627
Alan Cox4e688522008-04-30 00:52:11 -07005628Telecom Clock Driver for MCPL0010
5629P: Mark Gross
5630M: mark.gross@intel.com
5631S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005633
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005634TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005635P: Chris Zankel
5636M: chris@zankel.net
5637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005638F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005639
5640THINKPAD ACPI EXTRAS DRIVER
5641P: Henrique de Moraes Holschuh
5642M: ibm-acpi@hmh.eng.br
5643L: ibm-acpi-devel@lists.sourceforge.net
5644W: http://ibm-acpi.sourceforge.net
5645W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005646T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005648F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005649
Alex Dubov4020f2d2006-10-04 02:15:37 -07005650TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005651P: Alex Dubov
5652M: oakad@yahoo.com
5653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/misc/tifm*
5655F: drivers/mmc/host/tifm_sd.c
5656F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005657
Per Lidene86eaa32006-01-12 16:45:18 +01005658TIPC NETWORK LAYER
5659P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005660M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005661P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005662M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005663P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005664M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005665L: tipc-discussion@lists.sourceforge.net
5666W: http://tipc.sourceforge.net/
5667W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005668T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005670F: include/linux/tipc*.h
5671F: include/net/tipc/
5672F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674TLAN NETWORK DRIVER
5675P: Samuel Chessman
5676M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005677L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678W: http://sourceforge.net/projects/tlan/
5679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: Documentation/networking/tlan.txt
5681F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005683TOMOYO SECURITY MODULE
5684P: Kentaro Takeda
5685M: takedakn@nttdata.co.jp
5686P: Tetsuo Handa
5687M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005688L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5689L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5690L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5691W: http://tomoyo.sourceforge.jp/
5692T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005694F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005695
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005697S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005698F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
5700TOSHIBA SMM DRIVER
5701P: Jonathan Buzzard
5702M: jonathan@buzzard.org.uk
5703L: tlinux-users@tce.toshiba-dme.co.jp
5704W: http://www.buzzard.org.uk/toshiba/
5705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/char/toshiba.c
5707F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708
Pierre Ossmand719f902009-03-24 21:06:09 +01005709TMIO MMC DRIVER
5710P: Ian Molton
5711M: ian@mnementh.co.uk
5712S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005713F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005714
Hugh Dickins98f32602009-05-21 20:33:58 +01005715TMPFS (SHMEM FILESYSTEM)
5716P: Hugh Dickins
5717M: hugh.dickins@tiscali.co.uk
5718L: linux-mm@kvack.org
5719S: Maintained
5720F: include/linux/shmem_fs.h
5721F: mm/shmem.c
5722
Alan Cox4e688522008-04-30 00:52:11 -07005723TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005724P: Debora Velarde
5725M: debora@linux.vnet.ibm.com
5726P: Rajiv Andrade
5727M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005728W: http://tpmdd.sourceforge.net
5729P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005730M: m.selhorst@sirrix.com
5731W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005732L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005734F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005735
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005737P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005738M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005739T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005741F: drivers/char/tty_*
5742F: drivers/serial/serial_core.c
5743F: include/linux/serial_core.h
5744F: include/linux/serial.h
5745F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746
Alan Cox4e688522008-04-30 00:52:11 -07005747TTY LAYER
5748P: Alan Cox
5749M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005750S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005751T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005752
Grant Grundler740db6d2008-02-17 11:53:49 -07005753TULIP NETWORK DRIVERS
5754P: Grant Grundler
5755M: grundler@parisc-linux.org
5756P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005757M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005758L: netdev@vger.kernel.org
5759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005760F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
5762TUN/TAP driver
5763P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005764M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765L: vtun@office.satix.net
5766W: http://vtun.sourceforge.net/tun
5767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: Documentation/networking/tuntap.txt
5769F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005771TURBOCHANNEL SUBSYSTEM
5772P: Maciej W. Rozycki
5773M: macro@linux-mips.org
5774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005775F: drivers/tc/
5776F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005777
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778U14-34F SCSI DRIVER
5779P: Dario Ballabio
5780M: ballabio_dario@emc.com
5781L: linux-scsi@vger.kernel.org
5782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005783F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005785UBI FILE SYSTEM (UBIFS)
5786P: Artem Bityutskiy
5787M: dedekind@infradead.org
5788P: Adrian Hunter
5789M: ext-adrian.hunter@nokia.com
5790L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005791T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005792W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005794F: Documentation/filesystems/ubifs.txt
5795F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005796
Alan Coxcc2020e2008-05-19 14:21:51 +01005797UCLINUX (AND M68KNOMMU)
5798P: Greg Ungerer
5799M: gerg@uclinux.org
5800W: http://www.uclinux.org/
5801L: uclinux-dev@uclinux.org (subscribers-only)
5802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005803F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005804
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005805UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005806P: Yoshinori Sato
5807M: ysato@users.sourceforge.jp
5808W: http://uclinux-h8.sourceforge.jp/
5809S: Supported
5810
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005812P: Jan Kara
5813M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814W: http://linux-udf.sourceforge.net
5815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005816F: Documentation/filesystems/udf.txt
5817F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
Alan Coxcc2020e2008-05-19 14:21:51 +01005819UFS FILESYSTEM
5820P: Evgeniy Dushistov
5821M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: Documentation/filesystems/ufs.txt
5824F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005825
David Vrabel18332a82008-09-17 16:34:44 +01005826ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5827P: David Vrabel
5828M: david.vrabel@csr.com
5829L: linux-usb@vger.kernel.org
5830S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005831F: drivers/uwb/*
5832F: include/linux/uwb.h
5833F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005834
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835UNIFORM CDROM DRIVER
5836P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005837M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838W: http://www.kernel.dk
5839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: Documentation/cdrom/
5841F: drivers/cdrom/cdrom.c
5842F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005844UNSORTED BLOCK IMAGES (UBI)
5845P: Artem Bityutskiy
5846M: dedekind@infradead.org
5847W: http://www.linux-mtd.infradead.org/
5848L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005849T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005850S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005851F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005852F: include/linux/mtd/ubi.h
5853F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005854
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855USB ACM DRIVER
5856P: Oliver Neukum
5857M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005858L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005860F: Documentation/usb/acm.txt
5861F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862
5863USB BLOCK DRIVER (UB ub)
5864P: Pete Zaitcev
5865M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005866L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005868F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870USB CDC ETHERNET DRIVER
5871P: Greg Kroah-Hartman
5872M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005873L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874S: Maintained
5875W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005876F: drivers/net/usb/cdc_*.c
5877F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005879USB CYPRESS C67X00 DRIVER
5880P: Peter Korsgaard
5881M: jacmet@sunsite.dk
5882L: linux-usb@vger.kernel.org
5883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005884F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005885
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005886USB DAVICOM DM9601 DRIVER
5887P: Peter Korsgaard
5888M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005889L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005890W: http://www.linux-usb.org/usbnet
5891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005892F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005893
Alan Coxcc2020e2008-05-19 14:21:51 +01005894USB DIAMOND RIO500 DRIVER
5895P: Cesar Miquel
5896M: miquel@df.uba.ar
5897L: rio500-users@lists.sourceforge.net
5898W: http://rio500.sourceforge.net
5899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005900F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005901
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902USB EHCI DRIVER
5903P: David Brownell
5904M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005905L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005906S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005907F: Documentation/usb/ehci.txt
5908F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Luca Risolia7ce08c92006-01-11 02:06:59 +00005910USB ET61X[12]51 DRIVER
5911P: Luca Risolia
5912M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005913L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005914L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005915T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005916W: http://www.linux-projects.org
5917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005918F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005919
David Brownell69ae9e32006-11-14 02:03:31 -08005920USB GADGET/PERIPHERAL SUBSYSTEM
5921P: David Brownell
5922M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005923L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005924W: http://www.linux-usb.org/gadget
5925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005926F: drivers/usb/gadget/
5927F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005928
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005929USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005930P: Jiri Kosina
5931M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005932L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005933T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005935F: Documentation/usb/hiddev.txt
5936F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Olav Kongas959eea22005-11-03 17:38:14 +02005938USB ISP116X DRIVER
5939P: Olav Kongas
5940M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005941L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005943F: drivers/usb/host/isp116x*
5944F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005945
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946USB KAWASAKI LSI DRIVER
5947P: Oliver Neukum
5948M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005949L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005951F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952
5953USB MASS STORAGE DRIVER
5954P: Matthew Dharm
5955M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005956L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005957L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958S: Maintained
5959W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005960F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961
5962USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005963P: David Brownell
5964M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005965L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005966S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005967F: Documentation/usb/ohci.txt
5968F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969
Matthias Urlichsba460e42005-07-14 00:33:47 -07005970USB OPTION-CARD DRIVER
5971P: Matthias Urlichs
5972M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005973L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005975F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005976
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977USB OV511 DRIVER
5978P: Mark McClelland
5979M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005980L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981W: http://alpha.dyndns.org/ov511/
5982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984
5985USB PEGASUS DRIVER
5986P: Petko Manolov
5987M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005988L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005989L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990W: http://pegasus2.sourceforge.net/
5991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005992F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005994USB PRINTER DRIVER (usblp)
5995P: Pete Zaitcev
5996M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005997L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005999F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
6001USB RTL8150 DRIVER
6002P: Petko Manolov
6003M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02006004L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006005L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006W: http://pegasus2.sourceforge.net/
6007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006008F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
6010USB SE401 DRIVER
6011P: Jeroen Vreeken
6012M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006013L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014W: http://www.chello.nl/~j.vreeken/se401/
6015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: Documentation/video4linux/se401.txt
6017F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018
Alan Cox4e688522008-04-30 00:52:11 -07006019USB SERIAL BELKIN F5U103 DRIVER
6020P: William Greathouse
6021M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006022L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006025
6026USB SERIAL CYPRESS M8 DRIVER
6027P: Lonnie Mendez
6028M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006029L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006030S: Maintained
6031W: http://geocities.com/i0xox0i
6032W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006033F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035USB SERIAL CYBERJACK DRIVER
6036P: Matthias Bruestle and Harald Welte
6037M: support@reiner-sct.com
6038W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
6042USB SERIAL DIGI ACCELEPORT DRIVER
6043P: Peter Berger and Al Borchers
6044M: pberger@brimson.com
6045M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006046L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006049
6050USB SERIAL DRIVER
6051P: Greg Kroah-Hartman
6052M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006053L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006055F: Documentation/usb/usb-serial.txt
6056F: drivers/usb/serial/generic.c
6057F: drivers/usb/serial/usb-serial.c
6058F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059
Linus Torvalds1da177e2005-04-16 15:20:36 -07006060USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6061P: Gary Brubaker
6062M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006063L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006065F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
6067USB SERIAL KEYSPAN DRIVER
6068P: Greg Kroah-Hartman
6069M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006070L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071W: http://www.kroah.com/linux/
6072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006073F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074
6075USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006076P: Support Department
6077M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006078L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079W: http://www.connecttech.com
6080S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006081F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006083USB SMSC95XX ETHERNET DRIVER
6084P: Steve Glendinning
6085M: steve.glendinning@smsc.com
6086L: netdev@vger.kernel.org
6087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006088F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006089
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006090USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091P: Luca Risolia
6092M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006093L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006094L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006095T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096W: http://www.linux-projects.org
6097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006098F: Documentation/video4linux/sn9c102.txt
6099F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100
6101USB SUBSYSTEM
6102P: Greg Kroah-Hartman
6103M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006104L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006106T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006108F: Documentation/usb/
6109F: drivers/net/usb/
6110F: drivers/usb/
6111F: include/linux/usb.h
6112F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113
6114USB UHCI DRIVER
6115P: Alan Stern
6116M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006117L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006119F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006120
David Brownell69ae9e32006-11-14 02:03:31 -08006121USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122P: David Brownell
6123M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006124L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006125W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: drivers/net/usb/usbnet.c
6128F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006130USB VIDEO CLASS
6131P: Laurent Pinchart
6132M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006133L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006134L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006135T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006136W: http://linux-uvc.berlios.de
6137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006139
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140USB W996[87]CF DRIVER
6141P: Luca Risolia
6142M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006143L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006144L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006145T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146W: http://www.linux-projects.org
6147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006148F: Documentation/video4linux/w9968cf.txt
6149F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006151USB WIRELESS RNDIS DRIVER (rndis_wlan)
6152P: Jussi Kivilinna
6153M: jussi.kivilinna@mbnet.fi
6154L: linux-wireless@vger.kernel.org
6155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006156F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006157
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006158USB XHCI DRIVER
6159P: Sarah Sharp
6160M: sarah.a.sharp@intel.com
6161L: linux-usb@vger.kernel.org
6162S: Supported
6163
Luca Risolia60f78052006-02-06 16:29:35 +00006164USB ZC0301 DRIVER
6165P: Luca Risolia
6166M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006167L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006168L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006169T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006170W: http://www.linux-projects.org
6171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: Documentation/video4linux/zc0301.txt
6173F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006174
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175USB ZD1201 DRIVER
6176P: Jeroen Vreeken
6177M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006178L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179W: http://linux-lc100020.sourceforge.net
6180S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006181F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006183USB ZR364XX DRIVER
6184P: Antoine Jacquet
6185M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006186L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006187L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006188T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006189W: http://royale.zerezo.com/zr364xx/
6190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006191F: Documentation/video4linux/zr364xx.txt
6192F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006193
Randy Dunlape7839f22008-10-12 16:11:45 -07006194USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006196M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197L: user-mode-linux-devel@lists.sourceforge.net
6198L: user-mode-linux-user@lists.sourceforge.net
6199W: http://user-mode-linux.sourceforge.net
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: Documentation/uml/
6202F: arch/um/
6203F: fs/hostfs/
6204F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006205
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006206USERSPACE I/O (UIO)
6207P: Hans J. Koch
6208M: hjk@linutronix.de
6209P: Greg Kroah-Hartman
6210M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006212F: Documentation/DocBook/uio-howto.tmpl
6213F: drivers/uio/
6214F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006215
Karel Zakf899b0a2008-05-23 13:04:21 -07006216UTIL-LINUX-NG PACKAGE
6217P: Karel Zak
6218M: kzak@redhat.com
6219L: util-linux-ng@vger.kernel.org
6220W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006221T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006222S: Maintained
6223
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006224UVESAFB DRIVER
6225P: Michal Januszewski
6226M: spock@gentoo.org
6227L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6228W: http://dev.gentoo.org/~spock/projects/uvesafb/
6229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006230F: Documentation/fb/uvesafb.txt
6231F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006232
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006233VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234P: OGAWA Hirofumi
6235M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006237F: Documentation/filesystems/vfat.txt
6238F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240VIA RHINE NETWORK DRIVER
6241P: Roger Luethi
6242M: rl@hellgate.ch
6243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
Jean Delvare32c0a522005-09-22 21:47:58 +02006246VIAPRO SMBUS DRIVER
6247P: Jean Delvare
6248M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006249L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006251F: Documentation/i2c/busses/i2c-viapro
6252F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006253
Harald Weltef0bf7f62009-06-17 20:22:39 +02006254VIA SD/MMC CARD CONTROLLER DRIVER
6255P: Joseph Chan
6256M: JosephChan@via.com.tw
6257P: Harald Welte
6258M: HaraldWelte@viatech.com
6259S: Maintained
6260F: drivers/mmc/host/via-sdmmc.c
6261
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006262VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6263P: Joseph Chan
6264M: JosephChan@via.com.tw
6265P: Scott Fang
6266M: ScottFang@viatech.com.cn
6267L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006269F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006270
Francois Romieu01f20732007-01-26 00:57:17 -08006271VIA VELOCITY NETWORK DRIVER
6272P: Francois Romieu
6273M: romieu@fr.zoreil.com
6274L: netdev@vger.kernel.org
6275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277
Patrick McHardybe7f8272007-10-23 20:26:36 -07006278VLAN (802.1Q)
6279P: Patrick McHardy
6280M: kaber@trash.net
6281L: netdev@vger.kernel.org
6282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006283F: drivers/net/macvlan.c
6284F: include/linux/if_*vlan.h
6285F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006286
Florian Fainelli55e331c2009-06-16 15:33:53 -07006287VLYNQ BUS
6288P: Florian Fainelli
6289M: florian@openwrt.org
6290L: openwrt-devel@lists.openwrt.org
6291S: Maintained
6292F: drivers/vlynq/vlynq.c
6293F: include/linux/vlynq.h
6294
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006295VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6296P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006297M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006298P: Mark Brown
6299M: broonie@opensource.wolfsonmicro.com
6300W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006301W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006302T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006303S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006304F: drivers/regulator/
6305F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006306
Juerg Haefligerab413192006-09-24 20:54:04 +02006307VT1211 HARDWARE MONITOR DRIVER
6308P: Juerg Haefliger
6309M: juergh@gmail.com
6310L: lm-sensors@lm-sensors.org
6311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: Documentation/hwmon/vt1211
6313F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006314
Roger Lucas1de9e372005-11-26 20:20:05 +01006315VT8231 HARDWARE MONITOR DRIVER
6316P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006317M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006318L: lm-sensors@lm-sensors.org
6319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006321
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322W1 DALLAS'S 1-WIRE BUS
6323P: Evgeniy Polyakov
6324M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006326F: Documentation/w1/
6327F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328
Charles Spirakis13927072006-07-05 18:05:15 +02006329W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006330P: Marc Hulsman
6331M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006332L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006334F: Documentation/hwmon/w83791d
6335F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006336
Rudolf Marek61db0112006-12-12 18:18:30 +01006337W83793 HARDWARE MONITORING DRIVER
6338P: Rudolf Marek
6339M: r.marek@assembler.cz
6340L: lm-sensors@lm-sensors.org
6341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006342F: Documentation/hwmon/w83793
6343F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006344
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345W83L51xD SD/MMC CARD INTERFACE DRIVER
6346P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006347M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006349F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006351WATCHDOG DEVICE DRIVERS
6352P: Wim Van Sebroeck
6353M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006354T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006356F: Documentation/watchdog/
6357F: drivers/watchdog/
6358F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006359
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6361P: Jean Tourrilhes
6362M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006363L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006366F: Documentation/networking/wavelan.txt
6367F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
6369WD7000 SCSI DRIVER
6370P: Miroslav Zagorac
6371M: zaga@fly.cc.fer.hr
6372L: linux-scsi@vger.kernel.org
6373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006374F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006375
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006376WIMAX STACK
6377P: Inaky Perez-Gonzalez
6378M: inaky.perez-gonzalez@intel.com
6379M: linux-wimax@intel.com
6380L: wimax@linuxwimax.org
6381S: Supported
6382W: http://linuxwimax.org
6383
David Vrabel18332a82008-09-17 16:34:44 +01006384WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6385P: David Vrabel
6386M: david.vrabel@csr.com
6387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006388F: include/linux/wlp.h
6389F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006390
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006391WISTRON LAPTOP BUTTON DRIVER
6392P: Miloslav Trmac
6393M: mitr@volny.cz
6394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006395F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006396
Linus Torvalds1da177e2005-04-16 15:20:36 -07006397WL3501 WIRELESS PCMCIA CARD DRIVER
6398P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006399M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006400L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006401W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404
Mark Brownfebf1df2008-04-02 00:51:09 -04006405WM97XX TOUCHSCREEN DRIVERS
6406P: Mark Brown
6407M: broonie@opensource.wolfsonmicro.com
6408P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006409M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006410L: linux-input@vger.kernel.org
6411T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6412W: http://opensource.wolfsonmicro.com/node/7
6413S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006414F: drivers/input/touchscreen/*wm97*
6415F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417X.25 NETWORK LAYER
6418P: Henner Eisen
6419M: eis@baty.hanse.de
6420L: linux-x25@vger.kernel.org
6421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006422F: Documentation/networking/x25*
6423F: include/net/x25*
6424F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006426X86 ARCHITECTURE (32-BIT AND 64-BIT)
6427P: Thomas Gleixner
6428M: tglx@linutronix.de
6429P: Ingo Molnar
6430M: mingo@redhat.com
6431P: H. Peter Anvin
6432M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006433M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006434T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006436F: Documentation/x86/
6437F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006438
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006439XEN HYPERVISOR INTERFACE
6440P: Jeremy Fitzhardinge
6441M: jeremy@xensource.com
6442P: Chris Wright
6443M: chrisw@sous-sol.org
6444L: virtualization@lists.osdl.org
6445L: xen-devel@lists.xensource.com
6446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006447F: arch/x86/xen/
6448F: drivers/*/xen-*front.c
6449F: drivers/xen/
6450F: arch/x86/include/asm/xen/
6451F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006452
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453XFS FILESYSTEM
6454P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006455P: Felix Blyakher
6456M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006458L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006460T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006462F: Documentation/filesystems/xfs.txt
6463F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006465XILINX SYSTEMACE DRIVER
6466P: Grant Likely
6467M: grant.likely@secretlab.ca
6468W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006470F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006471
Peter Korsgaard238b8722006-12-06 20:35:17 -08006472XILINX UARTLITE SERIAL DRIVER
6473P: Peter Korsgaard
6474M: jacmet@sunsite.dk
6475L: linux-serial@vger.kernel.org
6476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006477F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006478
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479YAM DRIVER FOR AX.25
6480P: Jean-Paul Roubelat
6481M: jpr@f6fbb.org
6482L: linux-hams@vger.kernel.org
6483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006484F: drivers/net/hamradio/yam*
6485F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486
Henkaf64a5e2005-10-12 15:02:56 +02006487YEALINK PHONE DRIVER
6488P: Henk Vergonet
6489M: Henk.Vergonet@gmail.com
6490L: usbb2k-api-dev@nongnu.org
6491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006492F: Documentation/input/yealink.txt
6493F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006494
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495Z8530 DRIVER FOR AX.25
6496P: Joerg Reuter
6497M: jreuter@yaina.de
6498W: http://yaina.de/jreuter/
6499W: http://www.qsl.net/dl1bke/
6500L: linux-hams@vger.kernel.org
6501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006502F: Documentation/networking/z8530drv.txt
6503F: drivers/net/hamradio/*scc.c
6504F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006506ZD1211RW WIRELESS DRIVER
6507P: Daniel Drake
6508M: dsd@gentoo.org
6509P: Ulrich Kunitz
6510M: kune@deine-taler.de
6511W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006512L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006513L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006515F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006516
Linus Torvalds1da177e2005-04-16 15:20:36 -07006517ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006519L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006521T: Mercurial http://linuxtv.org/hg/v4l-dvb
6522S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006523F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006525ZS DECSTATION Z85C30 SERIAL DRIVER
6526P: Maciej W. Rozycki
6527M: macro@linux-mips.org
6528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006529F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006530
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531THE REST
6532P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006533M: torvalds@linux-foundation.org
6534L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006535T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006537F: *
6538F: */