blob: acf11052cb7d5a578202cd91486adf7b12d12cfc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Antoine Jacquetb7eee612007-04-27 12:30:59 -030068 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70Maintainers List (try to look for most precise areas first)
71
72Note: For the hard of thinking, this list is meant to remain in alphabetical
73order. If you could add yourselves to it in alphabetical order that would be
74so much easier [Ed]
75
76P: Person
77M: Mail patches to
78L: Mailing list that is relevant to this area
79W: Web-page with status/info
Alan Coxe960bf72009-06-11 14:04:57 +010080T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
Randy Dunlap4501a462008-10-13 09:24:58 -070081S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 Supported: Someone is actually paid to look after this.
84 Maintained: Someone actually looks after it.
85 Odd Fixes: It has a maintainer but they don't have time to do
86 much other than throw the odd patch in. See below..
87 Orphan: No current maintainer [but maybe you could take the
88 role as you write your new code].
89 Obsolete: Old code. Something tagged obsolete generally means
90 it has been replaced by a better system and you
91 should be using that.
92
Joe Perches679655d2009-04-07 20:44:32 -070093F: Files and directories with wildcard patterns.
94 A trailing slash includes all files and subdirectory files.
95 F: drivers/net/ all files in and below drivers/net
96 F: drivers/net/* all files in drivers/net, but not below
97 F: */net/* all files in "any top level directory"/net
98 One pattern per line. Multiple F: lines acceptable.
99X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063C505 NETWORK DRIVER
107P: Philip Blundell
108M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700109L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700111F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Steffen Klasserta6d89912007-08-10 14:05:27 -07001133C59X NETWORK DRIVER
114P: Steffen Klassert
115M: klassert@mathematik.tu-chemnitz.de
116L: netdev@vger.kernel.org
117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: Documentation/networking/vortex.txt
119F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213CR990 NETWORK DRIVER
122P: David Dillow
123M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700124L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700126F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001283W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129P: Adam Radford
130M: linuxraid@amcc.com
131L: linux-scsi@vger.kernel.org
132W: http://www.amcc.com
133S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700134F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001363W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137P: Adam Radford
138M: linuxraid@amcc.com
139L: linux-scsi@vger.kernel.org
140W: http://www.amcc.com
141S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700142F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
14453C700 AND 53C700-66 SCSI DRIVER
145P: James E.J. Bottomley
146M: James.Bottomley@HansenPartnership.com
147L: linux-scsi@vger.kernel.org
148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700149F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
1516PACK NETWORK DRIVER FOR AX.25
152P: Andreas Koensgen
153M: ajk@iehk.rwth-aachen.de
154L: linux-hams@vger.kernel.org
155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700156F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588169 10/100/1000 GIGABIT ETHERNET DRIVER
159P: Francois Romieu
160M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Joe Perchesdc987922009-06-16 17:01:52 +0100166P: Alan Cox
167M: alan@lxorguk.ukuu.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168L: linux-serial@vger.kernel.org
169W: http://serial.sourceforge.net
Alan Cox4b6ae892009-06-11 12:45:08 +0100170S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/serial/8250*
172F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
1748390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
175P: Paul Gortmaker
176M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700177L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700179F: drivers/net/*8390*
180F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001829P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100183P: Eric Van Hensbergen
184M: ericvh@gmail.com
185P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500186M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100187P: Latchesar Ionkov
188M: lucho@ionkov.net
189L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500190W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700191T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700193F: Documentation/filesystems/9p.txt
194F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196A2232 SERIAL BOARD DRIVER
197P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198M: A2232@gmx.net
199L: linux-m68k@lists.linux-m68k.org
200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700201F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700203AACRAID SCSI RAID DRIVER
204P: Adaptec OEM Raid Solutions
205M: aacraid@adaptec.com
206L: linux-scsi@vger.kernel.org
207W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700209F: Documentation/scsi/aacraid.txt
210F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200213P: Hans de Goede
214M: j.w.r.degoede@hhs.nl
215L: lm-sensors@lm-sensors.org
216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700217F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200218
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700219ABIT UGURU 3 HARDWARE MONITOR DRIVER
220P: Alistair John Strachan
221M: alistair@devzero.co.uk
222L: lm-sensors@lm-sensors.org
223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700224F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226ACENIC DRIVER
227P: Jes Sorensen
228M: jes@trained-monkey.org
229L: linux-acenic@sunsite.dk
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233ACER WMI LAPTOP EXTRAS
234P: Carlos Corbacho
235M: carlos@strangeworlds.co.uk
236L: aceracpi@googlegroups.com (subscribers-only)
237W: http://code.google.com/p/aceracpi
238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200242P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500243M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500244L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400245W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700246T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700248F: drivers/acpi/
249F: drivers/pnp/pnpacpi/
250F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500251
252ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400253P: Alexey Starikovskiy
254M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500255L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300256W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500257S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700258F: drivers/acpi/battery.c
259F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500260
261ACPI EC DRIVER
262P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400263M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500264L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300265W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700267F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500268
269ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400270P: Zhang Rui
271M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500272L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300273W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500274S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700275F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700277ACPI PCI HOTPLUG DRIVER
278P: Kristen Carlson Accardi
279M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700280L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500283
284ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400285P: Zhang Rui
286M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500287L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300288W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700290F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700291
Len Brown359acec2007-02-10 01:59:24 -0500292ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400293P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400294M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500295L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300296W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700298F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500299
Carlos Corbachobff431e2008-02-05 02:17:04 +0000300ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200301P: Carlos Corbacho
302M: carlos@strangeworlds.co.uk
303L: linux-acpi@vger.kernel.org
304W: http://www.lesswatts.org/projects/acpi/
305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700306F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000307
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100308AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200309P: Kyle McMartin
310M: kyle@mcmartin.ca
311P: Thibaut Varene
312M: T-Bone@parisc-linux.org
313W: http://wiki.parisc-linux.org/AD1889
314L: linux-parisc@vger.kernel.org
315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700316F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318ADM1025 HARDWARE MONITOR DRIVER
319P: Jean Delvare
320M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200321L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: Documentation/hwmon/adm1025
324F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Corentin Labbecae2caa2007-02-14 21:15:04 +0100326ADM1029 HARDWARE MONITOR DRIVER
327P: Corentin Labbe
328M: corentin.labbe@geomatys.fr
329L: lm-sensors@lm-sensors.org
330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700331F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332
Michael Wucc0b88c2007-08-31 01:15:25 -0400333ADM8211 WIRELESS DRIVER
334P: Michael Wu
335M: flamingice@sourmilk.net
336L: linux-wireless@vger.kernel.org
337W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700338T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700340F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342ADT746X FAN DRIVER
343P: Colin Leroy
344M: colin@colino.net
345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700346F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400348ADVANSYS SCSI DRIVER
349P: Matthew Wilcox
350M: matthew@wil.cx
351L: linux-scsi@vger.kernel.org
352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700353F: Documentation/scsi/advansys.txt
354F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356AEDSP16 DRIVER
357P: Riccardo Facchetti
358M: fizban@tin.it
359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700360F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362AFFS FILE SYSTEM
363P: Roman Zippel
364M: zippel@linux-m68k.org
365S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700366F: Documentation/filesystems/affs.txt
367F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700369AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
370P: David Howells
371M: dhowells@redhat.com
372L: linux-afs@lists.infradead.org
373S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700374F: fs/afs/
375F: include/net/af_rxrpc.h
376F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400379P: David Airlie
380M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700381T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700383F: drivers/char/agp/
384F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386AHA152X SCSI DRIVER
387P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700388M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389L: linux-scsi@vger.kernel.org
390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/scsi/aha152x*
392F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Hannes Reinecke64624d42007-10-19 10:32:29 +0200394AIC7XXX / AIC79XX SCSI DRIVER
395P: Hannes Reinecke
396M: hare@suse.de
397L: linux-scsi@vger.kernel.org
398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700399F: drivers/scsi/aic7xxx/
400F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200401
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700402AIO
403P: Benjamin LaHaise
404M: bcrl@kvack.org
405L: linux-aio@kvack.org
406S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700407F: fs/aio.c
408F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410ALCATEL SPEEDTOUCH USB DRIVER
411P: Duncan Sands
412M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700413L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414W: http://www.linux-usb.org/SpeedTouch/
415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700416F: drivers/usb/atm/speedtch.c
417F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Pierre Ossman272f1332007-05-14 21:25:26 +0200419ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200420P: Manuel Lauss
421M: manuel.lauss@gmail.com
422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700423F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200424
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000425ALI1563 I2C DRIVER
426P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100427M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100428L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700430F: Documentation/i2c/busses/i2c-ali1563
431F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433ALPHA PORT
434P: Richard Henderson
435M: rth@twiddle.net
436S: Odd Fixes for 2.4; Maintained for 2.6.
437P: Ivan Kokshaysky
438M: ink@jurassic.park.msu.ru
439S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700440L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700441F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700443AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
444P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700445M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700446L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700448F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700449
Jordan Crousef90b8112006-01-06 00:12:14 -0800450AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100451P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700452L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800453W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700455F: arch/x86/kernel/geode_32.c
456F: drivers/char/hw_random/geode-rng.c
457F: drivers/crypto/geode*
458F: drivers/video/geode/
459F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800460
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200461AMD IOMMU (AMD-VI)
462P: Joerg Roedel
463M: joerg.roedel@amd.com
464L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700465T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700467F: arch/x86/kernel/amd_iommu*.c
468F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200469
Peter Orubae7f5b302008-07-28 18:44:11 +0200470AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700471P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700472M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700473L: amd64-microcode@amd64.org
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200476
Stelian Pop284f42b2006-12-12 18:18:31 +0100477AMS (Apple Motion Sensor) DRIVER
478P: Stelian Pop
479M: stelian@popies.net
480P: Michael Hanselmann
481M: linux-kernel@hansmi.ch
482S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100484
Tom Tuckerf94b5332006-09-22 15:22:48 -0700485AMSO1100 RNIC DRIVER
486P: Tom Tucker
487M: tom@opengridcomputing.com
488P: Steve Wise
489M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700490L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700492F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700493
Johannes Berg42269062006-07-25 16:15:50 +0200494AOA (Apple Onboard Audio) ALSA DRIVER
495P: Johannes Berg
496M: johannes@sipsolutions.net
497L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700498L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700500F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502APM DRIVER
503P: Stephen Rothwell
504M: sfr@canb.auug.org.au
505L: linux-laptop@vger.kernel.org
506W: http://www.canb.auug.org.au/~sfr/
507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700508F: arch/x86/kernel/apm_32.c
509F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700511APPLE BCM5974 MULTITOUCH DRIVER
512P: Henrik Rydberg
513M: rydberg@euromail.se
514L: linux-input@vger.kernel.org
515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700516F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700517
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700518APPLE SMC DRIVER
519P: Nicolas Boichat
520M: nicolas@boichat.ch
521L: mactel-linux-devel@lists.sourceforge.net
522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700523F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525APPLETALK NETWORK LAYER
526P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300527M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700529F: drivers/net/appletalk/
530F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400532APPLETOUCH TOUCHPAD DRIVER
533P: Johannes Berg
534M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400535L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400536S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700537F: Documentation/input/appletouch.txt
538F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400539
Jaya Kumar1154ea72005-06-21 17:17:04 -0700540ARC FRAMEBUFFER DRIVER
541P: Jaya Kumar
542M: jayalk@intworks.biz
543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700544F: drivers/video/arcfb.c
545F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547ARM MFM AND FLOPPY DRIVERS
548P: Ian Molton
549M: spyro@f2s.com
550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700551F: arch/arm/lib/floppydma.S
552F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Russell Kingd4275352009-04-16 14:05:27 +0100554ARM PORT
555P: Russell King
556M: linux@arm.linux.org.uk
557L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
558W: http://www.arm.linux.org.uk/
559S: Maintained
560F: arch/arm/
561
Russell King2761f5c2007-05-24 06:56:08 +0200562ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200563S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700564F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200565
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800566ARM/ADI ROADRUNNER MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700571F: arch/arm/mach-ixp23xx/
572F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800573
574ARM/ADS SPHERE MACHINE SUPPORT
575P: Lennert Buytenhek
576M: kernel@wantstofly.org
577L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
578S: Maintained
579
Sergey Lapin9c784f92008-08-03 02:29:48 +0100580ARM/AFEB9260 MACHINE SUPPORT
581P: Sergey Lapin
582M: slapin@ossfans.org
583L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
584S: Maintained
585
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800586ARM/AJECO 1ARM MACHINE SUPPORT
587P: Lennert Buytenhek
588M: kernel@wantstofly.org
589L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
590S: Maintained
591
Andrew Victord4a89c72006-12-04 13:56:21 +0100592ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200593P: Andrew Victor
594M: linux@maxim.org.za
595L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
596W: http://maxim.org.za/at91_26.html
597S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100598
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800599ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
600P: Lennert Buytenhek
601M: kernel@wantstofly.org
602L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
603S: Maintained
604
605ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
606P: Lennert Buytenhek
607M: kernel@wantstofly.org
608L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
609S: Maintained
610
Russell Kingd4275352009-04-16 14:05:27 +0100611ARM/CLKDEV SUPPORT
612P: Russell King
613M: linux@arm.linux.org.uk
614L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
615F: arch/arm/common/clkdev.c
616F: arch/arm/include/asm/clkdev.h
617
Mike Rapoportd48134e2008-08-20 09:03:26 +0100618ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100619P: Mike Rapoport
620M: mike@compulab.co.il
621L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
622S: Maintained
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624ARM/CORGI MACHINE SUPPORT
625P: Richard Purdie
626M: rpurdie@rpsys.net
627S: Maintained
628
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200629ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
630P: Paulius Zaleckas
631M: paulius.zaleckas@teltonika.lt
632L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700633T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200634S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300635F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200636
Russell Kingd4275352009-04-16 14:05:27 +0100637ARM/EBSA110 MACHINE SUPPORT
638P: Russell King
639M: linux@arm.linux.org.uk
640L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
641W: http://www.arm.linux.org.uk/
642S: Maintained
643F: arch/arm/mach-ebsa110/
644F: drivers/net/arm/am79c961a.*
645
Russell Kinga9da4f72008-07-12 21:42:04 +0100646ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
647P: Daniel Ribeiro
648M: drwyrm@gmail.com
649P: Stefan Schmidt
650M: stefan@openezx.org
651P: Harald Welte
652M: laforge@openezx.org
653L: openezx-devel@lists.openezx.org (subscribers-only)
654W: http://www.openezx.org/
655S: Maintained
656
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200657ARM/FARADAY FA526 PORT
658P: Paulius Zaleckas
659M: paulius.zaleckas@teltonika.lt
660L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
661S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300662F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200663
Russell Kingd4275352009-04-16 14:05:27 +0100664ARM/FOOTBRIDGE ARCHITECTURE
665P: Russell King
666M: linux@arm.linux.org.uk
667L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
668W: http://www.arm.linux.org.uk/
669S: Maintained
670F: arch/arm/include/asm/hardware/dec21285.h
671F: arch/arm/mach-footbridge/
672
Sascha Hauer86183a52008-07-24 23:50:35 +0200673ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
674P: Sascha Hauer
675M: kernel@pengutronix.de
676L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
677S: Maintained
678
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800679ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
680P: Lennert Buytenhek
681M: kernel@wantstofly.org
682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
683S: Maintained
684
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100685ARM/GUMSTIX MACHINE SUPPORT
686P: Steve Sakoman
687M: sakoman@gmail.com
688L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
689S: Maintained
690
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200691ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
692P: Philipp Zabel
693M: philipp.zabel@gmail.com
694S: Maintained
695F: arch/arm/mach-pxa/hx4700.c
696F: arch/arm/mach-pxa/include/mach/hx4700.h
697
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100698ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200699P: Kristoffer Ericson
700M: kristoffer.ericson@gmail.com
701W: www.jlime.com
702S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100703
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800704ARM/INTEL IOP32X ARM ARCHITECTURE
705P: Lennert Buytenhek
706M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100707P: Dan Williams
708M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100710S: Supported
711
712ARM/INTEL IOP33X ARM ARCHITECTURE
713P: Dan Williams
714M: dan.j.williams@intel.com
715L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
716S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717
718ARM/INTEL IOP13XX ARM ARCHITECTURE
719P: Lennert Buytenhek
720M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100721P: Dan Williams
722M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800723L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100724S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800725
726ARM/INTEL IQ81342EX MACHINE SUPPORT
727P: Lennert Buytenhek
728M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100729P: Dan Williams
730M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800731L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100732S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800733
734ARM/INTEL IXP2000 ARM ARCHITECTURE
735P: Lennert Buytenhek
736M: kernel@wantstofly.org
737L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
738S: Maintained
739
740ARM/INTEL IXDP2850 MACHINE SUPPORT
741P: Lennert Buytenhek
742M: kernel@wantstofly.org
743L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
744S: Maintained
745
746ARM/INTEL IXP23XX ARM ARCHITECTURE
747P: Lennert Buytenhek
748M: kernel@wantstofly.org
749L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
750S: Maintained
751
752ARM/INTEL XSC3 (MANZANO) ARM CORE
753P: Lennert Buytenhek
754M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100755P: Dan Williams
756M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800757L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100758S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800759
760ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
761P: Lennert Buytenhek
762M: kernel@wantstofly.org
763L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
764S: Maintained
765
766ARM/LOGICPD PXA270 MACHINE SUPPORT
767P: Lennert Buytenhek
768M: kernel@wantstofly.org
769L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
770S: Maintained
771
Philipp Zabel3b8861712008-07-09 21:27:15 +0100772ARM/MAGICIAN MACHINE SUPPORT
773P: Philipp Zabel
774M: philipp.zabel@gmail.com
775S: Maintained
776
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100777ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
778P: Michael Petchkovsky
779M: mkpetch@internode.on.net
780S: Maintained
781
Dirk Opfer8459c152005-11-06 14:27:52 +0000782ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800783P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100784M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000785P: Dirk Opfer
786M: dirk@opfer-online.de
787S: Maintained
788
Marek Vasut54088bf2009-03-24 00:29:29 +0100789ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100790P: Marek Vasut
791M: marek.vasut@gmail.com
792W: http://hackndev.com
793S: Maintained
794
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100795ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700796P: Sergey Lapin
797M: slapin@ossfans.org
798W: http://hackndev.com
799S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801ARM/PLEB SUPPORT
802P: Peter Chubb
803M: pleb@gelato.unsw.edu.au
804W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
805S: Maintained
806
807ARM/PT DIGITAL BOARD PORT
808P: Stefan Eletzhofer
809M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700810L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811W: http://www.arm.linux.org.uk/
812S: Maintained
813
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800814ARM/RADISYS ENP2611 MACHINE SUPPORT
815P: Lennert Buytenhek
816M: kernel@wantstofly.org
817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
818S: Maintained
819
Russell Kingd4275352009-04-16 14:05:27 +0100820ARM/RISCPC ARCHITECTURE
821P: Russell King
822M: linux@arm.linux.org.uk
823L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
824W: http://www.arm.linux.org.uk/
825S: Maintained
826F: arch/arm/common/time-acorn.c
827F: arch/arm/include/asm/hardware/entry-macro-iomd.S
828F: arch/arm/include/asm/hardware/ioc.h
829F: arch/arm/include/asm/hardware/iomd.h
830F: arch/arm/include/asm/hardware/memc.h
831F: arch/arm/mach-rpc/
832F: drivers/net/arm/ether*
833F: drivers/scsi/arm/
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835ARM/SHARK MACHINE SUPPORT
836P: Alexander Schulz
837M: alex@shark-linux.de
838W: http://www.shark-linux.de/shark.html
839S: Maintained
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841ARM/S3C2410 ARM ARCHITECTURE
842P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800843M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700844L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845W: http://www.fluff.org/ben/linux/
846S: Maintained
847
848ARM/S3C2440 ARM ARCHITECTURE
849P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800850M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700851L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852W: http://www.fluff.org/ben/linux/
853S: Maintained
854
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800855ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
856P: Lennert Buytenhek
857M: kernel@wantstofly.org
858L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
859S: Maintained
860
861ARM/THECUS N2100 MACHINE SUPPORT
862P: Lennert Buytenhek
863M: kernel@wantstofly.org
864L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
865S: Maintained
866
wanzongshun98ad6e32009-02-13 06:04:32 +0100867ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700868P: Wan ZongShun
869M: mcuos.com@gmail.com
870L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
871W: http://www.mcuos.com
872S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100873
Russell Kingd4275352009-04-16 14:05:27 +0100874ARM/VFP SUPPORT
875P: Russell King
876M: linux@arm.linux.org.uk
877L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
878W: http://www.arm.linux.org.uk/
879S: Maintained
880F: arch/arm/vfp/
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882ARPD SUPPORT
883P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700884L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700886F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500889P: Corentin Chary
890M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891P: Karol Kozimor
892M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893L: acpi4asus-user@lists.sourceforge.net
894W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500895W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700897F: arch/x86/kernel/acpi/boot.c
898F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400900ASUS ASB100 HARDWARE MONITOR DRIVER
901P: Mark M. Hoffman
902M: mhoffman@lightlink.com
903L: lm-sensors@lm-sensors.org
904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700905F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400906
Corentin Chary85091b72007-01-26 14:04:30 +0100907ASUS LAPTOP EXTRAS DRIVER
908P: Corentin Chary
909M: corentincj@iksaif.net
910L: acpi4asus-user@lists.sourceforge.net
911W: http://sourceforge.net/projects/acpi4asus
912W: http://xf.iksaif.net/acpi4asus
913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700914F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100915
Andrew Morton953a6472008-11-06 12:53:28 -0800916ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700917P: Dan Williams
918M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100919P: Maciej Sosnowski
920M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700921W: http://sourceforge.net/projects/xscaleiop
922S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700923F: Documentation/crypto/async-tx-api.txt
924F: crypto/async_tx/
925F: drivers/dma/
926F: include/linux/dmaengine.h
927F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700928
Randy Dunlape7839f22008-10-12 16:11:45 -0700929ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930P: Ed L. Cashin
931M: ecashin@coraid.com
932W: http://www.coraid.com/support/linux
933S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700934F: Documentation/aoe/
935F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200937ATHEROS ATH5K WIRELESS DRIVER
938P: Jiri Slaby
939M: jirislaby@gmail.com
940P: Nick Kossifidis
941M: mickflemm@gmail.com
942P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700943M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400944P: Bob Copeland
945M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200946L: linux-wireless@vger.kernel.org
947L: ath5k-devel@lists.ath5k.org
948S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700949F: drivers/net/wireless/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200950
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700951ATHEROS ATH9K WIRELESS DRIVER
952P: Luis R. Rodriguez
953M: lrodriguez@atheros.com
954P: Jouni Malinen
955M: jmalinen@atheros.com
Luis R. Rodriguez295936c2009-03-27 17:21:05 -0400956P: Sujith Manoharan
957M: Sujith.Manoharan@atheros.com
958P: Vasanthakumar Thiagarajan
959M: vasanth@atheros.com
960P: Senthil Balasubramanian
961M: senthilkumar@atheros.com
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700962L: linux-wireless@vger.kernel.org
963L: ath9k-devel@lists.ath9k.org
964S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700965F: drivers/net/wireless/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700966
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100967ATHEROS AR9170 WIRELESS DRIVER
968P: Christian Lamparter
969M: chunkeey@web.de
970L: linux-wireless@vger.kernel.org
971W: http://wireless.kernel.org/en/users/Drivers/ar9170
972S: Maintained
973F: drivers/net/wireless/ar9170/
974
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000975ATI_REMOTE2 DRIVER
976P: Ville Syrjala
977M: syrjala@sci.fi
978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700979F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000980
Chris Snook7ae115b2008-09-09 03:26:57 -0400981ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600982P: Jay Cliburn
983M: jcliburn@gmail.com
984P: Chris Snook
985M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400986P: Jie Yang
987M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600988L: atl1-devel@lists.sourceforge.net
989W: http://sourceforge.net/projects/atl1
990W: http://atl1.sourceforge.net
991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700992F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994ATM
995P: Chas Williams
996M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700997L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800998L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999W: http://linux-atm.sourceforge.net
1000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001001F: drivers/atm/
1002F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Pierre Ossman272f1332007-05-14 21:25:26 +02001004ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001005P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001006M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001007L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1008W: http://www.atmel.com/products/AT91/
1009W: http://www.at91.com/
1010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001011F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001012
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001013ATMEL AT91 / AT32 SERIAL DRIVER
1014P: Haavard Skinnemoen
1015M: hskinnemoen@atmel.com
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001017F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001018
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001019ATMEL LCDFB DRIVER
1020P: Nicolas Ferre
1021M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001022L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001024F: drivers/video/atmel_lcdfb.c
1025F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001026
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001027ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001028P: Haavard Skinnemoen
1029M: hskinnemoen@atmel.com
1030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001031F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001032
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001033ATMEL SPI DRIVER
1034P: Haavard Skinnemoen
1035M: hskinnemoen@atmel.com
1036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001037F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001038
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001039ATMEL USBA UDC DRIVER
1040P: Haavard Skinnemoen
1041M: hskinnemoen@atmel.com
1042L: kernel@avr32linux.org
1043W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1044S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001045F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047ATMEL WIRELESS DRIVER
1048P: Simon Kelley
1049M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001050L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051W: http://www.thekelleys.org.uk/atmel
1052W: http://atmelwlandriver.sourceforge.net/
1053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001054F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Chris Wrighta92b7b82005-07-07 18:12:23 -07001056AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001057P: Al Viro
1058M: viro@zeniv.linux.org.uk
1059P: Eric Paris
1060M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001061L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001062W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001063T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001065F: include/linux/audit.h
1066F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001067
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001068AUXILIARY DISPLAY DRIVERS
1069P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001070M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001071W: http://miguelojeda.es/auxdisplay.htm
1072W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001074F: drivers/auxdisplay/
1075F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001076
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001077AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001078P: Haavard Skinnemoen
1079M: hskinnemoen@atmel.com
1080W: http://www.atmel.com/products/AVR32/
1081W: http://avr32linux.org/
1082W: http://avrfreaks.net/
1083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001084F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001085
1086AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001087P: Haavard Skinnemoen
1088M: hskinnemoen@atmel.com
1089S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001090F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092AX.25 NETWORK LAYER
1093P: Ralf Baechle
1094M: ralf@linux-mips.org
1095L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001096W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001098F: include/linux/ax25.h
1099F: include/net/ax25.h
1100F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001102B43 WIRELESS DRIVER
1103P: Michael Buesch
1104M: mb@bu3sch.de
1105P: Stefano Brivio
1106M: stefano.brivio@polimi.it
1107L: linux-wireless@vger.kernel.org
1108W: http://linuxwireless.org/en/users/Drivers/b43
1109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001110F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001111
1112B43LEGACY WIRELESS DRIVER
1113P: Larry Finger
1114M: Larry.Finger@lwfinger.net
1115P: Stefano Brivio
1116M: stefano.brivio@polimi.it
1117L: linux-wireless@vger.kernel.org
1118W: http://linuxwireless.org/en/users/Drivers/b43
1119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001120F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001121
Richard Purdie300abeb2007-02-07 22:21:07 +00001122BACKLIGHT CLASS/SUBSYSTEM
1123P: Richard Purdie
1124M: rpurdie@rpsys.net
1125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001126F: drivers/video/backlight/
1127F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001128
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001129BAYCOM/HDLCDRV DRIVERS FOR AX.25
1130P: Thomas Sailer
1131M: t.sailer@alumni.ethz.ch
1132L: linux-hams@vger.kernel.org
1133W: http://www.baycom.org/~tom/ham/ham.html
1134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001135F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001136
1137BEFS FILE SYSTEM
1138P: Sergey S. Kostyliov
1139M: rathamahata@php4.ru
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001141F: Documentation/filesystems/befs.txt
1142F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001143
1144BFS FILE SYSTEM
1145P: Tigran A. Aivazian
1146M: tigran@aivazian.fsnet.co.uk
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001148F: Documentation/filesystems/bfs.txt
1149F: fs/bfs/
1150F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001151
Bryan Wu1394f032007-05-06 14:50:22 -07001152BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001153P: Mike Frysinger
1154M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001155L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001156W: http://blackfin.uclinux.org
1157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001158F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001159
Bryan Wue190d6b2007-07-17 14:43:44 +08001160BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001161P: Michael Hennerich
1162M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001163L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001164W: http://blackfin.uclinux.org
1165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001166F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001167
Mike Frysinger566da5b2007-06-11 15:31:30 +08001168BLACKFIN RTC DRIVER
1169P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001170M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001171L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001172W: http://blackfin.uclinux.org
1173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001174F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001175
Bryan Wu1394f032007-05-06 14:50:22 -07001176BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001177P: Sonic Zhang
1178M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001179L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001180W: http://blackfin.uclinux.org
1181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001182F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001183
Bryan Wu1e6d3202007-07-15 02:50:02 +08001184BLACKFIN WATCHDOG DRIVER
1185P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001186M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001187L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001188W: http://blackfin.uclinux.org
1189S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001190F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001191
Bryan Wud24ecfc2007-05-01 23:26:32 +02001192BLACKFIN I2C TWI DRIVER
1193P: Sonic Zhang
1194M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001195L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001196W: http://blackfin.uclinux.org/
1197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001198F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200BLOCK LAYER
1201P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001202M: axboe@kernel.dk
Joe Perches54e58812009-04-07 21:08:10 -07001203T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001205F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Joern Engel2b54aae2008-02-06 01:38:02 -08001207BLOCK2MTD DRIVER
1208P: Joern Engel
1209M: joern@lazybastard.org
1210L: linux-mtd@lists.infradead.org
1211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001212F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001213
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001214BLUETOOTH DRIVERS
1215P: Marcel Holtmann
1216M: marcel@holtmann.org
1217L: linux-bluetooth@vger.kernel.org
1218W: http://www.bluez.org/
1219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001220F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222BLUETOOTH SUBSYSTEM
1223P: Marcel Holtmann
1224M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001225L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001226W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001227T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001229F: net/bluetooth/
1230F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001233P: Jay Vosburgh
1234M: fubar@us.ibm.com
1235L: bonding-devel@lists.sourceforge.net
1236W: http://sourceforge.net/projects/bonding/
1237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001238F: drivers/net/bonding/
1239F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Gary Zambrano39105892006-06-22 17:26:20 -07001241BROADCOM B44 10/100 ETHERNET DRIVER
1242P: Gary Zambrano
1243M: zambrano@broadcom.com
1244L: netdev@vger.kernel.org
1245S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001246F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001247
Michael Chan948c51e2006-06-04 02:51:39 -07001248BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1249P: Michael Chan
1250M: mchan@broadcom.com
1251L: netdev@vger.kernel.org
1252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001253F: drivers/net/bnx2.*
1254F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001255
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001256BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001257P: Eilon Greenstein
1258M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001259L: netdev@vger.kernel.org
1260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001261F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001262
Michael Chan948c51e2006-06-04 02:51:39 -07001263BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001264P: Matt Carlson
1265M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001266P: Michael Chan
1267M: mchan@broadcom.com
1268L: netdev@vger.kernel.org
1269S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001270F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001271
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001272BSG (block layer generic sg v4 driver)
1273P: FUJITA Tomonori
1274M: fujita.tomonori@lab.ntt.co.jp
1275L: linux-scsi@vger.kernel.org
1276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001277F: block/bsg.c
1278F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001279
Michael Bueschff1d5c22008-07-25 01:46:10 -07001280BT8XXGPIO DRIVER
1281P: Michael Buesch
1282M: mb@bu3sch.de
1283W: http://bu3sch.de/btgpio.php
1284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001285F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001286
Joe Percheseb1eb042009-01-21 10:49:16 -05001287BTRFS FILE SYSTEM
1288P: Chris Mason
1289M: chris.mason@oracle.com
1290L: linux-btrfs@vger.kernel.org
1291W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001292T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001294F: Documentation/filesystems/btrfs.txt
1295F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001298P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001299M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001300L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001301W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001302T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001304F: Documentation/video4linux/bttv/
1305F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
David Howellsa5432f52009-04-20 15:46:45 +01001307CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1308P: David Howells
1309M: dhowells@redhat.com
1310L: linux-cachefs@redhat.com
1311S: Supported
1312F: Documentation/filesystems/caching/cachefiles.txt
1313F: fs/cachefiles/
1314
Jonathan Corbet77d51402007-03-22 19:44:17 -03001315CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001316P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001317M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001318L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001319T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001320S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001321F: Documentation/video4linux/cafe_ccic
1322F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001323
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001324CALGARY x86-64 IOMMU
1325P: Muli Ben-Yehuda
1326M: muli@il.ibm.com
1327P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001328M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001329L: discuss@x86-64.org
1330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001331F: arch/x86/kernel/pci-calgary_64.c
1332F: arch/x86/kernel/tce_64.c
1333F: arch/x86/include/asm/calgary.h
1334F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001335
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001336CAN NETWORK LAYER
1337P: Urs Thuermann
1338M: urs.thuermann@volkswagen.de
1339P: Oliver Hartkopp
1340M: oliver.hartkopp@volkswagen.de
1341L: socketcan-core@lists.berlios.de (subscribers-only)
1342W: http://developer.berlios.de/projects/socketcan/
1343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001344F: drivers/net/can/
1345F: include/linux/can/
1346F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001347
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001348CAN NETWORK DRIVERS
1349P: Wolfgang Grandegger
1350M: wg@grandegger.com
1351L: socketcan-core@lists.berlios.de (subscribers-only)
1352W: http://developer.berlios.de/projects/socketcan/
1353S: Maintained
1354
Arnd Bergmannb8154542008-05-16 11:10:59 +02001355CELL BROADBAND ENGINE ARCHITECTURE
1356P: Arnd Bergmann
1357M: arnd@arndb.de
1358L: linuxppc-dev@ozlabs.org
1359L: cbe-oss-dev@ozlabs.org
1360W: http://www.ibm.com/developerworks/power/cell/
1361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001363F: arch/powerpc/include/asm/spu*.h
1364F: arch/powerpc/oprofile/*cell*
1365F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001366
David Vrabel18332a82008-09-17 16:34:44 +01001367CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1368P: David Vrabel
1369M: david.vrabel@csr.com
1370L: linux-usb@vger.kernel.org
1371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001372F: Documentation/usb/WUSB-Design-overview.txt
1373F: Documentation/usb/wusb-cbaf
1374F: drivers/usb/wusbcore/
1375F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001376
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001377CFAG12864B LCD DRIVER
1378P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001379M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001380W: http://miguelojeda.es/auxdisplay.htm
1381W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001383F: drivers/auxdisplay/cfag12864b.c
1384F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001385
1386CFAG12864BFB LCD FRAMEBUFFER DRIVER
1387P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001388M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07001389W: http://miguelojeda.es/auxdisplay.htm
1390W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001392F: drivers/auxdisplay/cfag12864bfb.c
1393F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001394
Johannes Berg704232c2007-04-23 12:20:05 -07001395CFG80211 and NL80211
1396P: Johannes Berg
1397M: johannes@sipsolutions.net
1398L: linux-wireless@vger.kernel.org
1399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001400F: include/linux/nl80211.h
1401F: include/net/cfg80211.h
1402F: net/wireless/*
1403X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001404
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001405CHECKPATCH
1406P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001407M: apw@canonical.com
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001408S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001409F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001410
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001411CISCO 10G ETHERNET DRIVER
1412P: Scott Feldman
1413M: scofeldm@cisco.com
1414P: Joe Eykholt
1415M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001417F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001418
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001419CIRRUS LOGIC EP93XX ETHERNET DRIVER
1420P: Lennert Buytenhek
1421M: kernel@wantstofly.org
1422L: netdev@vger.kernel.org
1423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001424F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001425
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001426CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1427P: Lennert Buytenhek
1428M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001429L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001431F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001432
Timur Tabid9e9d822008-04-24 08:45:26 +10001433CIRRUS LOGIC CS4270 SOUND DRIVER
1434P: Timur Tabi
1435M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07001436L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001438F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1441P: Cirrus Logic Corporation (kernel 2.2 driver)
1442M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1443P: Nils Faerber (port to kernel 2.4)
1444M: Nils Faerber <nils@kernelconcepts.de>
1445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001446F: Documentation/input/cs461x.txt
1447F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Russell Kingd4275352009-04-16 14:05:27 +01001449CLK API
1450P: Russell King
1451M: linux@arm.linux.org.uk
1452F: include/linux/clk.h
1453
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001454CISCO FCOE HBA DRIVER
1455P: Abhijeet Joglekar
1456M: abjoglek@cisco.com
1457P: Joe Eykholt
1458M: jeykholt@cisco.com
1459L: linux-scsi@vger.kernel.org
1460S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001461F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463CODA FILE SYSTEM
1464P: Jan Harkes
1465M: jaharkes@cs.cmu.edu
1466M: coda@cs.cmu.edu
1467L: codalist@coda.cs.cmu.edu
1468W: http://www.coda.cs.cmu.edu/
1469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001470F: Documentation/filesystems/coda.txt
1471F: fs/coda/
1472F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001474COMMON INTERNET FILE SYSTEM (CIFS)
1475P: Steve French
1476M: sfrench@samba.org
1477L: linux-cifs-client@lists.samba.org
1478L: samba-technical@lists.samba.org
1479W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001480T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001482F: Documentation/filesystems/cifs.txt
1483F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485COMPACTPCI HOTPLUG CORE
1486P: Scott Murray
1487M: scottm@somanetworks.com
1488M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001489L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001491F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1494P: Scott Murray
1495M: scottm@somanetworks.com
1496M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001497L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001499F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501COMPACTPCI HOTPLUG GENERIC DRIVER
1502P: Scott Murray
1503M: scottm@somanetworks.com
1504M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001505L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001507F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001509COMPAL LAPTOP SUPPORT
1510P: Cezary Jackiewicz
1511M: cezary.jackiewicz@gmail.com
1512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001513F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515COMPUTONE INTELLIPORT MULTIPORT CARD
1516P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001517M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: Documentation/serial/computone.txt
1521F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Simon Arlott949be0f2007-03-06 02:47:46 -08001523CONEXANT ACCESSRUNNER USB DRIVER
1524P: Simon Arlott
1525M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001526L: accessrunner-general@lists.sourceforge.net
1527W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001529F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001530
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001531CONFIGFS
1532P: Joel Becker
1533M: joel.becker@oracle.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001535F: fs/configfs/
1536F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001537
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001538CONTROL GROUPS (CGROUPS)
1539P: Paul Menage
1540M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001541P: Li Zefan
1542M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001543L: containers@lists.linux-foundation.org
1544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001545F: include/linux/cgroup*
1546F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001547F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001548
Rudolf Marekbebe4672007-05-08 17:22:02 +02001549CORETEMP HARDWARE MONITORING DRIVER
1550P: Rudolf Marek
1551M: r.marek@assembler.cz
1552L: lm-sensors@lm-sensors.org
1553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001554F: Documentation/hwmon/coretemp
1555F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557COSA/SRP SYNC SERIAL DRIVER
1558P: Jan "Yenya" Kasprzak
1559M: kas@fi.muni.cz
1560W: http://www.fi.muni.cz/~kas/cosa/
1561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001562F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Florian Fainelli4371ee32009-06-01 02:43:17 -07001564CPMAC ETHERNET DRIVER
1565P: Florian Fainelli
1566M: florian@openwrt.org
1567L: netdev@vger.kernel.org
1568S: Maintained
1569F: drivers/net/cpmac.c
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571CPU FREQUENCY DRIVERS
1572P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001573M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001574L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001576T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001578F: arch/x86/kernel/cpu/cpufreq/
1579F: drivers/cpufreq/
1580F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582CPUID/MSR DRIVER
1583P: H. Peter Anvin
1584M: hpa@zytor.com
1585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001586F: arch/x86/kernel/cpuid.c
1587F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Paul Jacksoned90fb42005-09-27 21:45:37 -07001589CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001590P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001591M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001592W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001593W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001595F: Documentation/cgroups/cpusets.txt
1596F: include/linux/cpuset.h
1597F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001600W: http://sourceforge.net/projects/cramfs/
1601S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001602F: Documentation/filesystems/cramfs.txt
1603F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605CRIS PORT
1606P: Mikael Starvik
1607M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001608P: Jesper Nilsson
1609M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610L: dev-etrax@axis.com
1611W: http://developer.axis.com
1612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001613F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615CRYPTO API
1616P: Herbert Xu
1617M: herbert@gondor.apana.org.au
1618P: David S. Miller
1619M: davem@davemloft.net
1620L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001621T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001623F: Documentation/crypto/
1624F: arch/*/crypto/
1625F: crypto/
1626F: drivers/crypto/
1627F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Neil Horman5b07bd52009-02-05 16:03:04 +11001629CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1630P: Neil Horman
1631M: nhorman@tuxdriver.com
1632L: linux-crypto@vger.kernel.org
1633S: Maintained
1634
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001635CS5535 Audio ALSA driver
1636P: Jaya Kumar
1637M: jayakumar.alsa@gmail.com
1638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001639F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001640
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001641CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001642P: Hans Verkuil
1643M: hverkuil@xs4all.nl
1644P: Andy Walls
1645M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001646L: ivtv-devel@ivtvdriver.org
1647L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001648L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001649T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001650W: http://linuxtv.org
1651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001652F: Documentation/video4linux/cx18.txt
1653F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001654
Steve Wisee5ec3782008-05-20 14:06:33 -07001655CXGB3 ETHERNET DRIVER (CXGB3)
1656P: Divy Le Ray
1657M: divy@chelsio.com
1658L: netdev@vger.kernel.org
1659W: http://www.chelsio.com
1660S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001661F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001662
1663CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1664P: Steve Wise
1665M: swise@chelsio.com
1666L: general@lists.openfabrics.org
1667W: http://www.openfabrics.org
1668S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001669F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671CYBERPRO FB DRIVER
1672P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001673M: linux@arm.linux.org.uk
1674L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675W: http://www.arm.linux.org.uk/
1676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001677F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679CYCLADES 2X SYNC CARD DRIVER
1680P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001681M: acme@ghostprotocols.net
1682W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001688S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001689F: drivers/char/cyclades.c
1690F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001694S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001695F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697DAMA SLAVE for AX.25
1698P: Joerg Reuter
1699M: jreuter@yaina.de
1700W: http://yaina.de/jreuter/
1701W: http://www.qsl.net/dl1bke/
1702L: linux-hams@vger.kernel.org
1703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001704F: net/ax25/af_ax25.c
1705F: net/ax25/ax25_dev.c
1706F: net/ax25/ax25_ds_*
1707F: net/ax25/ax25_in.c
1708F: net/ax25/ax25_out.c
1709F: net/ax25/ax25_timer.c
1710F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001712DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1713P: Tobias Ringstrom
1714M: tori@unhappy.mine.nu
1715L: netdev@vger.kernel.org
1716S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001717F: Documentation/networking/dmfe.txt
1718F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001719
1720DC390/AM53C974 SCSI driver
1721P: Kurt Garloff
1722M: garloff@suse.de
1723W: http://www.garloff.de/kurt/linux/dc390/
1724P: Guennadi Liakhovetski
1725M: g.liakhovetski@gmx.de
1726S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001727F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729DC395x SCSI driver
1730P: Oliver Neukum
1731M: oliver@neukum.name
1732P: Ali Akcaagac
1733M: aliakc@web.de
1734P: Jamie Lenehan
1735M: lenehan@twibble.org
1736W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001737L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738L: http://lists.twibble.org/mailman/listinfo/dc395x/
1739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001740F: Documentation/scsi/dc395x.txt
1741F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001743DCCP PROTOCOL
1744P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001745M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001746L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001747W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001749F: include/linux/dccp.h
1750F: include/linux/tfrc.h
1751F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001754P: Christine Caulfield
1755M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756W: http://linux-decnet.sourceforge.net
1757L: linux-decnet-user@lists.sourceforge.net
1758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001759F: Documentation/networking/decnet.txt
1760F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762DEFXX FDDI NETWORK DRIVER
1763P: Maciej W. Rozycki
1764M: macro@linux-mips.org
1765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001766F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001768DELL LAPTOP DRIVER
1769P: Matthew Garrett
1770M: mjg59@srcf.ucam.org
1771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001772F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774DELL LAPTOP SMM DRIVER
1775P: Massimo Dal Zotto
1776M: dz@debian.org
1777W: http://www.debian.org/~dz/i8k/
1778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001779F: drivers/char/i8k.c
1780F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Doug Warzecha90563ec2005-09-06 15:17:15 -07001782DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1783P: Doug Warzecha
1784M: Douglas_Warzecha@dell.com
1785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: Documentation/dcdbas.txt
1787F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001788
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001789DELL WMI EXTRAS DRIVER
1790P: Matthew Garrett
1791M: mjg59@srcf.ucam.org
1792S: Maintained
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794DEVICE NUMBER REGISTRY
1795P: Torben Mathiasen
1796M: device@lanana.org
1797W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798S: Maintained
1799
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001800DEVICE-MAPPER (LVM)
1801P: Alasdair Kergon
1802L: dm-devel@redhat.com
1803W: http://sources.redhat.com/dm
1804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001805F: Documentation/device-mapper/
1806F: drivers/md/dm*
1807F: include/linux/device-mapper.h
1808F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810DIGI INTL. EPCA DRIVER
1811P: Digi International, Inc
1812M: Eng.Linux@digi.com
1813L: Eng.Linux@digi.com
1814W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001815S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001816F: Documentation/serial/digiepca.txt
1817F: drivers/char/epca*
1818F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Randy Dunlape7839f22008-10-12 16:11:45 -07001820DIRECTORY NOTIFICATION (DNOTIFY)
Eric Paris3c5119c2009-05-21 17:01:33 -04001821P: Eric Paris
1822M: eparis@parisplace.org
Eric Paris3c5119c2009-05-21 17:01:33 -04001823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001824F: Documentation/filesystems/dnotify.txt
1825F: fs/notify/dnotify/
1826F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828DISK GEOMETRY AND PARTITION HANDLING
1829P: Andries Brouwer
1830M: aeb@cwi.nl
1831W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1832W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1833W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1834S: Maintained
1835
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001836DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837P: Jan Kara
1838M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001840F: Documentation/filesystems/quota.txt
1841F: fs/quota/
1842F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Randy Dunlape7839f22008-10-12 16:11:45 -07001844DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001845P: Christine Caulfield
1846M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001847P: David Teigland
1848M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001849L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001850W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001851T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001853F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001854
Dan Williamsb3e5f262007-08-07 10:26:35 -07001855DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001856P: Maciej Sosnowski
1857M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001858P: Dan Williams
1859M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001860S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001861F: drivers/dma/
1862F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001863
Juerg Haefligerb8250372007-06-09 10:11:16 -04001864DME1737 HARDWARE MONITOR DRIVER
1865P: Juerg Haefliger
1866M: juergh@gmail.com
1867L: lm-sensors@lm-sensors.org
1868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001869F: Documentation/hwmon/dme1737
1870F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001871
Martin Waitzba483d52005-06-17 13:20:59 -07001872DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001873P: Randy Dunlap
1874M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001875S: Maintained
1876
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001877DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001878P: Shaohua Li
1879M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001880L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001881S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001882F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001883
Joe Perches7d2c86b2009-04-07 20:59:01 -07001884DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001885P: Randy Dunlap
1886M: rdunlap@xenotime.net
1887L: linux-doc@vger.kernel.org
1888S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001889F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891DOUBLETALK DRIVER
1892P: James R. Van Zandt
1893M: jrv@vanzandt.mv.com
1894L: blinux-list@redhat.com
1895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: drivers/char/dtlk.c
1897F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001899DPT_I2O SCSI RAID DRIVER
1900P: Adaptec OEM Raid Solutions
1901M: aacraid@adaptec.com
1902L: linux-scsi@vger.kernel.org
1903W: http://www.adaptec.com/
1904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001905F: drivers/scsi/dpt*
1906F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908DRIVER CORE, KOBJECTS, AND SYSFS
1909P: Greg Kroah-Hartman
1910M: gregkh@suse.de
Jody McIntyre6fb04252005-11-18 09:31:06 -08001911T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001913F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001914F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001915F: fs/sysfs/
1916F: include/linux/kobj*
1917F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919DRM DRIVERS
1920P: David Airlie
1921M: airlied@linux.ie
1922L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001923T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001925F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001928P: Francois Romieu
1929M: romieu@fr.zoreil.com
1930L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001934DZ DECSTATION DZ11 SERIAL DRIVER
1935P: Maciej W. Rozycki
1936M: macro@linux-mips.org
1937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001938F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940EATA-DMA SCSI DRIVER
1941P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001942M: mike@i-Connect.Net
1943L: linux-eata@i-connect.net
1944L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001946F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948EATA ISA/EISA/PCI SCSI DRIVER
1949P: Dario Ballabio
1950M: ballabio_dario@emc.com
1951L: linux-scsi@vger.kernel.org
1952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955EATA-PIO SCSI DRIVER
1956P: Michael Neuffer
1957M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001958L: linux-eata@i-connect.net
1959L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963EBTABLES
1964P: Bart De Schuymer
1965M: bart.de.schuymer@pandora.be
1966L: ebtables-user@lists.sourceforge.net
1967L: ebtables-devel@lists.sourceforge.net
1968W: http://ebtables.sourceforge.net/
1969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001970F: include/linux/netfilter_bridge/ebt_*.h
1971F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Michael Halcrow237fead2006-10-04 02:16:22 -07001973ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001974P: Tyler Hicks
1975M: tyhicks@linux.vnet.ibm.com
Joe Perches866a36b2009-06-16 15:34:05 -07001976P: Dustin Kirkland
1977M: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001978L: ecryptfs-devel@lists.launchpad.net
1979W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001980S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001981F: Documentation/filesystems/ecryptfs.txt
1982F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001983
Alan Coxda9bb1d2006-01-18 17:44:13 -08001984EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001985P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001986M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001987L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001988W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001990F: Documentation/edac.txt
1991F: drivers/edac/edac_*
1992F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001993
Borislav Petkovc476c232009-05-20 20:31:58 +02001994EDAC-AMD64
1995P: Doug Thompson
1996M: dougthompson@xmission.com
1997P: Borislav Petkov
1998M: borislav.petkov@amd.com
1999L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2000W: bluesmoke.sourceforge.net
2001S: Supported
2002F: drivers/edac/amd64_edac*
2003
Dave Peterson0e438e32006-03-26 01:38:55 -08002004EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002005P: Mark Gross
2006M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002007P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002008M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002009L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002010W: bluesmoke.sourceforge.net
2011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002012F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002013
2014EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002015P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002016M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002017L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002018W: bluesmoke.sourceforge.net
2019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002020F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002021
Douglas Thompson6bc78402007-07-19 01:50:12 -07002022EDAC-I82443BXGX
2023P: Tim Small
2024M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002025L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002026W: bluesmoke.sourceforge.net
2027S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002028F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002029
2030EDAC-I3000
2031P: Jason Uhlenkott
2032M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002033L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002034W: bluesmoke.sourceforge.net
2035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002036F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002037
2038EDAC-I5000
2039P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002040M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002041L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002042W: bluesmoke.sourceforge.net
2043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002044F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002045
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002046EDAC-I5400
2047P: Mauro Carvalho Chehab
2048M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002049L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002050W: bluesmoke.sourceforge.net
2051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002052F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002053
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002054EDAC-I82975X
2055P: Ranganathan Desikan
2056P: Arvind R.
2057M: rdesikan@jetzbroadband.com
2058M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002059L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002060W: bluesmoke.sourceforge.net
2061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002062F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002063
2064EDAC-PASEMI
2065P: Egor Martovetsky
2066M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002067L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002068W: bluesmoke.sourceforge.net
2069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002070F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002071
Dave Peterson0e438e32006-03-26 01:38:55 -08002072EDAC-R82600
2073P: Tim Small
2074M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002075L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002076W: bluesmoke.sourceforge.net
2077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002078F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002079
Eric Coopere59f8792008-03-13 12:55:46 +01002080EEEPC LAPTOP EXTRAS DRIVER
2081P: Corentin Chary
2082M: corentincj@iksaif.net
2083L: acpi4asus-user@lists.sourceforge.net
2084W: http://sourceforge.net/projects/acpi4asus
2085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002087
Josh Triplett0bee8d22006-07-30 03:03:58 -07002088EFS FILESYSTEM
2089W: http://aeschi.ch.eu.org/efs/
2090S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002091F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002092
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002093EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002094P: Hoang-Nam Nguyen
2095M: hnguyen@de.ibm.com
2096P: Christoph Raisch
2097M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002098L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002100F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002101
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002102EMBEDDED LINUX
2103P: Paul Gortmaker
2104M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002105P: Matt Mackall
2106M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002107P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002108M: dwmw2@infradead.org
2109L: linux-embedded@vger.kernel.org
2110S: Maintained
2111
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002112EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002113P: James Smart
2114M: james.smart@emulex.com
2115L: linux-scsi@vger.kernel.org
2116W: http://sourceforge.net/projects/lpfcxxxx
2117S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002118F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002119
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002120ENE CB710 FLASH CARD READER DRIVER
2121P: Michał Mirosław
2122M: mirq-linux@rere.qmqm.pl
2123L: linux-kernel@vger.kernel.org
2124S: Maintained
2125F: drivers/misc/cb710/
2126F: drivers/mmc/host/cb710-mmc.*
2127F: include/linux/cb710.h
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129EPSON 1355 FRAMEBUFFER DRIVER
2130P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002131M: ch@murgatroid.com
2132P: Christopher Hoover
2133M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002135F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002137EPSON S1D13XXX FRAMEBUFFER DRIVER
2138P: Kristoffer Ericson
2139M: kristoffer.ericson@gmail.com
2140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: drivers/video/s1d13xxxfb.c
2142F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144ETHEREXPRESS-16 NETWORK DRIVER
2145P: Philip Blundell
2146M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002147L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002149F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151ETHERNET BRIDGE
2152P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002153M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002154L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002155W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002157F: include/linux/netfilter_bridge/
2158F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160ETHERTEAM 16I DRIVER
2161P: Mika Kuoppala
2162M: miku@iki.fi
2163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002167L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002169F: Documentation/filesystems/ext2.txt
2170F: fs/ext2/
2171F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002174P: Stephen Tweedie
2175M: sct@redhat.com
2176P: Andrew Morton
2177M: akpm@linux-foundation.org
2178P: Andreas Dilger
2179M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002180L: linux-ext4@vger.kernel.org
2181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002182F: Documentation/filesystems/ext3.txt
2183F: fs/ext3/
2184F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002185
2186EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002187P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002188M: tytso@mit.edu
2189P: Andreas Dilger
2190M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002191L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002192W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002194F: Documentation/filesystems/ext4.txt
2195F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Jean Delvaree53004e2006-01-09 23:26:14 +01002197F71805F HARDWARE MONITORING DRIVER
2198P: Jean Delvare
2199M: khali@linux-fr.org
2200L: lm-sensors@lm-sensors.org
2201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002202F: Documentation/hwmon/f71805f
2203F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205FARSYNC SYNCHRONOUS DRIVER
2206P: Kevin Curtis
2207M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208W: http://www.farsite.co.uk/
2209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002210F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Akinobu Mitac5408b82007-04-23 14:41:20 -07002212FAULT INJECTION SUPPORT
2213P: Akinobu Mita
2214M: akinobu.mita@gmail.com
2215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002216F: Documentation/fault-injection/
2217F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002218
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002219FILE LOCKING (flock() and fcntl()/lockf())
2220P: Matthew Wilcox
2221M: matthew@wil.cx
2222L: linux-fsdevel@vger.kernel.org
2223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002224F: include/linux/fcntl.h
2225F: include/linux/fs.h
2226F: fs/fcntl.c
2227F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002228
2229FILESYSTEMS (VFS and infrastructure)
2230P: Alexander Viro
2231M: viro@zeniv.linux.org.uk
2232L: linux-fsdevel@vger.kernel.org
2233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002234F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002235
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002236FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2237P: Riku Voipio
2238M: riku.vipio@iki.fi
2239L: lm-sensors@lm-sensors.org
2240S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002241F: drivers/hwmon/f75375s.c
2242F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002243
Joe Perches7d2c86b2009-04-07 20:59:01 -07002244FIREWIRE SUBSYSTEM
2245P: Kristian Hoegsberg
2246M: krh@redhat.com
2247P: Stefan Richter
2248M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002249L: linux1394-devel@lists.sourceforge.net
2250W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002251T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002253F: drivers/firewire/
2254F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002255
2256FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002257S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002258F: Documentation/firmware_class/
2259F: drivers/base/firmware*.c
2260F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002261
2262FPU EMULATOR
2263P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002264M: billm@melbpc.org.au
2265W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002267F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002268
2269FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2270P: Mike McLagan
2271M: mike.mclagan@linux.org
2272L: netdev@vger.kernel.org
2273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002274F: drivers/net/wan/dlci.c
2275F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002276
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277FRAMEBUFFER LAYER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002278L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002280S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002281F: Documentation/fb/
2282F: drivers/video/fb*
2283F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Zhang Wei173acc72008-03-01 07:42:48 -07002285FREESCALE DMA DRIVER
Zhang Wei76b0c7882008-05-13 14:44:59 -07002286P: Li Yang
2287M: leoli@freescale.com
2288P: Zhang Wei
2289M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002290L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002293
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002294FREESCALE I2C CPM DRIVER
2295P: Jochen Friedrich
2296M: jochen@scram.de
2297L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002298L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002300F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002301
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002302FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2303P: Sascha Hauer
2304M: kernel@pengutronix.de
2305L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2306L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002308F: arch/arm/plat-mxc/include/mach/imxfb.h
2309F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002310
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002311FREESCALE SOC FS_ENET DRIVER
2312P: Pantelis Antoniou
2313M: pantelis.antoniou@gmail.com
2314P: Vitaly Bordug
2315M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002316L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002317L: netdev@vger.kernel.org
2318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002319F: drivers/net/fs_enet/
2320F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002321
Timur Tabid9e9d822008-04-24 08:45:26 +10002322FREESCALE QUICC ENGINE LIBRARY
2323P: Timur Tabi
2324M: timur@freescale.com
2325L: linuxppc-dev@ozlabs.org
2326S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002327F: arch/powerpc/sysdev/qe_lib/
2328F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002329
Li Yanga7205b32007-04-23 10:38:18 -07002330FREESCALE HIGHSPEED USB DEVICE DRIVER
2331P: Li Yang
2332M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002333L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002334L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002336F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002337
Li Yangbeaf53b2007-05-25 13:54:02 +08002338FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2339P: Li Yang
2340M: leoli@freescale.com
2341L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002342L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002344F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002345
Timur Tabid9e9d822008-04-24 08:45:26 +10002346FREESCALE QUICC ENGINE UCC UART DRIVER
2347P: Timur Tabi
2348M: timur@freescale.com
2349L: linuxppc-dev@ozlabs.org
2350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002351F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002352
2353FREESCALE SOC SOUND DRIVERS
2354P: Timur Tabi
2355M: timur@freescale.com
Joe Perches93711662009-06-16 15:34:07 -07002356L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002357L: linuxppc-dev@ozlabs.org
2358S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002359F: sound/soc/fsl/fsl*
2360F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362FREEVXFS FILESYSTEM
2363P: Christoph Hellwig
2364M: hch@infradead.org
2365W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002367F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
Pavel Machek71038f52009-01-15 13:51:02 -08002369FREEZER
2370P: Pavel Machek
Pavel Machekb6e731d2009-05-30 00:58:41 +02002371M: pavel@ucw.cz
Pavel Machek71038f52009-01-15 13:51:02 -08002372P: Rafael J. Wysocki
2373M: rjw@sisk.pl
2374L: linux-pm@lists.linux-foundation.org
2375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002376F: Documentation/power/freezing-of-tasks.txt
2377F: include/linux/freezer.h
2378F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002379
David Howellsa5432f52009-04-20 15:46:45 +01002380FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2381P: David Howells
2382M: dhowells@redhat.com
2383L: linux-cachefs@redhat.com
2384S: Supported
2385F: Documentation/filesystems/caching/
2386F: fs/fscache/
2387F: include/linux/fscache*.h
2388
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002389FTRACE
2390P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002391M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002393F: Documentation/ftrace.txt
2394F: arch/*/*/*/ftrace.h
2395F: arch/*/kernel/ftrace.c
2396F: include/*/ftrace.h
2397F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002398
David Howells5ab7ffe2007-04-10 15:10:45 +01002399FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400P: David Howells
2401M: dhowells@redhat.com
2402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002403F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Jonathan Woithe20b93732008-06-11 10:14:56 +09302405FUJITSU LAPTOP EXTRAS
2406P: Jonathan Woithe
2407M: jwoithe@physics.adelaide.edu.au
2408L: linux-acpi@vger.kernel.org
2409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002410F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302411
Miklos Szeredi04578f12005-09-09 13:10:22 -07002412FUSE: FILESYSTEM IN USERSPACE
2413P: Miklos Szeredi
2414M: miklos@szeredi.hu
2415L: fuse-devel@lists.sourceforge.net
2416W: http://fuse.sourceforge.net/
2417S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002418F: fs/fuse/
2419F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002420
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2422P: Rik Faith
2423M: faith@cs.unc.edu
2424L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002425S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002426F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428GDT SCSI DISK ARRAY CONTROLLER DRIVER
2429P: Achim Leubner
2430M: achim_leubner@adaptec.com
2431L: linux-scsi@vger.kernel.org
2432W: http://www.icp-vortex.com/
2433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002434F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002436GENERIC GPIO I2C DRIVER
2437P: Haavard Skinnemoen
2438M: hskinnemoen@atmel.com
2439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002440F: drivers/i2c/busses/i2c-gpio.c
2441F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002442
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002443GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444P: Krzysztof Halasa
2445M: khc@pm.waw.pl
2446W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002448F: drivers/net/wan/c101.c
2449F: drivers/net/wan/hd6457*
2450F: drivers/net/wan/hdlc*
2451F: drivers/net/wan/n2.c
2452F: drivers/net/wan/pc300too.c
2453F: drivers/net/wan/pci200syn.c
2454F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002456GENERIC INCLUDE/ASM HEADER FILES
2457P: Arnd Bergmann
2458M: arnd@arndb.de
2459L: linux-arch@vger.kernel.org
2460T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2461S: Maintained
2462F: include/asm-generic
2463
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002464GFS2 FILE SYSTEM
2465P: Steven Whitehouse
2466M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002467L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002468W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002469T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2470T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002472F: Documentation/filesystems/gfs2*.txt
2473F: fs/gfs2/
2474F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002475
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002476GIGASET ISDN DRIVERS
2477P: Hansjoerg Lipp
2478M: hjlipp@web.de
2479P: Tilman Schmidt
2480M: tilman@imap.cc
2481L: gigaset307x-common@lists.sourceforge.net
2482W: http://gigaset307x.sourceforge.net/
2483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002484F: Documentation/isdn/README.gigaset
2485F: drivers/isdn/gigaset/
2486F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002487
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002488HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002489P: Frank Seidel
2490M: frank@f-seidel.de
2491L: lm-sensors@lm-sensors.org
2492W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002495
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002496HYPERVISOR VIRTUAL CONSOLE DRIVER
2497L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002498S: Odd Fixes
2499F: drivers/char/hvc_*
2500
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002501GSPCA FINEPIX SUBDRIVER
2502P: Frank Zago
2503M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002504L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002505T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002507F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002508
2509GSPCA M5602 SUBDRIVER
2510P: Erik Andren
2511M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002512L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002513T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002515F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002516
2517GSPCA PAC207 SONIXB SUBDRIVER
2518P: Hans de Goede
2519M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002520L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002521T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002523F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002524
2525GSPCA T613 SUBDRIVER
2526P: Leandro Costantino
2527M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002528L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002529T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002532
2533GSPCA USB WEBCAM DRIVER
2534P: Jean-Francois Moine
2535M: moinejf@free.fr
2536W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002537L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002538T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002540F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002541
Jean Delvare5b543962005-08-15 19:51:02 +02002542HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002543L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002544W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002545S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002546F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002547
Michael Buesch844dd052006-06-26 00:24:59 -07002548HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002549S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002550F: Documentation/hw_random.txt
2551F: drivers/char/hw_random/
2552F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554HARMONY SOUND DRIVER
2555P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002556M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002557L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002559F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561HAYES ESP SERIAL DRIVER
2562P: Andrew J. Robinson
2563M: arobinso@nyx.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564W: http://www.nyx.net/~arobinso
2565S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002566F: Documentation/serial/hayes-esp.txt
2567F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002568
2569HEWLETT-PACKARD SMART2 RAID DRIVER
2570P: Chirag Kantharia
2571M: chirag.kantharia@hp.com
2572L: iss_storagedev@hp.com
2573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: Documentation/blockdev/cpqarray.txt
2575F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002576
2577HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2578P: Mike Miller
2579M: mike.miller@hp.com
2580L: iss_storagedev@hp.com
2581S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002582F: Documentation/blockdev/cciss.txt
2583F: drivers/block/cciss*
2584F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586HFS FILESYSTEM
2587P: Roman Zippel
2588M: zippel@linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002590F: Documentation/filesystems/hfs.txt
2591F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593HGA FRAMEBUFFER DRIVER
2594P: Ferenc Bakonyi
2595M: fero@drama.obuda.kando.hu
2596L: linux-nvidia@lists.surfsouth.com
2597W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002599F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002601HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002602P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002603M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002604P: Rafael J. Wysocki
2605M: rjw@sisk.pl
2606L: linux-pm@lists.linux-foundation.org
2607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002608F: arch/x86/power/
2609F: drivers/base/power/
2610F: kernel/power/
2611F: include/linux/suspend.h
2612F: include/linux/freezer.h
2613F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002614F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002615
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002616HID CORE LAYER
2617P: Jiri Kosina
2618M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002619L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002620T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002622F: drivers/hid/
2623F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002624
Ingo Molnar38bed542007-02-22 09:09:34 +01002625HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2626P: Thomas Gleixner
2627M: tglx@linutronix.de
Ingo Molnar38bed542007-02-22 09:09:34 +01002628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: Documentation/timers/
2630F: kernel/hrtimer.c
2631F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633HIGH-SPEED SCC DRIVER FOR AX.25
2634P: Klaus Kudielka
2635M: klaus.kudielka@ieee.org
2636L: linux-hams@vger.kernel.org
2637W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002639F: drivers/net/hamradio/dmascc.c
2640F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002642HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2643P: HighPoint Linux Team
2644M: linux@highpoint-tech.com
2645W: http://www.highpoint-tech.com
2646S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002647F: Documentation/scsi/hptiop.txt
2648F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650HIPPI
2651P: Jes Sorensen
2652M: jes@trained-monkey.org
2653L: linux-hippi@sunsite.dk
2654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002655F: include/linux/hippidevice.h
2656F: include/linux/if_hippi.h
2657F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Jouni Malinenff1d2762005-05-12 22:54:16 -04002659HOST AP DRIVER
2660P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002661M: j@w1.fi
2662L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002663L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002664W: http://hostap.epitest.fi/
2665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002666F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002667
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002668HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2669P: Carlos Corbacho
2670M: carlos@strangeworlds.co.uk
2671S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002672F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002673
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002674HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2675P: Jaroslav Kysela
2676M: perex@perex.cz
2677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002678F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002679
Joe Perches7d2c86b2009-04-07 20:59:01 -07002680HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002681P: Clemens Ladisch
2682M: clemens@ladisch.de
2683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: Documentation/timers/hpet.txt
2685F: drivers/char/hpet.c
2686F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002687
2688HPET: i386
2689P: Venkatesh Pallipadi (Venki)
2690M: venkatesh.pallipadi@intel.com
2691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002692F: arch/x86/kernel/hpet.c
2693F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002694
2695HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002696P: Vojtech Pavlik
2697M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002698S: Maintained
2699
Joe Perches7d2c86b2009-04-07 20:59:01 -07002700HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002701P: Bob Picco
2702M: bob.picco@hp.com
2703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002704F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706HPFS FILESYSTEM
2707P: Mikulas Patocka
2708M: mikulas@artax.karlin.mff.cuni.cz
2709W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002711F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Joe Perches7d2c86b2009-04-07 20:59:01 -07002713HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002714P: Jan Dumon
2715M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002716W: http://www.pharscape.org
2717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002718F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002719
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002720HTCPEN TOUCHSCREEN DRIVER
2721P: Pau Oliva Fora
2722M: pof@eslack.org
2723L: linux-input@vger.kernel.org
2724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002725F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002726
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727HUGETLB FILESYSTEM
2728P: William Irwin
2729M: wli@holomorphy.com
2730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002731F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002733I2C/SMBUS STUB DRIVER
2734P: Mark M. Hoffman
2735M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002736L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002737S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002738F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002739
Jean Delvare5b543962005-08-15 19:51:02 +02002740I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002741P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002743P: Ben Dooks (embedded platforms)
2744M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002745L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002746W: http://i2c.wiki.kernel.org/
2747T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002749F: Documentation/i2c/
2750F: drivers/i2c/
2751F: include/linux/i2c.h
2752F: include/linux/i2c-dev.h
2753F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Till Harbaume8c76ee2007-05-01 23:26:35 +02002755I2C-TINY-USB DRIVER
2756P: Till Harbaum
2757M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002758L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002759W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002761F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002762
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002764P: H. Peter Anvin
2765M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002767F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770P: H. Peter Anvin
2771M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002772T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773S: Maintained
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775IA64 (Itanium) PLATFORM
2776P: Tony Luck
2777M: tony.luck@intel.com
2778L: linux-ia64@vger.kernel.org
2779W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002780T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784IBM MCA SCSI SUBSYSTEM DRIVER
2785P: Michael Lang
2786M: langa2@kph.uni-mainz.de
2787W: http://www.uni-mainz.de/~langm000/linux.html
2788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002789F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791IBM Power Linux RAID adapter
2792P: Brian King
2793M: brking@us.ibm.com
2794S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002795F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797IBM ServeRAID RAID DRIVER
2798P: Jack Hammer
2799P: Dave Jeffery
2800M: ipslinux@adaptec.com
2801W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002802S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002803F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002805IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002807M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002809T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: Documentation/ide/
2812F: drivers/ide/
2813F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002815IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002816P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002817M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002818L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: Documentation/cdrom/ide-cd
2821F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Andy Henroid27471fd2008-10-09 11:45:22 -07002823IDLE-I7300
2824P: Andy Henroid
2825M: andrew.d.henroid@intel.com
2826L: linux-pm@lists.linux-foundation.org
2827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002828F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002829
Joe Perches7d2c86b2009-04-07 20:59:01 -07002830IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002832M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002833P: Stefan Richter
2834M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835L: linux1394-devel@lists.sourceforge.net
2836W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002837T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Joe Perches7d2c86b2009-04-07 20:59:01 -07002841IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842P: Dan Dennedy
2843M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002844P: Stefan Richter
2845M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002848F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002849
Sergey Lapin02cf2282009-06-08 12:18:50 +00002850IEEE 802.15.4 SUBSYSTEM
2851P: Dmitry Eremin-Solenikov
2852M: dbaryshkov@gmail.com
2853P: Sergey Lapin
2854M: slapin@ossfans.org
2855L: linux-zigbee-devel@lists.sourceforge.net
2856W: http://apps.sourceforge.net/trac/linux-zigbee
2857T: git git://git.kernel.org/pub/scm/linux/kernel/git/lumag/lowpan.git
2858S: Maintained
2859F: net/ieee802154/
2860F: drivers/ieee801254/
2861
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002862INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2863P: Mimi Zohar
2864M: zohar@us.ibm.com
2865S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002866F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002869L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002870S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002871F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873INFINIBAND SUBSYSTEM
2874P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002875M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002877M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002879M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002880L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002882T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002884F: Documentation/infiniband/
2885F: drivers/infiniband/
2886F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
Robert Lovec9f04f52005-07-15 12:21:07 -04002888INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01002889P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002890M: john@johnmccutchan.com
Cal Peake18b36c712006-12-12 20:18:16 +01002891P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002892M: rlove@rlove.org
Eric Paris63c882a2009-05-21 17:02:01 -04002893P: Eric Paris
2894M: eparis@parisplace.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002896F: Documentation/filesystems/inotify.txt
2897F: fs/notify/inotify/
2898F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002899
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002900INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2901P: Dmitry Torokhov
2902M: dmitry.torokhov@gmail.com
2903M: dtor@mail.ru
2904L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002905T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002907F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002908
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002909INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002910P: Sylvain Meyer
2911M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002912L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: Documentation/fb/intelfb.txt
2915F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002918P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002919M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002920L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302924INTEL MENLOW THERMAL DRIVER
2925P: Sujith Thomas
2926M: sujith.thomas@intel.com
2927L: linux-acpi@vger.kernel.org
2928W: http://www.lesswatts.org/projects/acpi/
2929S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002930F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932INTEL IA32 MICROCODE UPDATE SUPPORT
2933P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002934M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002936F: arch/x86/kernel/microcode_core.c
2937F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002939INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002940P: Maciej Sosnowski
2941M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002943F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002944
David Woodhouse6c8909b2008-10-18 16:12:17 +01002945INTEL IOMMU (VT-d)
2946P: David Woodhouse
2947M: dwmw2@infradead.org
2948L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002949T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002951F: drivers/pci/intel-iommu.c
2952F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002953
Dan Williamsb3e5f262007-08-07 10:26:35 -07002954INTEL IOP-ADMA DMA DRIVER
2955P: Dan Williams
2956M: dan.j.williams@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07002957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002958F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002959
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002960INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2961P: Krzysztof Halasa
2962M: khc@pm.waw.pl
2963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002964F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2965F: arch/arm/mach-ixp4xx/include/mach/npe.h
2966F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2967F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2968F: drivers/net/arm/ixp4xx_eth.c
2969F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002970
Michael Buesch844dd052006-06-26 00:24:59 -07002971INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2972P: Deepak Saxena
2973M: dsaxena@plexity.net
2974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002975F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002976
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002977INTEL IXP2000 ETHERNET DRIVER
2978P: Lennert Buytenhek
2979M: kernel@wantstofly.org
2980L: netdev@vger.kernel.org
2981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002982F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002983
Auke Kokd94e6fe2008-03-03 14:37:47 -08002984INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002985P: Jeff Kirsher
2986M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002987P: Jesse Brandeburg
2988M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002989P: Bruce Allan
2990M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002991P: PJ Waskiewicz
2992M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002993P: John Ronciak
2994M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002995L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002996W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002998F: drivers/net/e100.c
2999F: drivers/net/e1000/
3000F: drivers/net/e1000e/
3001F: drivers/net/igb/
3002F: drivers/net/ixgb/
3003F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
James Ketrenos826d2ab2005-11-07 18:56:59 -06003005INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003006P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003007M: yi.zhu@intel.com
3008P: James Ketrenos
3009M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003010P: Reinette Chatre
3011M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003012L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003013L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003014W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003015W: http://ipw2100.sourceforge.net
3016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003017F: Documentation/networking/README.ipw2100
3018F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003019
3020INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003021P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003022M: yi.zhu@intel.com
3023P: James Ketrenos
3024M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003025P: Reinette Chatre
3026M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003027L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003028L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003029W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003030W: http://ipw2200.sourceforge.net
3031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003032F: Documentation/networking/README.ipw2200
3033F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003034
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003035INTEL WIRELESS WIMAX CONNECTION 2400
3036P: Inaky Perez-Gonzalez
3037M: inaky.perez-gonzalez@intel.com
3038M: linux-wimax@intel.com
3039L: wimax@linuxwimax.org
3040S: Supported
3041W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003042F: Documentation/wimax/README.i2400m
3043F: drivers/net/wimax/i2400m/
3044F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003045
Zhu Yib481de92007-09-25 17:54:57 -07003046INTEL WIRELESS WIFI LINK (iwlwifi)
3047P: Zhu Yi
3048M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003049P: Reinette Chatre
3050M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003051L: linux-wireless@vger.kernel.org
3052L: ipw3945-devel@lists.sourceforge.net
3053W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003054T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003055S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003056F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003057
Ralf Baechlecb109a02007-08-30 23:56:30 -07003058IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059P: Ralf Baechle
3060M: ralf@linux-mips.org
3061L: linux-mips@linux-mips.org
3062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003063F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Ralf Baechlecb109a02007-08-30 23:56:30 -07003065IOC3 SERIAL DRIVER
3066P: Pat Gefre
3067M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003068L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003070F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003071
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003072IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073P: Juanjo Ciarlante
3074M: jjciarla@raiz.uncu.edu.ar
3075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003076F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Francois Romieu1202d6f2007-09-17 17:13:55 -07003078IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3079P: Francois Romieu
3080M: romieu@fr.zoreil.com
3081P: Sorbica Shieh
3082M: sorbica@icplus.com.tw
3083P: Jesse Huang
3084M: jesse@icplus.com.tw
3085L: netdev@vger.kernel.org
3086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003087F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003088
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003089IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003090P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003091M: infinipath@qlogic.com
3092L: general@lists.openfabrics.org
3093T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003094S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003095F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003096
Corey Minyard4409ebe2006-04-20 02:43:12 -07003097IPMI SUBSYSTEM
3098P: Corey Minyard
3099M: minyard@acm.org
3100L: openipmi-developer@lists.sourceforge.net
3101W: http://openipmi.sourceforge.net/
3102S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003103F: Documentation/IPMI.txt
3104F: drivers/char/ipmi/
3105F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003106
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003107IPS SCSI RAID DRIVER
3108P: Adaptec OEM Raid Solutions
3109M: aacraid@adaptec.com
3110L: linux-scsi@vger.kernel.org
3111W: http://www.adaptec.com/
3112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003113F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003114
3115IPVS
3116P: Wensong Zhang
3117M: wensong@linux-vs.org
3118P: Simon Horman
3119M: horms@verge.net.au
3120P: Julian Anastasov
3121M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003122L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003123L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003125F: Documentation/networking/ipvs-sysctl.txt
3126F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Randy Dunlape7839f22008-10-12 16:11:45 -07003128IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003129P: Jiri Kosina
3130M: jkosina@suse.cz
3131P: David Sterba
3132M: dsterba@suse.cz
3133S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003134T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003135F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003137IPX NETWORK LAYER
3138P: Arnaldo Carvalho de Melo
3139M: acme@ghostprotocols.net
3140L: netdev@vger.kernel.org
3141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003142F: include/linux/ipx.h
3143F: include/net/ipx.h
3144F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003147P: Samuel Ortiz
3148M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003149L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003151S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003152T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003153F: Documentation/networking/irda.txt
3154F: drivers/net/irda/
3155F: include/net/irda/
3156F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003158ISAPNP
3159P: Jaroslav Kysela
3160M: perex@perex.cz
3161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: Documentation/isapnp.txt
3163F: drivers/pnp/isapnp/
3164F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003165
Mike Christie14816b1e2007-11-28 16:22:06 -08003166ISCSI
3167P: Mike Christie
3168M: michaelc@cs.wisc.edu
3169L: open-iscsi@googlegroups.com
3170W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003171T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: drivers/scsi/*iscsi*
3174F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176ISDN SUBSYSTEM
3177P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003178M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003179L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003181T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003183F: Documentation/isdn/
3184F: drivers/isdn/
3185F: include/linux/isdn.h
3186F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188ISDN SUBSYSTEM (Eicon active card driver)
3189P: Armin Schindler
3190M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003191L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192W: http://www.melware.de
3193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003194F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Hans Verkuil91821ff2007-12-02 09:35:33 -03003196IVTV VIDEO4LINUX DRIVER
3197P: Hans Verkuil
3198M: hverkuil@xs4all.nl
3199L: ivtv-devel@ivtvdriver.org
3200L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003201L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003202T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003203W: http://www.ivtvdriver.org
3204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003205F: Documentation/video4linux/*.ivtv
3206F: drivers/media/video/ivtv/
3207F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003208
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003209JFS FILESYSTEM
3210P: Dave Kleikamp
3211M: shaggy@austin.ibm.com
3212L: jfs-discussion@lists.sourceforge.net
3213W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003214T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003215S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003216F: Documentation/filesystems/jfs.txt
3217F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003218
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003219JME NETWORK DRIVER
3220P: Guo-Fu Tseng
3221M: cooldavid@cooldavid.org
3222L: netdev@vger.kernel.org
3223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3227P: David Woodhouse
3228M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003229L: linux-mtd@lists.infradead.org
3230W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003232F: fs/jffs2/
3233F: include/linux/jffs2.h
3234F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Josh Triplettde456d32006-07-30 03:04:00 -07003236JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003237P: Stephen Tweedie
3238M: sct@redhat.com
3239P: Andrew Morton
3240M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003241L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003243F: fs/jbd*/
3244F: include/linux/ext*jbd*.h
3245F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003246
Rudolf Marek4660cb32006-10-08 22:01:26 +02003247K8TEMP HARDWARE MONITORING DRIVER
3248P: Rudolf Marek
3249M: r.marek@assembler.cz
3250L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: Documentation/hwmon/k8temp
3253F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255KCONFIG
3256P: Roman Zippel
3257M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003258L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003260F: Documentation/kbuild/kconfig-language.txt
3261F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Vivek Goyalea6c2082006-05-20 14:59:55 -07003263KDUMP
3264P: Vivek Goyal
Vivek Goyal4200b66c2007-12-01 12:16:30 -08003265M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003266P: Haren Myneni
3267M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003268L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003269W: http://lse.sourceforge.net/kdump/
3270S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003271F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273KERNEL AUTOMOUNTER (AUTOFS)
3274P: H. Peter Anvin
3275M: hpa@zytor.com
3276L: autofs@linux.kernel.org
3277S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003278F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
3280KERNEL AUTOMOUNTER v4 (AUTOFS4)
3281P: Ian Kent
3282M: raven@themaw.net
3283L: autofs@linux.kernel.org
3284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286
Joe Perches7d2c86b2009-04-07 20:59:01 -07003287KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288P: Sam Ravnborg
3289M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003290T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3291T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003292L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003294F: Documentation/kbuild/
3295F: Makefile
3296F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298KERNEL JANITORS
3299P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003300L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302S: Maintained
3303
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003304KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003305P: J. Bruce Fields
3306M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003308M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003309L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003312F: fs/nfsd/
3313F: include/linux/nfsd/
3314F: fs/lockd/
3315F: fs/nfs_common/
3316F: net/sunrpc/
3317F: include/linux/lockd/
3318F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Avi Kivity426d62e2006-12-13 00:34:03 -08003320KERNEL VIRTUAL MACHINE (KVM)
3321P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003322M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003323L: kvm@vger.kernel.org
3324W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003326F: Documentation/*/kvm.txt
3327F: arch/*/kvm/
3328F: arch/*/include/asm/kvm*
3329F: include/linux/kvm*
3330F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003331
Joerg Roedelad8003d2008-09-10 20:01:07 +02003332KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3333P: Joerg Roedel
3334M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003335L: kvm@vger.kernel.org
3336W: http://kvm.qumranet.com
3337S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003338F: arch/x86/include/asm/svm.h
3339F: arch/x86/kvm/kvm_svm.h
3340F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003341
Hollis Blanchard513014b2008-04-16 23:28:08 -05003342KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3343P: Hollis Blanchard
3344M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003345L: kvm-ppc@vger.kernel.org
3346W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003348F: arch/powerpc/include/asm/kvm*
3349F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003350
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003351KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003352P: Xiantao Zhang
3353M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003354L: kvm-ia64@vger.kernel.org
3355W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003356S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003357F: Documentation/ia64/kvm.txt
3358F: arch/ia64/include/asm/kvm*
3359F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003360
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003361KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3362P: Carsten Otte
3363M: cotte@de.ibm.com
3364P: Christian Borntraeger
3365M: borntraeger@de.ibm.com
3366M: linux390@de.ibm.com
3367L: linux-s390@vger.kernel.org
3368W: http://www.ibm.com/developerworks/linux/linux390/
3369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003370F: Documentation/s390/kvm.txt
3371F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003372F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003373
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003374KEXEC
3375P: Eric Biederman
3376M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003377W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003378L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003380F: include/linux/kexec.h
3381F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003382
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003383KGDB
3384P: Jason Wessel
3385M: jason.wessel@windriver.com
3386L: kgdb-bugreport@lists.sourceforge.net
3387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003388F: Documentation/DocBook/kgdb.tmpl
3389F: drivers/misc/kgdbts.c
3390F: drivers/serial/kgdboc.c
3391F: include/linux/kgdb.h
3392F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003393
Pekka Enberg456db8c2008-04-28 22:47:29 +03003394KMEMCHECK
3395P: Vegard Nossum
3396M: vegardno@ifi.uio.no
3397P Pekka Enberg
3398M: penberg@cs.helsinki.fi
3399L: linux-kernel@vger.kernel.org
3400S: Maintained
3401
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003402KMEMLEAK
3403P: Catalin Marinas
3404M: catalin.marinas@arm.com
3405L: linux-kernel@vger.kernel.org
3406S: Maintained
3407F: Documentation/kmemleak.txt
3408F: include/linux/kmemleak.h
3409F: mm/kmemleak.c
3410F: mm/kmemleak-test.c
3411
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003412KMEMTRACE
3413P: Eduard - Gabriel Munteanu
3414M: eduard.munteanu@linux360.ro
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003415S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003416F: Documentation/trace/kmemtrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07003417F: include/trace/kmemtrace.h
3418F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003419
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003420KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003421P: Ananth N Mavinakayanahalli
3422M: ananth@in.ibm.com
3423P: Anil S Keshavamurthy
3424M: anil.s.keshavamurthy@intel.com
3425P: David S. Miller
3426M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003427P: Masami Hiramatsu
3428M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003429S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003430F: Documentation/kprobes.txt
3431F: include/linux/kprobes.h
3432F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003433
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003434KS0108 LCD CONTROLLER DRIVER
3435P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003436M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda450c6222008-07-04 09:59:33 -07003437W: http://miguelojeda.es/auxdisplay.htm
3438W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: Documentation/auxdisplay/ks0108
3441F: drivers/auxdisplay/ks0108.c
3442F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003446S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003447F: Documentation/networking/lapb-module.txt
3448F: include/*/lapb.h
3449F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451LASI 53c700 driver for PARISC
3452P: James E.J. Bottomley
3453M: James.Bottomley@HansenPartnership.com
3454L: linux-scsi@vger.kernel.org
3455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003456F: Documentation/scsi/53c700.txt
3457F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Richard Purdie263de9b2006-05-15 09:44:16 -07003459LED SUBSYSTEM
3460P: Richard Purdie
3461M: rpurdie@rpsys.net
3462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003463F: drivers/leds/
3464F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003465
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466LEGO USB Tower driver
3467P: Juergen Stuber
3468M: starblue@users.sourceforge.net
3469L: legousb-devel@lists.sourceforge.net
3470W: http://legousb.sourceforge.net/
3471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003472F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Rusty Russell568a17f2007-10-25 14:12:24 +10003474LGUEST
3475P: Rusty Russell
3476M: rusty@rustcorp.com.au
3477L: lguest@ozlabs.org
3478W: http://lguest.ozlabs.org/
3479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003480F: Documentation/lguest/
3481F: arch/x86/lguest/
3482F: drivers/lguest/
3483F: include/linux/lguest*.h
3484F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003485
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486LINUX FOR IBM pSERIES (RS/6000)
3487P: Paul Mackerras
3488M: paulus@au.ibm.com
3489W: http://www.ibm.com/linux/ltc/projects/ppc
3490S: Supported
3491
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003492LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003493P: Benjamin Herrenschmidt
3494M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003495P: Paul Mackerras
3496M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497W: http://www.penguinppc.org/
3498L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003499T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500S: Supported
3501
3502LINUX FOR POWER MACINTOSH
3503P: Benjamin Herrenschmidt
3504M: benh@kernel.crashing.org
3505W: http://www.penguinppc.org/
3506L: linuxppc-dev@ozlabs.org
3507S: Maintained
3508
Grant Likely77a76362008-07-12 12:11:43 -06003509LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003510P: Grant Likely
3511M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003513T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514S: Maintained
3515
3516LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003517P: Josh Boyer
3518M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519P: Matt Porter
3520M: mporter@kernel.crashing.org
3521W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003522L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003523T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524S: Maintained
3525
Grant Likely260c02a2007-10-02 12:15:34 +10003526LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3527P: Grant Likely
3528M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003529W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003530L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003531T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532S: Maintained
3533
Tom Rinie93adf12005-07-26 12:49:53 -07003534LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003535P: Vitaly Bordug
3536M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003537P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003538M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003539W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003540L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003541S: Maintained
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003544P: Kumar Gala
3545M: galak@kernel.crashing.org
3546W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003547L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003548S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Olof Johanssonab06ff32006-09-06 14:44:54 -05003550LINUX FOR POWERPC PA SEMI PWRFICIENT
3551P: Olof Johansson
3552M: olof@lixom.net
3553W: http://www.pasemi.com/
3554L: linuxppc-dev@ozlabs.org
3555S: Supported
3556
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557LINUX SECURITY MODULE (LSM) FRAMEWORK
3558P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003559M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003560L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003561T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562S: Supported
3563
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003564LLC (802.2)
3565P: Arnaldo Carvalho de Melo
3566M: acme@ghostprotocols.net
3567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003568F: include/linux/llc.h
3569F: include/net/llc*
3570F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571
Pavel Machek455fbdd2008-11-12 13:27:02 -08003572LIS3LV02D ACCELEROMETER DRIVER
3573P: Eric Piel
3574M: eric.piel@tremplin-utc.net
3575S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003576F: Documentation/hwmon/lis3lv02d
3577F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003578
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579LM83 HARDWARE MONITOR DRIVER
3580P: Jean Delvare
3581M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003582L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003584F: Documentation/hwmon/lm83
3585F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
3587LM90 HARDWARE MONITOR DRIVER
3588P: Jean Delvare
3589M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003590L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003592F: Documentation/hwmon/lm90
3593F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003595LOCKDEP AND LOCKSTAT
3596P: Peter Zijlstra
3597M: peterz@infradead.org
3598P: Ingo Molnar
3599M: mingo@redhat.com
Joe Perches54e58812009-04-07 21:08:10 -07003600T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003602F: Documentation/lockdep*.txt
3603F: Documentation/lockstat.txt
3604F: include/linux/lockdep.h
3605F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003606
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003607LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608P: Richard Russon (FlatCap)
3609M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003610L: linux-ntfs-dev@lists.sourceforge.net
3611W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003613F: Documentation/ldm.txt
3614F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003616LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3617P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003618M: Eric.Moore@lsi.com
3619M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003620L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003621L: linux-scsi@vger.kernel.org
3622W: http://www.lsilogic.com/support
3623S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003624F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003625
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3627P: Matthew Wilcox
3628M: matthew@wil.cx
3629L: linux-scsi@vger.kernel.org
3630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003631F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Mike Frysinger81365c32008-10-29 14:01:12 -07003633LTP (Linux Test Project)
3634P: Subrata Modak
3635M: subrata@linux.vnet.ibm.com
3636P: Mike Frysinger
3637M: vapier@gentoo.org
3638L: ltp-list@lists.sourceforge.net (subscribers-only)
3639W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003640T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003641S: Maintained
3642
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003643M32R ARCHITECTURE
3644P: Hirokazu Takata
3645M: takata@linux-m32r.org
3646L: linux-m32r@ml.linux-m32r.org
3647L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3648W: http://www.linux-m32r.org/
3649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652M68K ARCHITECTURE
3653P: Geert Uytterhoeven
3654M: geert@linux-m68k.org
3655P: Roman Zippel
3656M: zippel@linux-m68k.org
3657L: linux-m68k@lists.linux-m68k.org
3658W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003659T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003661F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003662F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
3664M68K ON APPLE MACINTOSH
3665P: Joshua Thompson
3666M: funaho@jurai.org
3667W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003668L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003670F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672M68K ON HP9000/300
3673P: Philip Blundell
3674M: philb@gnu.org
3675W: http://www.tazenda.demon.co.uk/phil/linux-hp
3676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Jiri Benc64a327a2007-05-05 11:47:08 -07003679MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003680P: Johannes Berg
3681M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003682L: linux-wireless@vger.kernel.org
3683W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003684T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003686F: Documentation/networking/mac80211-injection.txt
3687F: include/net/mac80211.h
3688F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003689
Stefano Brivio1036d862007-12-23 04:46:27 +01003690MAC80211 PID RATE CONTROL
3691P: Stefano Brivio
3692M: stefano.brivio@polimi.it
3693P: Mattias Nissler
3694M: mattias.nissler@gmx.de
3695L: linux-wireless@vger.kernel.org
3696W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003697T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003699F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003700
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003701MACVLAN DRIVER
3702P: Patrick McHardy
3703M: kaber@trash.net
3704L: netdev@vger.kernel.org
3705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: drivers/net/macvlan.c
3707F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003708
Michael Kerriskfaf16682005-07-31 22:34:47 -07003709MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003710P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003711M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003712W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003713L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003714S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003715
Stefano Brivio74cda162007-11-19 20:27:46 +01003716MARVELL LIBERTAS WIRELESS DRIVER
3717P: Dan Williams
3718M: dcbw@redhat.com
3719L: libertas-dev@lists.infradead.org
3720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003721F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003722
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003723MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003724P: Lennert Buytenhek
3725M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003726L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003727S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003728F: drivers/net/mv643xx_eth.*
3729F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Pierre Ossman2a695672009-03-16 19:52:26 +01003731MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3732P: Nicolas Pitre
3733M: nico@cam.org
Pierre Ossman2a695672009-03-16 19:52:26 +01003734S: Maintained
3735
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003736MARVELL YUKON / SYSKONNECT DRIVER
3737P: Mirko Lindner
3738M: mlindner@syskonnect.de
3739P: Ralph Roesler
3740M: rroesler@syskonnect.de
3741W: http://www.syskonnect.com
3742S: Supported
3743
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744MATROX FRAMEBUFFER DRIVER
3745P: Petr Vandrovec
3746M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003747L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: drivers/video/matrox/matroxfb_*
3750F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003752MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3753P: Hans J. Koch
3754M: hjk@linutronix.de
3755L: lm-sensors@lm-sensors.org
3756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: Documentation/hwmon/max6650
3758F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003759
Joe Perches127c49a2009-04-08 08:34:04 -07003760MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3761P: Mauro Carvalho Chehab
3762M: mchehab@infradead.org
3763P: LinuxTV.org Project
3764L: linux-media@vger.kernel.org
3765W: http://linuxtv.org
3766T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3767S: Maintained
3768F: Documentation/dvb/
3769F: Documentation/video4linux/
3770F: drivers/media/
3771F: include/media/
3772F: include/linux/dvb/
3773F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003774
3775MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003776P: Neela Syam Kolli
Sumant Patrobdd0d7572007-05-10 07:22:35 -07003777M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003778L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003779W: http://megaraid.lsilogic.com
3780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: Documentation/scsi/megaraid.txt
3782F: drivers/scsi/megaraid.*
3783F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003784
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785MEMORY MANAGEMENT
3786L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787W: http://www.linux-mm.org
3788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003789F: include/linux/mm.h
3790F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003791
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003792MEMORY RESOURCE CONTROLLER
3793P: Balbir Singh
3794M: balbir@linux.vnet.ibm.com
3795P: Pavel Emelyanov
3796M: xemul@openvz.org
3797P: KAMEZAWA Hiroyuki
3798M: kamezawa.hiroyu@jp.fujitsu.com
3799L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003801F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003802
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803MEMORY TECHNOLOGY DEVICES (MTD)
3804P: David Woodhouse
3805M: dwmw2@infradead.org
3806W: http://www.linux-mtd.infradead.org/
3807L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003808T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003810F: drivers/mtd/
3811F: include/linux/mtd/
3812F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Michal Simekc6375b02009-03-27 14:25:52 +01003814MICROBLAZE ARCHITECTURE
3815P: Michal Simek
3816M: monstr@monstr.eu
3817L: microblaze-uclinux@itee.uq.edu.au
3818W: http://www.monstr.eu/fdt/
3819T: git git://git.monstr.eu/linux-2.6-microblaze.git
3820S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003821F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
3823MICROTEK X6 SCANNER
3824P: Oliver Neukum
3825M: oliver@neukum.name
3826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829MIPS
3830P: Ralf Baechle
3831M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003832W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003834T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003836F: Documentation/mips/
3837F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839MISCELLANEOUS MCA-SUPPORT
3840P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003841M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: Documentation/ia64/mca.txt
3844F: Documentation/mca.txt
3845F: drivers/mca/
3846F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
3848MODULE SUPPORT
3849P: Rusty Russell
3850M: rusty@rustcorp.com.au
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003852F: include/linux/module.h
3853F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
3855MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3856P: Stelian Pop
3857M: stelian@popies.net
3858W: http://popies.net/meye/
3859S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003860F: Documentation/video4linux/meye.txt
3861F: drivers/media/video/meye.*
3862F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Pavel Pisac58ff042007-05-16 01:10:41 +02003864MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3865P: Pavel Pisa
3866M: ppisa@pikron.com
3867L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003869F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871MOUSE AND MISC DEVICES [GENERAL]
3872P: Alessandro Rubini
3873M: rubini@ipvvis.unipv.it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003875F: drivers/input/mouse/
3876F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Jiri Slabyb9705b62008-04-30 00:53:48 -07003878MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003879P: Jiri Slaby
3880M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003881S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003882F: Documentation/serial/moxa-smartio
3883F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003884
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003885MSI LAPTOP SUPPORT
3886P: Lennart Poettering
3887M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003888W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003889W: http://0pointer.de/lennart/tchibo.html
3890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003891F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003892
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003893MULTIFUNCTION DEVICES (MFD)
3894P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003895M: sameo@linux.intel.com
Joe Perches54e58812009-04-07 21:08:10 -07003896T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003897S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003898F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003899
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003900MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003901P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003902M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003904F: drivers/mmc/
3905F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003906
David Brownell15a05802007-08-08 09:12:54 -07003907MULTIMEDIA CARD (MMC) ETC. OVER SPI
3908P: David Brownell
3909M: dbrownell@users.sourceforge.net
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003910S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003911F: drivers/mmc/host/mmc_spi.c
3912F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003913
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914MULTISOUND SOUND DRIVER
3915P: Andrew Veliath
3916M: andrewtv@usa.net
3917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: Documentation/sound/oss/MultiSound
3919F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Jiri Slabyd7354102006-12-08 02:38:35 -08003921MULTITECH MULTIPORT CARD (ISICOM)
3922P: Jiri Slaby
3923M: jirislaby@gmail.com
Jiri Slabyd7354102006-12-08 02:38:35 -08003924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003925F: drivers/char/isicom.c
3926F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003927
Felipe Balbi550a7372008-07-24 12:27:36 +03003928MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003929P: Felipe Balbi
3930M: felipe.balbi@nokia.com
3931L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003932T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003935
Brice Goglin2d3cf582008-05-17 12:45:36 +02003936MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3937P: Andrew Gallatin
3938M: gallatin@myri.com
3939P: Brice Goglin
3940M: brice@myri.com
3941L: netdev@vger.kernel.org
3942W: http://www.myri.com/scs/download-Myri10GE.html
3943S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003944F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003947P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948M: thockin@hockin.org
3949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003950F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
3952NCP FILESYSTEM
3953P: Petr Vandrovec
3954M: vandrove@vc.cvut.cz
3955L: linware@sh.cvut.cz
3956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003957F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
3959NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3960P: James E.J. Bottomley
3961M: James.Bottomley@HansenPartnership.com
3962L: linux-scsi@vger.kernel.org
3963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003964F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003966NETEFFECT IWARP RNIC DRIVER (IW_NES)
3967P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003968M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003969P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003970M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003971L: general@lists.openfabrics.org
3972W: http://www.neteffect.com
3973S: Supported
3974F: drivers/infiniband/hw/nes/
3975
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003976NETEM NETWORK EMULATOR
3977P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003978M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003979L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003981F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003982
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003983NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003984P: Ramkrishna Vepa
3985M: ram.vepa@neterion.com
3986P: Rastapur Santosh
3987M: santosh.rastapur@neterion.com
3988P: Sivakumar Subramani
3989M: sivakumar.subramani@neterion.com
3990P: Sreenivasa Honnur
3991M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003992P: Anil Murthy
3993M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003994L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003995W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3996W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003997S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003998F: Documentation/networking/s2io.txt
3999F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07004000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001NETFILTER/IPTABLES/IPCHAINS
4002P: Rusty Russell
4003P: Marc Boucher
4004P: James Morris
4005P: Harald Welte
4006P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07004007P: Patrick McHardy
4008M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07004009L: netfilter-devel@vger.kernel.org
4010L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004011L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012W: http://www.netfilter.org/
4013W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004015F: include/linux/netfilter*
4016F: include/linux/netfilter/
4017F: include/net/netfilter/
4018F: net/*/netfilter.c
4019F: net/*/netfilter/
4020F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
Paul Moore4cc67732006-09-25 15:57:13 -07004022NETLABEL
4023P: Paul Moore
4024M: paul.moore@hp.com
4025W: http://netlabel.sf.net
4026L: netdev@vger.kernel.org
4027S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004028F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004029F: include/net/netlabel.h
4030F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004031
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032NETROM NETWORK LAYER
4033P: Ralf Baechle
4034M: ralf@linux-mips.org
4035L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004036W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004038F: include/linux/netrom.h
4039F: include/net/netrom.h
4040F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004042NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043P: Paul Clements
4044M: Paul.Clements@steeleye.com
4045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004046F: Documentation/blockdev/nbd.txt
4047F: drivers/block/nbd.c
4048F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004051P: David S. Miller
4052M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004053L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004054W: http://www.linuxfoundation.org/en/Net
4055T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004057F: net/
4058F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
4060NETWORKING [IPv4/IPv6]
4061P: David S. Miller
4062M: davem@davemloft.net
4063P: Alexey Kuznetsov
4064M: kuznet@ms2.inr.ac.ru
4065P: Pekka Savola (ipv6)
4066M: pekkas@netcore.fi
4067P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004068M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069P: Hideaki YOSHIFUJI
4070M: yoshfuji@linux-ipv6.org
4071P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004072M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004073L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004074T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004076F: net/ipv4/
4077F: net/ipv6/
4078F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
James Morris10e2ff12007-08-25 14:41:28 -07004080NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4081P: Paul Moore
4082M: paul.moore@hp.com
4083L: netdev@vger.kernel.org
4084S: Maintained
4085
John W. Linville29f8f632006-01-18 14:52:48 -08004086NETWORKING [WIRELESS]
4087P: John W. Linville
4088M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004089L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004090T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004092F: net/wireless/
4093F: include/net/ieee80211*
4094F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004095
Joe Perches788873a2009-04-16 09:38:45 +00004096NETWORKING DRIVERS
4097L: netdev@vger.kernel.org
4098W: http://www.linuxfoundation.org/en/Net
4099T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4100S: Odd Fixes
4101F: drivers/net/
4102
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004103NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004104P: Dhananjay Phadke
4105M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004106L: netdev@vger.kernel.org
4107W: http://www.netxen.com
4108S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004109F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004110
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004111NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004113M: Trond.Myklebust@netapp.com
4114L: linux-nfs@vger.kernel.org
4115W: http://client.linux-nfs.org
4116T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004118F: fs/lockd/
4119F: fs/nfs/
4120F: fs/nfs_common/
4121F: net/sunrpc/
4122F: include/linux/lockd/
4123F: include/linux/nfs*
4124F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004127P: Jan-Pascal van Best
4128M: janpascal@vanbest.org
4129P: Andreas Mohr
4130M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004131L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004135NILFS2 FILESYSTEM
4136P: KONISHI Ryusuke
4137M: konishi.ryusuke@lab.ntt.co.jp
4138L: users@nilfs.org
4139W: http://www.nilfs.org/en/
4140S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004141F: Documentation/filesystems/nilfs2.txt
4142F: fs/nilfs2/
4143F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004144
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4146P: YOKOTA Hiroshi
4147M: yokota@netlab.is.tsukuba.ac.jp
4148W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004150F: Documentation/scsi/NinjaSCSI.txt
4151F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
4153NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4154P: GOTO Masanori
4155M: gotom@debian.or.jp
4156P: YOKOTA Hiroshi
4157M: yokota@netlab.is.tsukuba.ac.jp
4158W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004160F: Documentation/scsi/NinjaSCSI.txt
4161F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163NTFS FILESYSTEM
4164P: Anton Altaparmakov
4165M: aia21@cantab.net
4166L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004167W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004168T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004170F: Documentation/filesystems/ntfs.txt
4171F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004173NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004174P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004175M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004176L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004178F: drivers/video/riva/
4179F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
Tony Lindgrenf5525782009-05-28 13:23:53 -07004181OMAP SUPPORT
4182P: Tony Lindgren <tony@atomide.com>
4183M: tony@atomide.com
4184L: linux-omap@vger.kernel.org
4185W: http://www.muru.com/linux/omap/
4186W: http://linux.omap.com/
4187T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4188S: Maintained
4189F: arch/arm/*omap*
4190
4191OMAP CLOCK FRAMEWORK SUPPORT
4192P: Paul Walmsley
4193M: paul@pwsan.com
4194L: linux-omap@vger.kernel.org
4195S: Maintained
4196F: arch/arm/*omap*/*clock*
4197
4198OMAP POWER MANAGEMENT SUPPORT
4199P: Kevin Hilman
4200M: khilman@deeprootsystems.com
4201L: linux-omap@vger.kernel.org
4202S: Maintained
4203F: arch/arm/*omap*/*pm*
4204
4205OMAP AUDIO SUPPORT
4206P: Jarkko Nikula
4207M: jhnikula@gmail.com
4208L: alsa-devel@alsa-project.org (subscribers-only)
4209L: linux-omap@vger.kernel.org
4210S: Maintained
4211F: sound/soc/omap/
4212
4213OMAP FRAMEBUFFER SUPPORT
4214P: Imre Deak
4215M: imre.deak@nokia.com
4216L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
4217L: linux-omap@vger.kernel.org
4218S: Maintained
4219F: drivers/video/omap/
4220
4221OMAP MMC SUPPORT
4222P: Jarkko Lavinen
4223M: jarkko.lavinen@nokia.com
4224L: linux-kernel@vger.kernel.org
4225L: linux-omap@vger.kernel.org
4226S: Maintained
4227F: drivers/mmc/host/*omap*
4228
4229OMAP RANDOM NUMBER GENERATOR SUPPORT
4230P: Deepak Saxena
4231M: dsaxena@plexity.net
4232S: Maintained
4233F: drivers/char/hw_random/omap-rng.c
4234
4235OMAP USB SUPPORT
4236P: Felipe Balbi
4237M: felipe.balbi@nokia.com
4238P: David Brownell
4239M: dbrownell@users.sourceforge.net
4240L: linux-usb@vger.kernel.org
4241L: linux-omap@vger.kernel.org
4242S: Maintained
4243
Bob Copeland0ad122d2008-07-25 19:45:18 -07004244OMFS FILESYSTEM
4245P: Bob Copeland
4246M: me@bobcopeland.com
4247L: linux-karma-devel@lists.sourceforge.net
4248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/filesystems/omfs.txt
4250F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004251
Harald Weltec1986ee2005-11-13 16:06:29 -08004252OMNIKEY CARDMAN 4000 DRIVER
4253P: Harald Welte
4254M: laforge@gnumonks.org
4255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004256F: drivers/char/pcmcia/cm4000_cs.c
4257F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004258
Harald Welte77c44ab2005-11-13 16:06:26 -08004259OMNIKEY CARDMAN 4040 DRIVER
4260P: Harald Welte
4261M: laforge@gnumonks.org
4262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004263F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004264
Jonathan Corbet77d51402007-03-22 19:44:17 -03004265OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004266P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004267M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004268L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004269T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004271F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004272
Thomas Gleixner431bca72007-05-02 09:31:35 +02004273ONENAND FLASH DRIVER
4274P: Kyungmin Park
4275M: kyungmin.park@samsung.com
4276L: linux-mtd@lists.infradead.org
4277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004278F: drivers/mtd/onenand/
4279F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004280
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281ONSTREAM SCSI TAPE DRIVER
4282P: Willem Riede
4283M: osst@riede.org
4284L: osst-users@lists.sourceforge.net
4285L: linux-scsi@vger.kernel.org
4286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004287F: drivers/scsi/osst*
4288F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004290OPENCORES I2C BUS DRIVER
4291P: Peter Korsgaard
4292M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004293L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004295F: Documentation/i2c/busses/i2c-ocores
4296F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004299P: Robert Richter
4300M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301L: oprofile-list@lists.sf.net
4302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004303F: arch/*/oprofile/
4304F: drivers/oprofile/
4305F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004307ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4308P: Mark Fasheh
4309M: mfasheh@suse.com
4310P: Joel Becker
4311M: joel.becker@oracle.com
4312L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4313W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004314T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004315S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004316F: Documentation/filesystems/ocfs2.txt
4317F: Documentation/filesystems/dlmfs.txt
4318F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004319
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320ORINOCO DRIVER
4321P: Pavel Roskin
4322M: proski@gnu.org
4323P: David Gibson
4324M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004325L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004326L: orinoco-users@lists.sourceforge.net
4327L: orinoco-devel@lists.sourceforge.net
4328W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004330F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
Boaz Harrosh68274792009-01-25 17:24:14 +02004332OSD LIBRARY
4333P: Boaz Harrosh
4334M: bharrosh@panasas.com
4335P: Benny Halevy
4336M: bhalevy@panasas.com
4337L: osd-dev@open-osd.org
4338W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004339T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004340S: Maintained
4341
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004342P54 WIRELESS DRIVER
4343P: Michael Wu
4344M: flamingice@sourmilk.net
4345L: linux-wireless@vger.kernel.org
4346W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004347T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004350
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004351PA SEMI ETHERNET DRIVER
4352P: Olof Johansson
4353M: olof@lixom.net
4354L: netdev@vger.kernel.org
4355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004356F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004357
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004358PA SEMI SMBUS DRIVER
4359P: Olof Johansson
4360M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004361L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004364
Harald Welte709ee532008-09-23 17:46:57 +02004365PANASONIC LAPTOP ACPI EXTRAS DRIVER
4366P: Harald Welte
4367M: laforge@gnumonks.org
4368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004369F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004370
David Howells4fa97182008-10-13 10:42:44 +01004371PANASONIC MN10300/AM33 PORT
4372P: David Howells
4373M: dhowells@redhat.com
4374P: Koichi Yasutake
4375M: yasutake.koichi@jp.panasonic.com
4376L: linux-am33-list@redhat.com (moderated for non-subscribers)
4377W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004379F: Documentation/mn10300/
4380F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004383L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004384S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004385F: drivers/parport/
4386F: include/linux/parport*.h
4387F: drivers/char/ppdev.c
4388F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004390PARAVIRT_OPS INTERFACE
4391P: Jeremy Fitzhardinge
4392M: jeremy@xensource.com
4393P: Chris Wright
4394M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004395P: Alok Kataria
4396M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004397P: Rusty Russell
4398M: rusty@rustcorp.com.au
4399L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004400S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004401F: Documentation/ia64/paravirt_ops.txt
4402F: arch/*/kernel/paravirt*
4403F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004404
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4406P: Tim Waugh
4407M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004408L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409W: http://www.torque.net/linux-pp.html
4410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004411F: Documentation/blockdev/paride.txt
4412F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
4414PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004415P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004416M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004417P: Helge Deller
4418M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004419L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004421T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004423F: arch/parisc/
4424F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Jim Cromie1662d322006-10-06 00:43:59 -07004426PC87360 HARDWARE MONITORING DRIVER
4427P: Jim Cromie
4428M: jim.cromie@gmail.com
4429L: lm-sensors@lm-sensors.org
4430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/hwmon/pc87360
4432F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004433
4434PC8736x GPIO DRIVER
4435P: Jim Cromie
4436M: jim.cromie@gmail.com
4437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004438F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004439
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004440PCA9532 LED DRIVER
4441P: Riku Voipio
4442M: riku.voipio@iki.fi
4443S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004444F: drivers/leds/leds-pca9532.c
4445F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004446
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004447PCI ERROR RECOVERY
4448P: Linas Vepstas
4449M: linas@austin.ibm.com
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004450L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004451S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004452F: Documentation/PCI/pci-error-recovery.txt
4453F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004454
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004456P: Jesse Barnes
4457M: jbarnes@virtuousgeek.org
Jesse Barnes29054742008-05-03 08:35:49 -07004458L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004459T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004461F: Documentation/PCI/
4462F: drivers/pci/
4463F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004465PCIE HOTPLUG DRIVER
4466P: Kristen Carlson Accardi
4467M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004468L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004470F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004471
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004473P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004474L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004475W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004476T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004478F: Documentation/pcmcia/
4479F: drivers/pcmcia/
4480F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
4482PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004483P: Don Fry
4484M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004485L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004487F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004489PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004490P: Balbir Singh
4491M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004493F: include/linux/delayacct.h
4494F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004495
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004496PERFORMANCE COUNTER SUBSYSTEM
4497P: Peter Zijlstra
4498M: a.p.zijlstra@chello.nl
4499P: Paul Mackerras
4500M: paulus@samba.org
4501P: Ingo Molnar
4502M: mingo@elte.hu
4503L: linux-kernel@vger.kernel.org
4504S: Supported
4505
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004506PERSONALITY HANDLING
4507P: Christoph Hellwig
4508M: hch@infradead.org
4509L: linux-abi-devel@lists.sourceforge.net
4510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004511F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004514P: Joern Engel
4515M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516L: linux-mtd@lists.infradead.org
4517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004518F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Peter Osterlund249a6772005-09-27 21:45:30 -07004520PKTCDVD DRIVER
4521P: Peter Osterlund
4522M: petero2@telia.com
Peter Osterlund249a6772005-09-27 21:45:30 -07004523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004524F: drivers/block/pktcdvd.c
4525F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004526
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004528P: Thomas Gleixner
4529M: tglx@linutronix.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004531F: fs/timerfd.c
4532F: include/linux/timer*
4533F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
Anton Vorontsov3be86142007-07-15 04:43:36 +04004535POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4536P: Anton Vorontsov
4537M: cbou@mail.ru
4538P: David Woodhouse
4539M: dwmw2@infradead.org
Joe Perches54e58812009-04-07 21:08:10 -07004540T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004542F: include/linux/power_supply.h
4543F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004544
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545PNP SUPPORT
4546P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004547M: abelay@mit.edu
4548P: Bjorn Helgaas
4549M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004551F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Vitaly Wool999445d2007-01-04 13:07:03 +01004553PNXxxxx I2C DRIVER
4554P: Vitaly Wool
4555M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004556L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004558F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004559
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560PPP PROTOCOL DRIVERS AND COMPRESSORS
4561P: Paul Mackerras
4562M: paulus@samba.org
4563L: linux-ppp@vger.kernel.org
4564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566
4567PPP OVER ATM (RFC 2364)
4568P: Mitchell Blank Jr
4569M: mitch@sfgoth.com
4570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: net/atm/pppoatm.c
4572F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574PPP OVER ETHERNET
4575P: Michal Ostrowski
Chris Wright5e70b7f32008-06-09 16:07:28 -07004576M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: drivers/net/pppoe.c
4579F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
James Chapmana6d23702007-06-27 15:53:17 -07004581PPP OVER L2TP
4582P: James Chapman
4583M: jchapman@katalix.com
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: drivers/net/pppol2tp.c
4586F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004587
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004588PPS SUPPORT
4589P: Rodolfo Giometti
4590M: giometti@enneenne.com
4591W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4592L: linuxpps@ml.enneenne.com (subscribers-only)
4593S: Maintained
4594
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595PREEMPTIBLE KERNEL
4596P: Robert Love
4597M: rml@tech9.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598L: kpreempt-tech@lists.sourceforge.net
4599W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4600S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004601F: Documentation/preempt-locking.txt
4602F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
4604PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004605P: Luis R. Rodriguez
4606M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004607L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608W: http://prism54.org
4609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004610F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
4612PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4613P: Peter Denison
4614M: promise@pnd-pc.demon.co.uk
4615W: http://www.pnd-pc.demon.co.uk/promise/
4616S: Maintained
4617
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004618PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4619P: Mikael Pettersson
4620M: mikpe@it.uu.se
4621L: linux-ide@vger.kernel.org
4622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004623F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004624
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004625PS3 NETWORK SUPPORT
Masakazu Mokunoae3d2462009-03-30 11:04:04 -07004626P: Geoff Levand
4627M: geoffrey.levand@am.sony.com
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004628L: netdev@vger.kernel.org
4629L: cbe-oss-dev@ozlabs.org
4630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004631F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004632
Geoff Levandf58a9d12006-11-23 00:46:51 +01004633PS3 PLATFORM SUPPORT
4634P: Geoff Levand
4635M: geoffrey.levand@am.sony.com
4636L: linuxppc-dev@ozlabs.org
4637L: cbe-oss-dev@ozlabs.org
4638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004639F: arch/powerpc/boot/ps3*
4640F: arch/powerpc/include/asm/lv1call.h
4641F: arch/powerpc/include/asm/ps3*.h
4642F: arch/powerpc/platforms/ps3/
4643F: drivers/*/ps3*
4644F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004645F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004646F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004647F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004648
Jim Pariscffb4add2009-01-06 11:32:10 +00004649PS3VRAM DRIVER
4650P: Jim Paris
4651M: jim@jtan.com
4652L: cbe-oss-dev@ozlabs.org
4653S: Maintained
4654
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004655PTRACE SUPPORT
4656P: Roland McGrath
4657M: roland@redhat.com
4658P: Oleg Nesterov
4659M: oleg@redhat.com
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004660S: Maintained
4661F: include/asm-generic/syscall.h
4662F: include/linux/ptrace.h
4663F: include/linux/regset.h
4664F: include/linux/tracehook.h
4665F: kernel/ptrace.c
4666
Michael Krufky83202042006-07-03 00:24:18 -07004667PVRUSB2 VIDEO4LINUX DRIVER
4668P: Mike Isely
4669M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004670L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004671L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004672W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004673T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004675F: Documentation/video4linux/README.pvrusb2
4676F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004677
Eric Miao30ec2612008-06-12 15:21:41 -07004678PXA2xx/PXA3xx SUPPORT
4679P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004680M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004681P: Russell King
4682M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004683L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004685F: arch/arm/mach-pxa/
4686F: drivers/pcmcia/pxa2xx*
4687F: drivers/spi/pxa2xx*
4688F: drivers/usb/gadget/pxa2*
4689F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004690F: sound/arm/pxa*
4691F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004693PXA168 SUPPORT
4694P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004695M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004696P: Jason Chagas
4697M: jason.chagas@marvell.com
4698L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004699T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004700S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004701
Eric Miao5fa82eb2009-03-20 12:52:24 +08004702PXA910 SUPPORT
4703P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004704M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004705L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004706T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004707S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004708
Pierre Ossman272f1332007-05-14 21:25:26 +02004709PXA MMCI DRIVER
4710S: Orphan
4711
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004712PXA RTC DRIVER
4713P: Robert Jarzmik
4714M: robert.jarzmik@free.fr
4715L: rtc-linux@googlegroups.com
4716S: Maintained
4717
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718QLOGIC QLA2XXX FC-SCSI DRIVER
4719P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004720M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721L: linux-scsi@vger.kernel.org
4722S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004723F: Documentation/scsi/LICENSE.qla2xxx
4724F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Ron Mercer5a4faa872006-07-25 00:40:21 -07004726QLOGIC QLA3XXX NETWORK DRIVER
4727P: Ron Mercer
4728M: linux-driver@qlogic.com
4729L: netdev@vger.kernel.org
4730S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004731F: Documentation/networking/LICENSE.qla3xxx
4732F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004733
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004734QLOGIC QLGE 10Gb ETHERNET DRIVER
4735P: Ron Mercer
4736M: linux-driver@qlogic.com
4737M: ron.mercer@qlogic.com
4738L: netdev@vger.kernel.org
4739S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004740F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004741
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742QNX4 FILESYSTEM
4743P: Anders Larsen
4744M: al@alarsen.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745W: http://www.alarsen.net/linux/qnx4fs/
4746S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004747F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004748F: include/linux/qnx4_fs.h
4749F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
4751RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004752P: Benjamin Herrenschmidt
4753M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004754L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004756F: drivers/video/aty/radeon*
4757F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758
4759RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004760P: Paul Mackerras
4761M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004762L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004764F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Randy Dunlape7839f22008-10-12 16:11:45 -07004766RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004767P: rt2x00 project
4768L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004769L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004770W: http://rt2x00.serialmonkey.com/
4771S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004772T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004773F: drivers/net/wireless/rt2x00/
4774
Nick Piggin9db55792008-02-08 04:19:49 -08004775RAMDISK RAM BLOCK DEVICE DRIVER
4776P: Nick Piggin
4777M: npiggin@suse.de
4778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: Documentation/blockdev/ramdisk.txt
4780F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004781
Matt Mackall9e95ce22005-04-16 15:25:56 -07004782RANDOM NUMBER DRIVER
4783P: Matt Mackall
4784M: mpm@selenic.com
4785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004786F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004787
Matt Porter394b7012005-11-07 01:00:15 -08004788RAPIDIO SUBSYSTEM
4789P: Matt Porter
4790M: mporter@kernel.crashing.org
Matt Porter394b7012005-11-07 01:00:15 -08004791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004792F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004793
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004794RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4795P: Corey Thomas
4796M: coreythomas@charter.net
4797L: linux-wireless@vger.kernel.org
4798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004799F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004800
4801RCUTORTURE MODULE
4802P: Josh Triplett
4803M: josh@freedesktop.org
Joe Perches852f9bb2009-06-16 15:34:09 -07004804P: Paul E. McKenney
4805M: paulmck@linux.vnet.ibm.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004807F: Documentation/RCU/torture.txt
4808F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004809
Florian Fainellic1f766b2008-02-06 22:39:44 +01004810RDC R-321X SoC
4811P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004812M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004813S: Maintained
4814
Florian Fainellidb17f392007-12-19 11:30:30 +01004815RDC R6040 FAST ETHERNET DRIVER
4816P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004817M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004818L: netdev@vger.kernel.org
4819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004820F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004821
Andy Grovera09ed662009-02-24 15:30:41 +00004822RDS - RELIABLE DATAGRAM SOCKETS
4823P: Andy Grover
4824M: andy.grover@oracle.com
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004825L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004827F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004828
Josh Triplett595182b2006-10-04 02:17:21 -07004829READ-COPY UPDATE (RCU)
4830P: Dipankar Sarma
4831M: dipankar@in.ibm.com
Joe Perches852f9bb2009-06-16 15:34:09 -07004832P: Paul E. McKenney
4833M: paulmck@linux.vnet.ibm.com
Josh Triplett595182b2006-10-04 02:17:21 -07004834W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004836F: Documentation/RCU/rcu.txt
4837F: Documentation/RCU/rcuref.txt
4838F: include/linux/rcupdate.h
4839F: include/linux/srcu.h
4840F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842REAL TIME CLOCK DRIVER
4843P: Paul Gortmaker
4844M: p_gortmaker@yahoo.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004846F: Documentation/rtc.txt
4847F: drivers/rtc/
4848F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004850REAL TIME CLOCK (RTC) SUBSYSTEM
4851P: Alessandro Zummo
4852M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004853L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004855F: Documentation/rtc.txt
4856F: drivers/rtc/
4857F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004858
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004860L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004862F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Ivo van Doorne08976452008-04-12 19:23:55 +02004864RFKILL
Johannes Berg19d337d2009-06-02 13:01:37 +02004865P: Johannes Berg
4866M: johannes@sipsolutions.net
4867L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004868S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004869F Documentation/rfkill.txt
4870F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004871
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004872RISCOM8 DRIVER
4873S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004874F: Documentation/serial/riscom8.txt
4875F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004876
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877ROCKETPORT DRIVER
4878P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879W: http://www.comtrol.com
4880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004881F: Documentation/serial/rocket.txt
4882F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
4884ROSE NETWORK LAYER
4885P: Ralf Baechle
4886M: ralf@linux-mips.org
4887L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004888W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004890F: include/linux/rose.h
4891F: include/net/rose.h
4892F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
Larry Finger59840482008-11-12 17:13:09 -06004894RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004895P: John W. Linville
4896M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004897L: linux-wireless@vger.kernel.org
4898W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004899T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004902
Larry Finger59840482008-11-12 17:13:09 -06004903RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004904P: Herton Ronaldo Krzesinski
4905M: herton@mandriva.com.br
4906P: Hin-Tak Leung
4907M: htl10@users.sourceforge.net
4908P: Larry Finger
4909M: Larry.Finger@lwfinger.net
4910L: linux-wireless@vger.kernel.org
4911W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004912T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004914F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004915
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004916S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004917P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004918M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004919L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004921F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004922
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923S390
4924P: Martin Schwidefsky
4925M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004926P: Heiko Carstens
4927M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004929L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004930W: http://www.ibm.com/developerworks/linux/linux390/
4931S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004932F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004933
4934S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004935P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004936M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004937P: Frank Blaschka
4938M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004939M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004940L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004941W: http://www.ibm.com/developerworks/linux/linux390/
4942S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004943F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004944
Felix Beckfeed9b62009-03-26 15:24:23 +01004945S390 ZCRYPT DRIVER
4946P: Felix Beck
4947M: felix.beck@de.ibm.com
4948P: Ralph Wuerthner
4949M: ralph.wuerthner@de.ibm.com
4950M: linux390@de.ibm.com
4951L: linux-s390@vger.kernel.org
4952S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004953F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004954
Heiko Carstens5238da42006-02-11 17:56:01 -08004955S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004956P: Christof Schmitt
4957M: christof.schmitt@de.ibm.com
4958P: Martin Peschke
4959M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004960M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004961L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004962W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004964F: Documentation/s390/zfcpdump.txt
4965F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
Ursula Braundd96df22007-09-19 13:09:02 +02004967S390 IUCV NETWORK LAYER
4968P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004969M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004970M: linux390@de.ibm.com
4971L: linux-s390@vger.kernel.org
4972W: http://www.ibm.com/developerworks/linux/linux390/
4973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004974F: drivers/s390/net/*iucv*
4975F: include/net/iucv/
4976F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004977
Ben Dooks4dde7f72008-06-30 22:40:38 +01004978S3C24XX SD/MMC Driver
4979P: Ben Dooks
4980M: ben-linux@fluff.org
4981L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004982S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004983F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004984
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985SAA7146 VIDEO4LINUX-2 DRIVER
4986P: Michael Hunold
4987M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004988L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004989T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990W: http://www.mihu.de/linux/saa7146
4991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004992F: drivers/media/common/saa7146*
4993F: drivers/media/video/*7146*
4994F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996SC1200 WDT DRIVER
4997P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004998M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005000F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001
5002SCHEDULER
5003P: Ingo Molnar
5004M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02005005P: Peter Zijlstra
5006M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005008F: kernel/sched*
5009F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
5011SCSI CDROM DRIVER
5012P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005013M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014L: linux-scsi@vger.kernel.org
5015W: http://www.kernel.dk
5016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005017F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018
5019SCSI SG DRIVER
5020P: Doug Gilbert
5021M: dgilbert@interlog.com
5022L: linux-scsi@vger.kernel.org
5023W: http://www.torque.net/sg
5024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005025F: drivers/scsi/sg.c
5026F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
5028SCSI SUBSYSTEM
5029P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05005030M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005032T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5033T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5034T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005036F: drivers/scsi/
5037F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02005040P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041M: Kai.Makisara@kolumbus.fi
5042L: linux-scsi@vger.kernel.org
5043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: Documentation/scsi/st.txt
5045F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005048P: Vlad Yasevich
5049M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01005050P: Sridhar Samudrala
5051M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07005052L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005053W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005054S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005055F: Documentation/networking/sctp.txt
5056F: include/linux/sctp.h
5057F: include/net/sctp/
5058F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
5060SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07005061P: Jim Cromie
5062M: jim.cromie@gmail.com
5063S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005064F: Documentation/i2c/busses/scx200_acb
5065F: arch/x86/kernel/scx200_32.c
5066F: drivers/watchdog/scx200_wdt.c
5067F: drivers/i2c/busses/scx200*
5068F: drivers/mtd/maps/scx200_docflash.c
5069F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005070
5071SCx200 GPIO DRIVER
5072P: Jim Cromie
5073M: jim.cromie@gmail.com
5074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005075F: drivers/char/scx200_gpio.c
5076F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005077
5078SCx200 HRT CLOCKSOURCE DRIVER
5079P: Jim Cromie
5080M: jim.cromie@gmail.com
5081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005082F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
Sascha Sommer6a369132008-07-15 14:21:29 +02005084SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
5085P: Sascha Sommer
5086M: saschasommer@freenet.de
5087L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005089F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005090
Randy Dunlape7839f22008-10-12 16:11:45 -07005091SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005092P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005093M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005094L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005095S: Maintained
5096
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005097SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5098P: Anton Vorontsov
5099M: avorontsov@ru.mvista.com
5100L: linuxppc-dev@ozlabs.org
5101L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005103F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
James Morris8711cca2008-12-04 03:19:45 +11005105SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005106P: James Morris
5107M: jmorris@namei.org
James Morris8711cca2008-12-04 03:19:45 +11005108L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005109T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005110W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005111S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005112F: security/
James Morris8711cca2008-12-04 03:19:45 +11005113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114SECURITY CONTACT
5115P: Security Officers
5116M: security@kernel.org
5117S: Supported
5118
5119SELINUX SECURITY MODULE
5120P: Stephen Smalley
5121M: sds@tycho.nsa.gov
5122P: James Morris
5123M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005124P: Eric Paris
5125M: eparis@parisplace.org
Joe Perches7d2c86b2009-04-07 20:59:01 -07005126L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005127W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005128T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005130F: include/linux/selinux*
5131F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
Jiri Slabycef2cf02007-05-08 00:31:45 -07005133SENSABLE PHANTOM
5134P: Jiri Slaby
5135M: jirislaby@gmail.com
5136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: drivers/misc/phantom.c
5138F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005139
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005140SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005141P: Jeff Garzik
5142M: jgarzik@pobox.com
5143L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005144T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005146F: drivers/ata/
5147F: include/linux/ata.h
5148F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005150SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5151P: Sathya Perla
5152M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005153P: Subbu Seetharaman
5154M: subbus@serverengines.com
5155L: netdev@vger.kernel.org
5156W: http://www.serverengines.com
5157S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005158F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005159
Ben Hutchings8ceee662008-04-27 12:55:59 +01005160SFC NETWORK DRIVER
5161P: Steve Hodgson
5162P: Ben Hutchings
5163P: Robert Stonehouse
5164M: linux-net-drivers@solarflare.com
5165S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005166F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005167
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005168SGI GRU DRIVER
5169P: Jack Steiner
5170M: steiner@sgi.com
5171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005172F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005173
5174SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5175P: Pat Gefre
5176M: pfg@sgi.com
5177L: linux-ia64@vger.kernel.org
5178S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005179F: Documentation/ia64/serial.txt
5180F: drivers/serial/ioc?_serial.c
5181F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005182
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183SGI VISUAL WORKSTATION 320 AND 540
5184P: Andrey Panin
5185M: pazke@donpac.ru
5186L: linux-visws-devel@lists.sf.net
5187W: http://linux-visws.sf.net
5188S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005189F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Jack Steiner75312612008-08-15 00:40:42 -07005191SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005192P: Robin Holt
5193M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005195F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005196
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005197SHARP LH SUPPORT (LH7952X & LH7A40X)
5198P: Marc Singer
5199M: elf@buici.com
5200W: http://projects.buici.com/arm
5201L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005203F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5204F: arch/arm/mach-lh7a40x/
5205F: drivers/serial/serial_lh7a40x.c
5206F: drivers/usb/gadget/lh7a40*
5207F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005208
5209SHPC HOTPLUG DRIVER
5210P: Kristen Carlson Accardi
5211M: kristen.c.accardi@intel.com
5212L: linux-pci@vger.kernel.org
5213S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005214F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005215
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216SIMTEC EB110ATX (Chalice CATS)
5217P: Ben Dooks
5218P: Vincent Sanders
5219M: support@simtec.co.uk
5220W: http://www.simtec.co.uk/products/EB110ATX/
5221S: Supported
5222
5223SIMTEC EB2410ITX (BAST)
5224P: Ben Dooks
5225P: Vincent Sanders
5226M: support@simtec.co.uk
5227W: http://www.simtec.co.uk/products/EB2410ITX/
5228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005229F: arch/arm/mach-s3c2410/
5230F: drivers/*/*s3c2410*
5231F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232
Francois Romieu92aab3c2005-07-30 13:11:18 +02005233SIS 190 ETHERNET DRIVER
5234P: Francois Romieu
5235M: romieu@fr.zoreil.com
5236L: netdev@vger.kernel.org
5237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005238F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005239
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240SIS 900/7016 FAST ETHERNET DRIVER
5241P: Daniele Venzano
5242M: venza@brownhat.org
5243W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005244L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005246F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005248SIS 96X I2C/SMBUS DRIVER
5249P: Mark M. Hoffman
5250M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005251L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005252S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005253F: Documentation/i2c/busses/i2c-sis96x
5254F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005255
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256SIS FRAMEBUFFER DRIVER
5257P: Thomas Winischhofer
5258M: thomas@winischhofer.net
5259W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005260S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005261F: Documentation/fb/sisfb.txt
5262F: drivers/video/sis/
5263F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
5265SIS USB2VGA DRIVER
5266P: Thomas Winischhofer
5267M: thomas@winischhofer.net
5268W: http://www.winischhofer.at/linuxsisusbvga.shtml
5269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005270F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005272SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5273P: Stephen Hemminger
5274M: shemminger@linux-foundation.org
5275L: netdev@vger.kernel.org
5276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005277F: drivers/net/skge.*
5278F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005279
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005280SLAB ALLOCATOR
5281P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005282M: cl@linux-foundation.org
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005283P: Pekka Enberg
5284M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005285P: Matt Mackall
5286M: mpm@selenic.com
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005287L: linux-mm@kvack.org
5288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005289F: include/linux/sl?b*.h
5290F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005291
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292SMC91x ETHERNET DRIVER
5293P: Nicolas Pitre
5294M: nico@cam.org
5295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005296F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005298SMSC47B397 HARDWARE MONITOR DRIVER
5299P: Mark M. Hoffman
5300M: mhoffman@lightlink.com
5301L: lm-sensors@lm-sensors.org
5302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005303F: Documentation/hwmon/smsc47b397
5304F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005305
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005306SMSC911x ETHERNET DRIVER
5307P: Steve Glendinning
5308M: steve.glendinning@smsc.com
5309L: netdev@vger.kernel.org
5310S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005311F: include/linux/smsc911x.h
5312F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005313
Steve Glendinning2cb37722008-12-11 20:54:30 -08005314SMSC9420 PCI ETHERNET DRIVER
5315P: Steve Glendinning
5316M: steve.glendinning@smsc.com
5317L: netdev@vger.kernel.org
5318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005319F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005320
Ben Nizetteb54f2862008-03-13 22:27:30 +11005321SMX UIO Interface
5322P: Ben Nizette
5323M: bn@niasdigital.com
5324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005325F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005326
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005327SN-IA64 (Itanium) SUB-PLATFORM
5328P: Jes Sorensen
5329M: jes@sgi.com
5330L: linux-altix@sgi.com
5331L: linux-ia64@vger.kernel.org
5332W: http://www.sgi.com/altix
5333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005334F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005335
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005336SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005337P: Guennadi Liakhovetski
5338M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005339L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005340T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005341S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005342F: include/media/v4l2*
5343F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005344
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005345SOEKRIS NET48XX LED SUPPORT
5346P: Chris Boot
5347M: bootc@bootc.net
5348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005349F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005353M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005355S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005356F: drivers/md/
5357F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359SONIC NETWORK DRIVER
5360P: Thomas Bogendoerfer
5361M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005362L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005364F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Michael Buesch61e115a2007-09-18 15:12:50 -04005366SONICS SILICON BACKPLANE DRIVER (SSB)
5367P: Michael Buesch
5368M: mb@bu3sch.de
5369L: netdev@vger.kernel.org
5370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005371F: drivers/ssb/
5372F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005373
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005375P: Mattia Dongili
5376M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005377L: linux-acpi@vger.kernel.org
5378W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: Documentation/laptops/sony-laptop.txt
5381F: drivers/char/sonypi.c
5382F: drivers/platform/x86/sony-laptop.c
5383F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384
Alex Dubovbaf85322008-02-09 10:20:54 -08005385SONY MEMORYSTICK CARD SUPPORT
5386P: Alex Dubov
5387M: oakad@yahoo.com
Alex Dubovbaf85322008-02-09 10:20:54 -08005388W: http://tifmxx.berlios.de/
5389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005390F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005391
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392SOUND
5393P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005394M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005395P: Takashi Iwai
5396M: tiwai@suse.de
Joe Perches93711662009-06-16 15:34:07 -07005397L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005398W: http://www.alsa-project.org/
5399T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5400T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005402F: Documentation/sound/
5403F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005404F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
Mark Brownbd903bd2008-11-19 19:16:05 +00005406SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005407P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005408M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005409P: Mark Brown
5410M: broonie@opensource.wolfsonmicro.com
Mark Brownbb74a6e2009-05-13 17:23:54 +01005411T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005412L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005413W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005414S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005415F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005416F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005417
Sam Ravnborg473321f2009-01-04 15:47:49 -08005418SPARC + UltraSPARC (sparc/sparc64)
5419P: David S. Miller
5420M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005422T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5423T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005425F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
5427SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5428P: Roger Wolff
5429M: R.E.Wolff@BitWizard.nl
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005431F: Documentation/serial/specialix.txt
5432F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005434SPI SUBSYSTEM
5435P: David Brownell
5436M: dbrownell@users.sourceforge.net
5437L: spi-devel-general@lists.sourceforge.net
5438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005439F: Documentation/spi/
5440F: drivers/spi/
5441F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005442
Jim Lewis2752e402006-09-29 02:01:19 -07005443SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005444P: Ishizaki Kou
5445M: kou.ishizaki@toshiba.co.jp
5446P: Jens Osterkamp
5447M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005448L: netdev@vger.kernel.org
5449S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005450F: Documentation/networking/spider_net.txt
5451F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005452
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005453SPU FILE SYSTEM
5454P: Jeremy Kerr
5455M: jk@ozlabs.org
5456L: linuxppc-dev@ozlabs.org
5457L: cbe-oss-dev@ozlabs.org
5458W: http://www.ibm.com/developerworks/power/cell/
5459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005460F: Documentation/filesystems/spufs.txt
5461F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005462
Phillip Lougherfc555842009-01-05 08:46:29 +00005463SQUASHFS FILE SYSTEM
5464P: Phillip Lougher
5465M: phillip@lougher.demon.co.uk
5466L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5467W: http://squashfs.org.uk
5468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005469F: Documentation/filesystems/squashfs.txt
5470F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005471
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472SRM (Alpha) environment access
5473P: Jan-Benedict Glaw
5474M: jbglaw@lug-owl.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005476F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477
Linus Torvalds26e9a392008-10-17 09:50:12 -07005478STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005479P: Greg Kroah-Hartman
5480M: greg@kroah.com
5481P: Chris Wright
5482M: chrisw@sous-sol.org
5483L: stable@kernel.org
5484S: Maintained
5485
Linus Torvalds26e9a392008-10-17 09:50:12 -07005486STAGING SUBSYSTEM
5487P: Greg Kroah-Hartman
5488M: gregkh@suse.de
Linus Torvalds26e9a392008-10-17 09:50:12 -07005489T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005491F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005492
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493STARFIRE/DURALAN NETWORK DRIVER
5494P: Ion Badulescu
5495M: ionut@cs.columbia.edu
5496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005498
5499STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5500W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005501S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005502F: drivers/net/wireless/strip.c
5503F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
5505STRADIS MPEG-2 DECODER DRIVER
5506P: Nathan Laredo
5507M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508W: http://www.stradis.com/
5509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005510F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005512SUN3/3X
5513P: Sam Creasey
5514M: sammy@sammy.net
5515W: http://sammy.net/sun3/
5516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005517F: arch/m68k/kernel/*sun3*
5518F: arch/m68k/sun3*/
5519F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005520
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005521SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522P: Paul Mundt
5523M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005524L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005526T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005527S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005528F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005529F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005530F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005532SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005533P: Len Brown
5534M: len.brown@intel.com
5535P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005536M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005537P: Rafael J. Wysocki
5538M: rjw@sisk.pl
5539L: linux-pm@lists.linux-foundation.org
5540S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005541F: Documentation/power/
5542F: arch/x86/kernel/acpi/
5543F: drivers/base/power/
5544F: kernel/power/
5545F: include/linux/suspend.h
5546F: include/linux/freezer.h
5547F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
5549SVGA HANDLING
5550P: Martin Mares
5551M: mj@ucw.cz
5552L: linux-video@atrey.karlin.mff.cuni.cz
5553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005554F: Documentation/svga.txt
5555F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
5557SYSV FILESYSTEM
5558P: Christoph Hellwig
5559M: hch@infradead.org
5560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: Documentation/filesystems/sysv-fs.txt
5562F: fs/sysv/
5563F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
Alan Cox4e688522008-04-30 00:52:11 -07005565TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005566P: Balbir Singh
5567M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/accounting/taskstats*
5570F: include/linux/taskstats*
5571F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005572
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005573TC CLASSIFIER
5574P: Jamal Hadi Salim
5575M: hadi@cyberus.ca
5576L: netdev@vger.kernel.org
5577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005578F: include/linux/pkt_cls.h
5579F: include/net/pkt_cls.h
5580F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005581
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005582TCP LOW PRIORITY MODULE
5583P: Wong Hoi Sing, Edison
5584M: hswong3i@gmail.com
5585P: Hung Hing Lun, Mike
5586M: hlhung3i@gmail.com
5587W: http://tcp-lp-mod.sourceforge.net/
5588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005590
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005591TEHUTI ETHERNET DRIVER
5592P: Alexander Indenbaum
5593M: baum@tehutinetworks.net
5594P: Andy Gospodarek
5595M: andy@greyhouse.net
5596L: netdev@vger.kernel.org
5597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005598F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005599
Alan Cox4e688522008-04-30 00:52:11 -07005600Telecom Clock Driver for MCPL0010
5601P: Mark Gross
5602M: mark.gross@intel.com
5603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005604F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005605
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005606TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005607P: Chris Zankel
5608M: chris@zankel.net
5609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005610F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005611
5612THINKPAD ACPI EXTRAS DRIVER
5613P: Henrique de Moraes Holschuh
5614M: ibm-acpi@hmh.eng.br
5615L: ibm-acpi-devel@lists.sourceforge.net
5616W: http://ibm-acpi.sourceforge.net
5617W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005618T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005620F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005621
Alex Dubov4020f2d2006-10-04 02:15:37 -07005622TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005623P: Alex Dubov
5624M: oakad@yahoo.com
5625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005626F: drivers/misc/tifm*
5627F: drivers/mmc/host/tifm_sd.c
5628F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005629
Per Lidene86eaa32006-01-12 16:45:18 +01005630TIPC NETWORK LAYER
5631P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005632M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005633P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005634M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005635P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005636M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005637L: tipc-discussion@lists.sourceforge.net
5638W: http://tipc.sourceforge.net/
5639W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005640T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005642F: include/linux/tipc*.h
5643F: include/net/tipc/
5644F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005645
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646TLAN NETWORK DRIVER
5647P: Samuel Chessman
5648M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005649L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650W: http://sourceforge.net/projects/tlan/
5651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005652F: Documentation/networking/tlan.txt
5653F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005655TOMOYO SECURITY MODULE
5656P: Kentaro Takeda
5657M: takedakn@nttdata.co.jp
5658P: Tetsuo Handa
5659M: penguin-kernel@I-love.SAKURA.ne.jp
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005660L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5661L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5662L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5663W: http://tomoyo.sourceforge.jp/
5664T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005666F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005667
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005669S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005670F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671
5672TOSHIBA SMM DRIVER
5673P: Jonathan Buzzard
5674M: jonathan@buzzard.org.uk
5675L: tlinux-users@tce.toshiba-dme.co.jp
5676W: http://www.buzzard.org.uk/toshiba/
5677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005678F: drivers/char/toshiba.c
5679F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Pierre Ossmand719f902009-03-24 21:06:09 +01005681TMIO MMC DRIVER
5682P: Ian Molton
5683M: ian@mnementh.co.uk
5684S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005685F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005686
Hugh Dickins98f32602009-05-21 20:33:58 +01005687TMPFS (SHMEM FILESYSTEM)
5688P: Hugh Dickins
5689M: hugh.dickins@tiscali.co.uk
5690L: linux-mm@kvack.org
5691S: Maintained
5692F: include/linux/shmem_fs.h
5693F: mm/shmem.c
5694
Alan Cox4e688522008-04-30 00:52:11 -07005695TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005696P: Debora Velarde
5697M: debora@linux.vnet.ibm.com
5698P: Rajiv Andrade
5699M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005700W: http://tpmdd.sourceforge.net
5701P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005702M: m.selhorst@sirrix.com
5703W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005704L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005706F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005707
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005709P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005710M: trivial@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005711T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712S: Maintained
Joe Perches130b76c2009-06-16 15:34:10 -07005713F: drivers/char/tty_*
5714F: drivers/serial/serial_core.c
5715F: include/linux/serial_core.h
5716F: include/linux/serial.h
5717F: include/linux/tty.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
Alan Cox4e688522008-04-30 00:52:11 -07005719TTY LAYER
5720P: Alan Cox
5721M: alan@lxorguk.ukuu.org.uk
Alan Cox4e688522008-04-30 00:52:11 -07005722S: Maintained
Alan Coxe960bf72009-06-11 14:04:57 +01005723T: stgit http://zeniv.linux.org.uk/~alan/ttydev/
Alan Cox4e688522008-04-30 00:52:11 -07005724
Grant Grundler740db6d2008-02-17 11:53:49 -07005725TULIP NETWORK DRIVERS
5726P: Grant Grundler
5727M: grundler@parisc-linux.org
5728P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005729M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005730L: netdev@vger.kernel.org
5731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005732F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733
5734TUN/TAP driver
5735P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005736M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737L: vtun@office.satix.net
5738W: http://vtun.sourceforge.net/tun
5739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005740F: Documentation/networking/tuntap.txt
5741F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005743TURBOCHANNEL SUBSYSTEM
5744P: Maciej W. Rozycki
5745M: macro@linux-mips.org
5746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005747F: drivers/tc/
5748F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005749
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750U14-34F SCSI DRIVER
5751P: Dario Ballabio
5752M: ballabio_dario@emc.com
5753L: linux-scsi@vger.kernel.org
5754S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005755F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005757UBI FILE SYSTEM (UBIFS)
5758P: Artem Bityutskiy
5759M: dedekind@infradead.org
5760P: Adrian Hunter
5761M: ext-adrian.hunter@nokia.com
5762L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005763T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005764W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5765S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005766F: Documentation/filesystems/ubifs.txt
5767F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005768
Alan Coxcc2020e2008-05-19 14:21:51 +01005769UCLINUX (AND M68KNOMMU)
5770P: Greg Ungerer
5771M: gerg@uclinux.org
5772W: http://www.uclinux.org/
5773L: uclinux-dev@uclinux.org (subscribers-only)
5774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005775F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005776
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005777UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005778P: Yoshinori Sato
5779M: ysato@users.sourceforge.jp
5780W: http://uclinux-h8.sourceforge.jp/
5781S: Supported
5782
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005784P: Jan Kara
5785M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786W: http://linux-udf.sourceforge.net
5787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: Documentation/filesystems/udf.txt
5789F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790
Alan Coxcc2020e2008-05-19 14:21:51 +01005791UFS FILESYSTEM
5792P: Evgeniy Dushistov
5793M: dushistov@mail.ru
Alan Coxcc2020e2008-05-19 14:21:51 +01005794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005795F: Documentation/filesystems/ufs.txt
5796F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005797
David Vrabel18332a82008-09-17 16:34:44 +01005798ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5799P: David Vrabel
5800M: david.vrabel@csr.com
5801L: linux-usb@vger.kernel.org
5802S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005803F: drivers/uwb/*
5804F: include/linux/uwb.h
5805F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807UNIFORM CDROM DRIVER
5808P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005809M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810W: http://www.kernel.dk
5811S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005812F: Documentation/cdrom/
5813F: drivers/cdrom/cdrom.c
5814F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005816UNSORTED BLOCK IMAGES (UBI)
5817P: Artem Bityutskiy
5818M: dedekind@infradead.org
5819W: http://www.linux-mtd.infradead.org/
5820L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005821T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005822S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005823F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005824F: include/linux/mtd/ubi.h
5825F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005826
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827USB ACM DRIVER
5828P: Oliver Neukum
5829M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005830L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005832F: Documentation/usb/acm.txt
5833F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834
5835USB BLOCK DRIVER (UB ub)
5836P: Pete Zaitcev
5837M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005838L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005840F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842USB CDC ETHERNET DRIVER
5843P: Greg Kroah-Hartman
5844M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005845L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846S: Maintained
5847W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005848F: drivers/net/usb/cdc_*.c
5849F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005851USB CYPRESS C67X00 DRIVER
5852P: Peter Korsgaard
5853M: jacmet@sunsite.dk
5854L: linux-usb@vger.kernel.org
5855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005856F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005857
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005858USB DAVICOM DM9601 DRIVER
5859P: Peter Korsgaard
5860M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005861L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005862W: http://www.linux-usb.org/usbnet
5863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005864F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005865
Alan Coxcc2020e2008-05-19 14:21:51 +01005866USB DIAMOND RIO500 DRIVER
5867P: Cesar Miquel
5868M: miquel@df.uba.ar
5869L: rio500-users@lists.sourceforge.net
5870W: http://rio500.sourceforge.net
5871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005872F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005873
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874USB EHCI DRIVER
5875P: David Brownell
5876M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005877L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005878S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005879F: Documentation/usb/ehci.txt
5880F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005881
Luca Risolia7ce08c92006-01-11 02:06:59 +00005882USB ET61X[12]51 DRIVER
5883P: Luca Risolia
5884M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005885L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005886L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005887T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005888W: http://www.linux-projects.org
5889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005890F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005891
David Brownell69ae9e32006-11-14 02:03:31 -08005892USB GADGET/PERIPHERAL SUBSYSTEM
5893P: David Brownell
5894M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005895L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005896W: http://www.linux-usb.org/gadget
5897S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005898F: drivers/usb/gadget/
5899F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005900
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005901USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266fd2007-01-15 09:56:21 +01005902P: Jiri Kosina
5903M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005904L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005905T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005907F: Documentation/usb/hiddev.txt
5908F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Olav Kongas959eea22005-11-03 17:38:14 +02005910USB ISP116X DRIVER
5911P: Olav Kongas
5912M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005913L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005915F: drivers/usb/host/isp116x*
5916F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005917
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918USB KAWASAKI LSI DRIVER
5919P: Oliver Neukum
5920M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005921L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005923F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924
5925USB MASS STORAGE DRIVER
5926P: Matthew Dharm
5927M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005928L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005929L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005930S: Maintained
5931W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005932F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933
5934USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005935P: David Brownell
5936M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005937L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005938S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005939F: Documentation/usb/ohci.txt
5940F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
Matthias Urlichsba460e42005-07-14 00:33:47 -07005942USB OPTION-CARD DRIVER
5943P: Matthias Urlichs
5944M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005945L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005947F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005948
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949USB OV511 DRIVER
5950P: Mark McClelland
5951M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005952L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953W: http://alpha.dyndns.org/ov511/
5954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005955F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
5957USB PEGASUS DRIVER
5958P: Petko Manolov
5959M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005960L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005961L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962W: http://pegasus2.sourceforge.net/
5963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005966USB PRINTER DRIVER (usblp)
5967P: Pete Zaitcev
5968M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005969L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005970S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005971F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
5973USB RTL8150 DRIVER
5974P: Petko Manolov
5975M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005976L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005977L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978W: http://pegasus2.sourceforge.net/
5979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981
5982USB SE401 DRIVER
5983P: Jeroen Vreeken
5984M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005985L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986W: http://www.chello.nl/~j.vreeken/se401/
5987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005988F: Documentation/video4linux/se401.txt
5989F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990
Alan Cox4e688522008-04-30 00:52:11 -07005991USB SERIAL BELKIN F5U103 DRIVER
5992P: William Greathouse
5993M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005994L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005996F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005997
5998USB SERIAL CYPRESS M8 DRIVER
5999P: Lonnie Mendez
6000M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006001L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006002S: Maintained
6003W: http://geocities.com/i0xox0i
6004W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006006
Linus Torvalds1da177e2005-04-16 15:20:36 -07006007USB SERIAL CYBERJACK DRIVER
6008P: Matthias Bruestle and Harald Welte
6009M: support@reiner-sct.com
6010W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013
6014USB SERIAL DIGI ACCELEPORT DRIVER
6015P: Peter Berger and Al Borchers
6016M: pberger@brimson.com
6017M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006018L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021
6022USB SERIAL DRIVER
6023P: Greg Kroah-Hartman
6024M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006025L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006027F: Documentation/usb/usb-serial.txt
6028F: drivers/usb/serial/generic.c
6029F: drivers/usb/serial/usb-serial.c
6030F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
6033P: Gary Brubaker
6034M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006035L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006037F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038
6039USB SERIAL KEYSPAN DRIVER
6040P: Greg Kroah-Hartman
6041M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006042L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043W: http://www.kroah.com/linux/
6044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006045F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
6047USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04006048P: Support Department
6049M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006050L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051W: http://www.connecttech.com
6052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006053F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006055USB SMSC95XX ETHERNET DRIVER
6056P: Steve Glendinning
6057M: steve.glendinning@smsc.com
6058L: netdev@vger.kernel.org
6059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006060F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006061
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006062USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063P: Luca Risolia
6064M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006065L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006066L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006067T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006068W: http://www.linux-projects.org
6069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006070F: Documentation/video4linux/sn9c102.txt
6071F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072
6073USB SUBSYSTEM
6074P: Greg Kroah-Hartman
6075M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006076L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006078T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006080F: Documentation/usb/
6081F: drivers/net/usb/
6082F: drivers/usb/
6083F: include/linux/usb.h
6084F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006085
6086USB UHCI DRIVER
6087P: Alan Stern
6088M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006089L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006091F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092
David Brownell69ae9e32006-11-14 02:03:31 -08006093USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094P: David Brownell
6095M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006096L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006097W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: drivers/net/usb/usbnet.c
6100F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006102USB VIDEO CLASS
6103P: Laurent Pinchart
6104M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006105L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006106L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006107T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006108W: http://linux-uvc.berlios.de
6109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006110F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006111
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112USB W996[87]CF DRIVER
6113P: Luca Risolia
6114M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006115L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006116L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006117T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118W: http://www.linux-projects.org
6119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006120F: Documentation/video4linux/w9968cf.txt
6121F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006123USB WIRELESS RNDIS DRIVER (rndis_wlan)
6124P: Jussi Kivilinna
6125M: jussi.kivilinna@mbnet.fi
6126L: linux-wireless@vger.kernel.org
6127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006128F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006129
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006130USB XHCI DRIVER
6131P: Sarah Sharp
6132M: sarah.a.sharp@intel.com
6133L: linux-usb@vger.kernel.org
6134S: Supported
6135
Luca Risolia60f78052006-02-06 16:29:35 +00006136USB ZC0301 DRIVER
6137P: Luca Risolia
6138M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006139L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006140L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006141T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006142W: http://www.linux-projects.org
6143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006144F: Documentation/video4linux/zc0301.txt
6145F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006146
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147USB ZD1201 DRIVER
6148P: Jeroen Vreeken
6149M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006150L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151W: http://linux-lc100020.sourceforge.net
6152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006153F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006155USB ZR364XX DRIVER
6156P: Antoine Jacquet
6157M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006158L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006159L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006160T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006161W: http://royale.zerezo.com/zr364xx/
6162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006163F: Documentation/video4linux/zr364xx.txt
6164F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006165
Randy Dunlape7839f22008-10-12 16:11:45 -07006166USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006168M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169L: user-mode-linux-devel@lists.sourceforge.net
6170L: user-mode-linux-user@lists.sourceforge.net
6171W: http://user-mode-linux.sourceforge.net
6172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006173F: Documentation/uml/
6174F: arch/um/
6175F: fs/hostfs/
6176F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006177
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006178USERSPACE I/O (UIO)
6179P: Hans J. Koch
6180M: hjk@linutronix.de
6181P: Greg Kroah-Hartman
6182M: gregkh@suse.de
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006184F: Documentation/DocBook/uio-howto.tmpl
6185F: drivers/uio/
6186F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006187
Karel Zakf899b0a2008-05-23 13:04:21 -07006188UTIL-LINUX-NG PACKAGE
6189P: Karel Zak
6190M: kzak@redhat.com
6191L: util-linux-ng@vger.kernel.org
6192W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006193T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006194S: Maintained
6195
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006196UVESAFB DRIVER
6197P: Michal Januszewski
6198M: spock@gentoo.org
6199L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6200W: http://dev.gentoo.org/~spock/projects/uvesafb/
6201S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006202F: Documentation/fb/uvesafb.txt
6203F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006204
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006205VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206P: OGAWA Hirofumi
6207M: hirofumi@mail.parknet.co.jp
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006209F: Documentation/filesystems/vfat.txt
6210F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212VIA RHINE NETWORK DRIVER
6213P: Roger Luethi
6214M: rl@hellgate.ch
6215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006216F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
Jean Delvare32c0a522005-09-22 21:47:58 +02006218VIAPRO SMBUS DRIVER
6219P: Jean Delvare
6220M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006221L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006223F: Documentation/i2c/busses/i2c-viapro
6224F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006225
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006226VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6227P: Joseph Chan
6228M: JosephChan@via.com.tw
6229P: Scott Fang
6230M: ScottFang@viatech.com.cn
6231L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006233F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006234
Francois Romieu01f20732007-01-26 00:57:17 -08006235VIA VELOCITY NETWORK DRIVER
6236P: Francois Romieu
6237M: romieu@fr.zoreil.com
6238L: netdev@vger.kernel.org
6239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006240F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
Patrick McHardybe7f8272007-10-23 20:26:36 -07006242VLAN (802.1Q)
6243P: Patrick McHardy
6244M: kaber@trash.net
6245L: netdev@vger.kernel.org
6246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006247F: drivers/net/macvlan.c
6248F: include/linux/if_*vlan.h
6249F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006250
Florian Fainelli55e331c2009-06-16 15:33:53 -07006251VLYNQ BUS
6252P: Florian Fainelli
6253M: florian@openwrt.org
6254L: openwrt-devel@lists.openwrt.org
6255S: Maintained
6256F: drivers/vlynq/vlynq.c
6257F: include/linux/vlynq.h
6258
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006259VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6260P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006261M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006262P: Mark Brown
6263M: broonie@opensource.wolfsonmicro.com
6264W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006265W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006266T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006268F: drivers/regulator/
6269F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006270
Juerg Haefligerab413192006-09-24 20:54:04 +02006271VT1211 HARDWARE MONITOR DRIVER
6272P: Juerg Haefliger
6273M: juergh@gmail.com
6274L: lm-sensors@lm-sensors.org
6275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006276F: Documentation/hwmon/vt1211
6277F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006278
Roger Lucas1de9e372005-11-26 20:20:05 +01006279VT8231 HARDWARE MONITOR DRIVER
6280P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006281M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006282L: lm-sensors@lm-sensors.org
6283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006284F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286W1 DALLAS'S 1-WIRE BUS
6287P: Evgeniy Polyakov
6288M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006290F: Documentation/w1/
6291F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
Charles Spirakis13927072006-07-05 18:05:15 +02006293W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006294P: Marc Hulsman
6295M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006296L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006298F: Documentation/hwmon/w83791d
6299F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006300
Rudolf Marek61db0112006-12-12 18:18:30 +01006301W83793 HARDWARE MONITORING DRIVER
6302P: Rudolf Marek
6303M: r.marek@assembler.cz
6304L: lm-sensors@lm-sensors.org
6305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006306F: Documentation/hwmon/w83793
6307F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006308
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309W83L51xD SD/MMC CARD INTERFACE DRIVER
6310P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006311M: pierre@ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006313F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006315WATCHDOG DEVICE DRIVERS
6316P: Wim Van Sebroeck
6317M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006318T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: Documentation/watchdog/
6321F: drivers/watchdog/
6322F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006323
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6325P: Jean Tourrilhes
6326M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006327L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006330F: Documentation/networking/wavelan.txt
6331F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332
6333WD7000 SCSI DRIVER
6334P: Miroslav Zagorac
6335M: zaga@fly.cc.fer.hr
6336L: linux-scsi@vger.kernel.org
6337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006338F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006340WIMAX STACK
6341P: Inaky Perez-Gonzalez
6342M: inaky.perez-gonzalez@intel.com
6343M: linux-wimax@intel.com
6344L: wimax@linuxwimax.org
6345S: Supported
6346W: http://linuxwimax.org
6347
David Vrabel18332a82008-09-17 16:34:44 +01006348WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6349P: David Vrabel
6350M: david.vrabel@csr.com
6351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006352F: include/linux/wlp.h
6353F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006354
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006355WISTRON LAPTOP BUTTON DRIVER
6356P: Miloslav Trmac
6357M: mitr@volny.cz
6358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006359F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006360
Linus Torvalds1da177e2005-04-16 15:20:36 -07006361WL3501 WIRELESS PCMCIA CARD DRIVER
6362P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006363M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006364L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006365W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368
Mark Brownfebf1df2008-04-02 00:51:09 -04006369WM97XX TOUCHSCREEN DRIVERS
6370P: Mark Brown
6371M: broonie@opensource.wolfsonmicro.com
6372P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006373M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006374L: linux-input@vger.kernel.org
6375T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6376W: http://opensource.wolfsonmicro.com/node/7
6377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006378F: drivers/input/touchscreen/*wm97*
6379F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006380
Linus Torvalds1da177e2005-04-16 15:20:36 -07006381X.25 NETWORK LAYER
6382P: Henner Eisen
6383M: eis@baty.hanse.de
6384L: linux-x25@vger.kernel.org
6385S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006386F: Documentation/networking/x25*
6387F: include/net/x25*
6388F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006390X86 ARCHITECTURE (32-BIT AND 64-BIT)
6391P: Thomas Gleixner
6392M: tglx@linutronix.de
6393P: Ingo Molnar
6394M: mingo@redhat.com
6395P: H. Peter Anvin
6396M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006397M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006398T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006400F: Documentation/x86/
6401F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006402
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006403XEN HYPERVISOR INTERFACE
6404P: Jeremy Fitzhardinge
6405M: jeremy@xensource.com
6406P: Chris Wright
6407M: chrisw@sous-sol.org
6408L: virtualization@lists.osdl.org
6409L: xen-devel@lists.xensource.com
6410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006411F: arch/x86/xen/
6412F: drivers/*/xen-*front.c
6413F: drivers/xen/
6414F: arch/x86/include/asm/xen/
6415F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006416
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417XFS FILESYSTEM
6418P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006419P: Felix Blyakher
6420M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006422L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006424T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006426F: Documentation/filesystems/xfs.txt
6427F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006428
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006429XILINX SYSTEMACE DRIVER
6430P: Grant Likely
6431M: grant.likely@secretlab.ca
6432W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006434F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006435
Peter Korsgaard238b8722006-12-06 20:35:17 -08006436XILINX UARTLITE SERIAL DRIVER
6437P: Peter Korsgaard
6438M: jacmet@sunsite.dk
6439L: linux-serial@vger.kernel.org
6440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006441F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443YAM DRIVER FOR AX.25
6444P: Jean-Paul Roubelat
6445M: jpr@f6fbb.org
6446L: linux-hams@vger.kernel.org
6447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006448F: drivers/net/hamradio/yam*
6449F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450
Henkaf64a5e2005-10-12 15:02:56 +02006451YEALINK PHONE DRIVER
6452P: Henk Vergonet
6453M: Henk.Vergonet@gmail.com
6454L: usbb2k-api-dev@nongnu.org
6455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006456F: Documentation/input/yealink.txt
6457F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006458
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459Z8530 DRIVER FOR AX.25
6460P: Joerg Reuter
6461M: jreuter@yaina.de
6462W: http://yaina.de/jreuter/
6463W: http://www.qsl.net/dl1bke/
6464L: linux-hams@vger.kernel.org
6465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006466F: Documentation/networking/z8530drv.txt
6467F: drivers/net/hamradio/*scc.c
6468F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006470ZD1211RW WIRELESS DRIVER
6471P: Daniel Drake
6472M: dsd@gentoo.org
6473P: Ulrich Kunitz
6474M: kune@deine-taler.de
6475W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006476L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006477L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006479F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006480
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006483L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006485T: Mercurial http://linuxtv.org/hg/v4l-dvb
6486S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006487F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006489ZS DECSTATION Z85C30 SERIAL DRIVER
6490P: Maciej W. Rozycki
6491M: macro@linux-mips.org
6492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006493F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006494
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495THE REST
6496P: Linus Torvalds
Joe Perches34d03cc2009-06-16 15:34:06 -07006497M: torvalds@linux-foundation.org
6498L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006499T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006501F: *
6502F: */