blob: ad716d00bdfb75816fb8e457431277c185b32982 [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
39 PLEASE try to include any credit lines you want added with the
40 patch. It avoids people being missed off by mistake and makes
41 it easier to know who wants adding and who doesn't.
42
43 PLEASE document known bugs. If it doesn't work for everything
44 or does something very odd once a month document it.
45
Alan Coxc9ee1332006-05-20 15:00:12 -070046 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070047 of the OSDL certificate of contribution and should include a
48 Signed-off-by: line. The current version of this "Developer's
49 Certificate of Origin" (DCO) is listed in the file
50 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526. Make sure you have the right to send any changes you make. If you
53 do changes at work you may find your employer owns the patch
54 not you.
55
Alan Coxc9ee1332006-05-20 15:00:12 -0700567. When sending security related changes or reports to a maintainer
57 please Cc: security@kernel.org, especially if the maintainer
58 does not respond.
59
608. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Antoine Jacquetb7eee612007-04-27 12:30:59 -030062 -----------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64Maintainers List (try to look for most precise areas first)
65
66Note: For the hard of thinking, this list is meant to remain in alphabetical
67order. If you could add yourselves to it in alphabetical order that would be
68so much easier [Ed]
69
70P: Person
71M: Mail patches to
72L: Mailing list that is relevant to this area
73W: Web-page with status/info
Jody McIntyre50306fb2005-11-23 15:44:03 -080074T: SCM tree type and location. Type is one of: git, hg, quilt.
Randy Dunlap4501a462008-10-13 09:24:58 -070075S: Status, one of the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 Supported: Someone is actually paid to look after this.
78 Maintained: Someone actually looks after it.
79 Odd Fixes: It has a maintainer but they don't have time to do
80 much other than throw the odd patch in. See below..
81 Orphan: No current maintainer [but maybe you could take the
82 role as you write your new code].
83 Obsolete: Old code. Something tagged obsolete generally means
84 it has been replaced by a better system and you
85 should be using that.
86
Joe Perches679655d2009-04-07 20:44:32 -070087F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93X: Files and directories that are NOT maintained, same rules as F:
94 Files exclusions are tested before file matches.
95 Can be useful for excluding a specific subdirectory, for instance:
96 F: net/
97 X: net/ipv6/
98 matches all files in and below net excluding net/ipv6/
99
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003C505 NETWORK DRIVER
101P: Philip Blundell
102M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700103L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700105F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Steffen Klasserta6d89912007-08-10 14:05:27 -07001073C59X NETWORK DRIVER
108P: Steffen Klassert
109M: klassert@mathematik.tu-chemnitz.de
110L: netdev@vger.kernel.org
111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700112F: Documentation/networking/vortex.txt
113F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153CR990 NETWORK DRIVER
116P: David Dillow
117M: dave@thedillows.org
Ralf Baechle979b6c12005-06-13 14:30:40 -0700118L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700120F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001223W-9XXX SATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123P: Adam Radford
124M: linuxraid@amcc.com
125L: linux-scsi@vger.kernel.org
126W: http://www.amcc.com
127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700128F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001303W-XXXX ATA-RAID CONTROLLER DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131P: Adam Radford
132M: linuxraid@amcc.com
133L: linux-scsi@vger.kernel.org
134W: http://www.amcc.com
135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700136F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
13853C700 AND 53C700-66 SCSI DRIVER
139P: James E.J. Bottomley
140M: James.Bottomley@HansenPartnership.com
141L: linux-scsi@vger.kernel.org
142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700143F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
1456PACK NETWORK DRIVER FOR AX.25
146P: Andreas Koensgen
147M: ajk@iehk.rwth-aachen.de
148L: linux-hams@vger.kernel.org
149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700150F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528169 10/100/1000 GIGABIT ETHERNET DRIVER
153P: Francois Romieu
154M: romieu@fr.zoreil.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700157F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
1598250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Russell King353cefd2006-10-03 17:36:11 +0100162S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/serial/8250*
164F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
1668390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
167P: Paul Gortmaker
168M: p_gortmaker@yahoo.com
Ralf Baechle979b6c12005-06-13 14:30:40 -0700169L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/net/*8390*
172F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001749P FILE SYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +0100175P: Eric Van Hensbergen
176M: ericvh@gmail.com
177P: Ron Minnich
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500178M: rminnich@sandia.gov
Jim Cromiece00f852006-11-30 04:49:44 +0100179P: Latchesar Ionkov
180M: lucho@ionkov.net
181L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500182W: http://swik.net/v9fs
Joe Perches54e58812009-04-07 21:08:10 -0700183T: git git://git.kernel.org/pub/scm/linux/kernel/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700185F: Documentation/filesystems/9p.txt
186F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188A2232 SERIAL BOARD DRIVER
189P: Enver Haase
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190M: A2232@gmx.net
191L: linux-m68k@lists.linux-m68k.org
192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700193F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700195AACRAID SCSI RAID DRIVER
196P: Adaptec OEM Raid Solutions
197M: aacraid@adaptec.com
198L: linux-scsi@vger.kernel.org
199W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700201F: Documentation/scsi/aacraid.txt
202F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700204ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205P: Hans de Goede
206M: j.w.r.degoede@hhs.nl
207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200210
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211ABIT UGURU 3 HARDWARE MONITOR DRIVER
212P: Alistair John Strachan
213M: alistair@devzero.co.uk
214L: lm-sensors@lm-sensors.org
215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700216F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218ACENIC DRIVER
219P: Jes Sorensen
220M: jes@trained-monkey.org
221L: linux-acenic@sunsite.dk
222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700223F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
226P: Carlos Corbacho
227M: carlos@strangeworlds.co.uk
228L: aceracpi@googlegroups.com (subscribers-only)
229W: http://code.google.com/p/aceracpi
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Andi Kleen54cd3142008-09-04 13:30:07 +0200234P: Len Brown
Len Brown8b59a452007-01-08 19:03:28 -0500235M: lenb@kernel.org
Len Brown6968e502005-12-30 00:32:49 -0500236L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400237W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700238T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700240F: drivers/acpi/
241F: drivers/pnp/pnpacpi/
242F: include/linux/acpi.h
Len Brown8b59a452007-01-08 19:03:28 -0500243
244ACPI BATTERY DRIVERS
Len Browna4146552007-06-23 15:54:36 -0400245P: Alexey Starikovskiy
246M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500247L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300248W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700250F: drivers/acpi/battery.c
251F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500252
253ACPI EC DRIVER
254P: Alexey Starikovskiy
Len Browna4146552007-06-23 15:54:36 -0400255M: astarikovskiy@suse.de
Len Brown8b59a452007-01-08 19:03:28 -0500256L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300257W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700259F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500260
261ACPI FAN DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400262P: Zhang Rui
263M: rui.zhang@intel.com
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/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700269ACPI PCI HOTPLUG DRIVER
270P: Kristen Carlson Accardi
271M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -0700272L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -0500273S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700274F: drivers/pci/hotplug/acpi*
Len Brown8b59a452007-01-08 19:03:28 -0500275
276ACPI THERMAL DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400277P: Zhang Rui
278M: rui.zhang@intel.com
Len Brown8b59a452007-01-08 19:03:28 -0500279L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300280W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700282F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700283
Len Brown359acec2007-02-10 01:59:24 -0500284ACPI VIDEO DRIVER
Len Brown65573ee2008-06-27 11:22:46 -0400285P: Zhang Rui
Len Brown38e09d82007-10-25 17:55:59 -0400286M: rui.zhang@intel.com
Len Brown359acec2007-02-10 01:59:24 -0500287L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300288W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700290F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500291
Carlos Corbachobff431e2008-02-05 02:17:04 +0000292ACPI WMI DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200293P: Carlos Corbacho
294M: carlos@strangeworlds.co.uk
295L: linux-acpi@vger.kernel.org
296W: http://www.lesswatts.org/projects/acpi/
297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700298F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000299
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100300AD1889 ALSA SOUND DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +0200301P: Kyle McMartin
302M: kyle@mcmartin.ca
303P: Thibaut Varene
304M: T-Bone@parisc-linux.org
305W: http://wiki.parisc-linux.org/AD1889
306L: linux-parisc@vger.kernel.org
307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700308F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310ADM1025 HARDWARE MONITOR DRIVER
311P: Jean Delvare
312M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200313L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700315F: Documentation/hwmon/adm1025
316F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Corentin Labbecae2caa2007-02-14 21:15:04 +0100318ADM1029 HARDWARE MONITOR DRIVER
319P: Corentin Labbe
320M: corentin.labbe@geomatys.fr
321L: lm-sensors@lm-sensors.org
322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700323F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100324
Michael Wucc0b88c2007-08-31 01:15:25 -0400325ADM8211 WIRELESS DRIVER
326P: Michael Wu
327M: flamingice@sourmilk.net
328L: linux-wireless@vger.kernel.org
329W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700330T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700332F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334ADT746X FAN DRIVER
335P: Colin Leroy
336M: colin@colino.net
337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700338F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400340ADVANSYS SCSI DRIVER
341P: Matthew Wilcox
342M: matthew@wil.cx
343L: linux-scsi@vger.kernel.org
344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700345F: Documentation/scsi/advansys.txt
346F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348AEDSP16 DRIVER
349P: Riccardo Facchetti
350M: fizban@tin.it
351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700352F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354AFFS FILE SYSTEM
355P: Roman Zippel
356M: zippel@linux-m68k.org
357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700358F: Documentation/filesystems/affs.txt
359F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700361AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
362P: David Howells
363M: dhowells@redhat.com
364L: linux-afs@lists.infradead.org
365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700366F: fs/afs/
367F: include/net/af_rxrpc.h
368F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370AGPGART DRIVER
Dave Jones70e89922007-07-09 20:23:50 -0400371P: David Airlie
372M: airlied@linux.ie
Joe Perches54e58812009-04-07 21:08:10 -0700373T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700375F: drivers/char/agp/
376F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378AHA152X SCSI DRIVER
379P: Juergen E. Fischer
Joe Perches7d2c86b2009-04-07 20:59:01 -0700380M: fischer@norbit.de
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381L: linux-scsi@vger.kernel.org
382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700383F: drivers/scsi/aha152x*
384F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Hannes Reinecke64624d42007-10-19 10:32:29 +0200386AIC7XXX / AIC79XX SCSI DRIVER
387P: Hannes Reinecke
388M: hare@suse.de
389L: linux-scsi@vger.kernel.org
390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: drivers/scsi/aic7xxx/
392F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200393
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700394AIO
395P: Benjamin LaHaise
396M: bcrl@kvack.org
397L: linux-aio@kvack.org
398S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700399F: fs/aio.c
400F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402ALCATEL SPEEDTOUCH USB DRIVER
403P: Duncan Sands
404M: duncan.sands@free.fr
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700405L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406W: http://www.linux-usb.org/SpeedTouch/
407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700408F: drivers/usb/atm/speedtch.c
409F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Pierre Ossman272f1332007-05-14 21:25:26 +0200411ALCHEMY AU1XX0 MMC DRIVER
Manuel Lauss08fcb722008-06-09 08:40:35 +0200412P: Manuel Lauss
413M: manuel.lauss@gmail.com
414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700415F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200416
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000417ALI1563 I2C DRIVER
418P: Rudolf Marek
Jean Delvare7188cc62006-12-12 18:18:30 +0100419M: r.marek@assembler.cz
Jean Delvare846557d2008-10-30 15:55:47 +0100420L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700422F: Documentation/i2c/busses/i2c-ali1563
423F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425ALPHA PORT
426P: Richard Henderson
427M: rth@twiddle.net
428S: Odd Fixes for 2.4; Maintained for 2.6.
429P: Ivan Kokshaysky
430M: ink@jurassic.park.msu.ru
431S: Maintained for 2.4; PCI support for 2.6.
Cheng Renquana9406692009-03-31 15:23:35 -0700432L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700433F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700435AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
436P: Thomas Dahlmann
Thomas Dahlmannba944712009-05-28 14:34:30 -0700437M: dahlmann.thomas@arcor.de
Jordan Crouse67d76712008-05-12 14:02:22 -0700438L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700440F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700441
Jordan Crousef90b8112006-01-06 00:12:14 -0800442AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100443P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700444L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800445W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
446S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700447F: arch/x86/kernel/geode_32.c
448F: drivers/char/hw_random/geode-rng.c
449F: drivers/crypto/geode*
450F: drivers/video/geode/
451F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800452
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200453AMD IOMMU (AMD-VI)
454P: Joerg Roedel
455M: joerg.roedel@amd.com
456L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700457T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700459F: arch/x86/kernel/amd_iommu*.c
460F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200461
Peter Orubae7f5b302008-07-28 18:44:11 +0200462AMD MICROCODE UPDATE SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700463P: Andreas Herrmann
Randy Dunlapf403bb82009-04-13 14:39:36 -0700464M: andreas.herrmann3@amd.com
Joe Perches7d2c86b2009-04-07 20:59:01 -0700465L: amd64-microcode@amd64.org
466S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700467F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200468
Stelian Pop284f42b2006-12-12 18:18:31 +0100469AMS (Apple Motion Sensor) DRIVER
470P: Stelian Pop
471M: stelian@popies.net
472P: Michael Hanselmann
473M: linux-kernel@hansmi.ch
474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700475F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100476
Tom Tuckerf94b5332006-09-22 15:22:48 -0700477AMSO1100 RNIC DRIVER
478P: Tom Tucker
479M: tom@opengridcomputing.com
480P: Steve Wise
481M: swise@opengridcomputing.com
Roland Dreier78526822007-07-09 20:12:26 -0700482L: general@lists.openfabrics.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700484F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700485
Johannes Berg42269062006-07-25 16:15:50 +0200486AOA (Apple Onboard Audio) ALSA DRIVER
487P: Johannes Berg
488M: johannes@sipsolutions.net
489L: linuxppc-dev@ozlabs.org
Takashi Iwai82622042007-04-16 12:32:52 +0200490L: alsa-devel@alsa-project.org (subscribers-only)
Johannes Berg42269062006-07-25 16:15:50 +0200491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700492F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494APM DRIVER
495P: Stephen Rothwell
496M: sfr@canb.auug.org.au
497L: linux-laptop@vger.kernel.org
498W: http://www.canb.auug.org.au/~sfr/
499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700500F: arch/x86/kernel/apm_32.c
501F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700503APPLE BCM5974 MULTITOUCH DRIVER
504P: Henrik Rydberg
505M: rydberg@euromail.se
506L: linux-input@vger.kernel.org
507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700508F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700509
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700510APPLE SMC DRIVER
511P: Nicolas Boichat
512M: nicolas@boichat.ch
513L: mactel-linux-devel@lists.sourceforge.net
514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700515F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517APPLETALK NETWORK LAYER
518P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -0300519M: acme@ghostprotocols.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700521F: drivers/net/appletalk/
522F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400524APPLETOUCH TOUCHPAD DRIVER
525P: Johannes Berg
526M: johannes@sipsolutions.net
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -0400527L: linux-input@vger.kernel.org
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700529F: Documentation/input/appletouch.txt
530F: drivers/input/mouse/appletouch.c
Johannes Bergeb9ebe62007-10-27 23:42:45 -0400531
Jaya Kumar1154ea72005-06-21 17:17:04 -0700532ARC FRAMEBUFFER DRIVER
533P: Jaya Kumar
534M: jayalk@intworks.biz
535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700536F: drivers/video/arcfb.c
537F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539ARM MFM AND FLOPPY DRIVERS
540P: Ian Molton
541M: spyro@f2s.com
542S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700543F: arch/arm/lib/floppydma.S
544F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Russell Kingd4275352009-04-16 14:05:27 +0100546ARM PORT
547P: Russell King
548M: linux@arm.linux.org.uk
549L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
550W: http://www.arm.linux.org.uk/
551S: Maintained
552F: arch/arm/
553
Russell King2761f5c2007-05-24 06:56:08 +0200554ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200555S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700556F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200557
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800558ARM/ADI ROADRUNNER MACHINE SUPPORT
559P: Lennert Buytenhek
560M: kernel@wantstofly.org
561L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
562S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700563F: arch/arm/mach-ixp23xx/
564F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800565
566ARM/ADS SPHERE MACHINE SUPPORT
567P: Lennert Buytenhek
568M: kernel@wantstofly.org
569L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
570S: Maintained
571
Sergey Lapin9c784f92008-08-03 02:29:48 +0100572ARM/AFEB9260 MACHINE SUPPORT
573P: Sergey Lapin
574M: slapin@ossfans.org
575L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
576S: Maintained
577
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800578ARM/AJECO 1ARM MACHINE SUPPORT
579P: Lennert Buytenhek
580M: kernel@wantstofly.org
581L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
582S: Maintained
583
Andrew Victord4a89c72006-12-04 13:56:21 +0100584ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200585P: Andrew Victor
586M: linux@maxim.org.za
587L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
588W: http://maxim.org.za/at91_26.html
589S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100590
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800591ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
592P: Lennert Buytenhek
593M: kernel@wantstofly.org
594L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
595S: Maintained
596
597ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
598P: Lennert Buytenhek
599M: kernel@wantstofly.org
600L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
601S: Maintained
602
Russell Kingd4275352009-04-16 14:05:27 +0100603ARM/CLKDEV SUPPORT
604P: Russell King
605M: linux@arm.linux.org.uk
606L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
607F: arch/arm/common/clkdev.c
608F: arch/arm/include/asm/clkdev.h
609
Mike Rapoportd48134e2008-08-20 09:03:26 +0100610ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100611P: Mike Rapoport
612M: mike@compulab.co.il
613L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
614S: Maintained
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616ARM/CORGI MACHINE SUPPORT
617P: Richard Purdie
618M: rpurdie@rpsys.net
619S: Maintained
620
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200621ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
622P: Paulius Zaleckas
623M: paulius.zaleckas@teltonika.lt
624L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700625T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200626S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300627F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200628
Russell Kingd4275352009-04-16 14:05:27 +0100629ARM/EBSA110 MACHINE SUPPORT
630P: Russell King
631M: linux@arm.linux.org.uk
632L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
633W: http://www.arm.linux.org.uk/
634S: Maintained
635F: arch/arm/mach-ebsa110/
636F: drivers/net/arm/am79c961a.*
637
Russell Kinga9da4f72008-07-12 21:42:04 +0100638ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
639P: Daniel Ribeiro
640M: drwyrm@gmail.com
641P: Stefan Schmidt
642M: stefan@openezx.org
643P: Harald Welte
644M: laforge@openezx.org
645L: openezx-devel@lists.openezx.org (subscribers-only)
646W: http://www.openezx.org/
647S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200648T: topgit git://git.openezx.org/openezx.git
649F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100650
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200651ARM/FARADAY FA526 PORT
652P: Paulius Zaleckas
653M: paulius.zaleckas@teltonika.lt
654L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
655S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300656F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200657
Russell Kingd4275352009-04-16 14:05:27 +0100658ARM/FOOTBRIDGE ARCHITECTURE
659P: Russell King
660M: linux@arm.linux.org.uk
661L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
662W: http://www.arm.linux.org.uk/
663S: Maintained
664F: arch/arm/include/asm/hardware/dec21285.h
665F: arch/arm/mach-footbridge/
666
Sascha Hauer86183a52008-07-24 23:50:35 +0200667ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
668P: Sascha Hauer
669M: kernel@pengutronix.de
670L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
671S: Maintained
672
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
674P: Lennert Buytenhek
675M: kernel@wantstofly.org
676L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
677S: Maintained
678
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100679ARM/GUMSTIX MACHINE SUPPORT
680P: Steve Sakoman
681M: sakoman@gmail.com
682L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
683S: Maintained
684
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200685ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
686P: Philipp Zabel
687M: philipp.zabel@gmail.com
688S: Maintained
689F: arch/arm/mach-pxa/hx4700.c
690F: arch/arm/mach-pxa/include/mach/hx4700.h
691
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100692ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200693P: Kristoffer Ericson
694M: kristoffer.ericson@gmail.com
695W: www.jlime.com
696S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100697
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800698ARM/INTEL IOP32X ARM ARCHITECTURE
699P: Lennert Buytenhek
700M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100701P: Dan Williams
702M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100704S: Supported
705
706ARM/INTEL IOP33X ARM ARCHITECTURE
707P: Dan Williams
708M: dan.j.williams@intel.com
709L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
710S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800711
712ARM/INTEL IOP13XX ARM ARCHITECTURE
713P: Lennert Buytenhek
714M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100715P: Dan Williams
716M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100718S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800719
720ARM/INTEL IQ81342EX MACHINE SUPPORT
721P: Lennert Buytenhek
722M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100723P: Dan Williams
724M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800725L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100726S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727
728ARM/INTEL IXP2000 ARM ARCHITECTURE
729P: Lennert Buytenhek
730M: kernel@wantstofly.org
731L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
732S: Maintained
733
734ARM/INTEL IXDP2850 MACHINE SUPPORT
735P: Lennert Buytenhek
736M: kernel@wantstofly.org
737L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
738S: Maintained
739
740ARM/INTEL IXP23XX ARM ARCHITECTURE
741P: Lennert Buytenhek
742M: kernel@wantstofly.org
743L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
744S: Maintained
745
746ARM/INTEL XSC3 (MANZANO) ARM CORE
747P: Lennert Buytenhek
748M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100749P: Dan Williams
750M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800751L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100752S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800753
754ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
755P: Lennert Buytenhek
756M: kernel@wantstofly.org
757L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
758S: Maintained
759
760ARM/LOGICPD PXA270 MACHINE SUPPORT
761P: Lennert Buytenhek
762M: kernel@wantstofly.org
763L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
764S: Maintained
765
Philipp Zabel3b8861712008-07-09 21:27:15 +0100766ARM/MAGICIAN MACHINE SUPPORT
767P: Philipp Zabel
768M: philipp.zabel@gmail.com
769S: Maintained
770
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200771ARM/MIOA701 MACHINE SUPPORT
772P: Robert Jarzmik
773M: robert.jarzmik@free.fr
774L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
775F: arch/arm/mach-pxa/mioa701.c
776S: Maintained
777
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100778ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
779P: Michael Petchkovsky
780M: mkpetch@internode.on.net
781S: Maintained
782
Dirk Opfer8459c152005-11-06 14:27:52 +0000783ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800784P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100785M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000786P: Dirk Opfer
787M: dirk@opfer-online.de
788S: Maintained
789
Marek Vasut54088bf2009-03-24 00:29:29 +0100790ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100791P: Marek Vasut
792M: marek.vasut@gmail.com
793W: http://hackndev.com
794S: Maintained
795
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200796ARM/PALM TREO 680 SUPPORT
797P: Tomas Cech
798M: sleep_walker@suse.cz
799W: http://hackndev.com
800S: Maintained
801
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100802ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700803P: Sergey Lapin
804M: slapin@ossfans.org
805W: http://hackndev.com
806S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808ARM/PLEB SUPPORT
809P: Peter Chubb
810M: pleb@gelato.unsw.edu.au
811W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
812S: Maintained
813
814ARM/PT DIGITAL BOARD PORT
815P: Stefan Eletzhofer
816M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700817L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818W: http://www.arm.linux.org.uk/
819S: Maintained
820
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800821ARM/RADISYS ENP2611 MACHINE SUPPORT
822P: Lennert Buytenhek
823M: kernel@wantstofly.org
824L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
825S: Maintained
826
Russell Kingd4275352009-04-16 14:05:27 +0100827ARM/RISCPC ARCHITECTURE
828P: Russell King
829M: linux@arm.linux.org.uk
830L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
831W: http://www.arm.linux.org.uk/
832S: Maintained
833F: arch/arm/common/time-acorn.c
834F: arch/arm/include/asm/hardware/entry-macro-iomd.S
835F: arch/arm/include/asm/hardware/ioc.h
836F: arch/arm/include/asm/hardware/iomd.h
837F: arch/arm/include/asm/hardware/memc.h
838F: arch/arm/mach-rpc/
839F: drivers/net/arm/ether*
840F: drivers/scsi/arm/
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842ARM/SHARK MACHINE SUPPORT
843P: Alexander Schulz
844M: alex@shark-linux.de
845W: http://www.shark-linux.de/shark.html
846S: Maintained
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848ARM/S3C2410 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
855ARM/S3C2440 ARM ARCHITECTURE
856P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800857M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700858L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859W: http://www.fluff.org/ben/linux/
860S: Maintained
861
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800862ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
863P: Lennert Buytenhek
864M: kernel@wantstofly.org
865L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
866S: Maintained
867
868ARM/THECUS N2100 MACHINE SUPPORT
869P: Lennert Buytenhek
870M: kernel@wantstofly.org
871L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
872S: Maintained
873
wanzongshun98ad6e32009-02-13 06:04:32 +0100874ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700875P: Wan ZongShun
876M: mcuos.com@gmail.com
877L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
878W: http://www.mcuos.com
879S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100880
Russell Kingd4275352009-04-16 14:05:27 +0100881ARM/VFP SUPPORT
882P: Russell King
883M: linux@arm.linux.org.uk
884L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
885W: http://www.arm.linux.org.uk/
886S: Maintained
887F: arch/arm/vfp/
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889ARPD SUPPORT
890P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700891L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700893F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500896P: Corentin Chary
897M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898P: Karol Kozimor
899M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900L: acpi4asus-user@lists.sourceforge.net
901W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500902W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700904F: arch/x86/kernel/acpi/boot.c
905F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400907ASUS ASB100 HARDWARE MONITOR DRIVER
908P: Mark M. Hoffman
909M: mhoffman@lightlink.com
910L: lm-sensors@lm-sensors.org
911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700912F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400913
Corentin Chary85091b72007-01-26 14:04:30 +0100914ASUS LAPTOP EXTRAS DRIVER
915P: Corentin Chary
916M: corentincj@iksaif.net
917L: acpi4asus-user@lists.sourceforge.net
918W: http://sourceforge.net/projects/acpi4asus
919W: http://xf.iksaif.net/acpi4asus
920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700921F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100922
Andrew Morton953a6472008-11-06 12:53:28 -0800923ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700924P: Dan Williams
925M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100926P: Maciej Sosnowski
927M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700928L: linux-kernel@vger.kernel.org
929W: http://sourceforge.net/projects/xscaleiop
930S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700931F: Documentation/crypto/async-tx-api.txt
932F: crypto/async_tx/
933F: drivers/dma/
934F: include/linux/dmaengine.h
935F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700936
Randy Dunlape7839f22008-10-12 16:11:45 -0700937ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938P: Ed L. Cashin
939M: ecashin@coraid.com
940W: http://www.coraid.com/support/linux
941S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700942F: Documentation/aoe/
943F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200945ATHEROS ATH5K WIRELESS DRIVER
946P: Jiri Slaby
947M: jirislaby@gmail.com
948P: Nick Kossifidis
949M: mickflemm@gmail.com
950P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700951M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400952P: Bob Copeland
953M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200954L: linux-wireless@vger.kernel.org
955L: ath5k-devel@lists.ath5k.org
956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700957F: drivers/net/wireless/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200958
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700959ATHEROS ATH9K WIRELESS DRIVER
960P: Luis R. Rodriguez
961M: lrodriguez@atheros.com
962P: Jouni Malinen
963M: jmalinen@atheros.com
964L: linux-wireless@vger.kernel.org
965L: ath9k-devel@lists.ath9k.org
966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700967F: drivers/net/wireless/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700968
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100969ATHEROS AR9170 WIRELESS DRIVER
970P: Christian Lamparter
971M: chunkeey@web.de
972L: linux-wireless@vger.kernel.org
973W: http://wireless.kernel.org/en/users/Drivers/ar9170
974S: Maintained
975F: drivers/net/wireless/ar9170/
976
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000977ATI_REMOTE2 DRIVER
978P: Ville Syrjala
979M: syrjala@sci.fi
980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700981F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000982
Chris Snook7ae115b2008-09-09 03:26:57 -0400983ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600984P: Jay Cliburn
985M: jcliburn@gmail.com
986P: Chris Snook
987M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400988P: Jie Yang
989M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600990L: atl1-devel@lists.sourceforge.net
991W: http://sourceforge.net/projects/atl1
992W: http://atl1.sourceforge.net
993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700994F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996ATM
997P: Chas Williams
998M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700999L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001000L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001W: http://linux-atm.sourceforge.net
1002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001003F: drivers/atm/
1004F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Pierre Ossman272f1332007-05-14 21:25:26 +02001006ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +02001007P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001008M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +02001009L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
1010W: http://www.atmel.com/products/AT91/
1011W: http://www.at91.com/
1012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001013F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001014
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001015ATMEL AT91 / AT32 SERIAL DRIVER
1016P: Haavard Skinnemoen
1017M: hskinnemoen@atmel.com
1018L: linux-kernel@vger.kernel.org
1019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001020F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001021
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001022ATMEL LCDFB DRIVER
1023P: Nicolas Ferre
1024M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08001025L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001027F: drivers/video/atmel_lcdfb.c
1028F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001029
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001030ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001031P: Haavard Skinnemoen
1032M: hskinnemoen@atmel.com
1033S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001034F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001035
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001036ATMEL SPI DRIVER
1037P: Haavard Skinnemoen
1038M: hskinnemoen@atmel.com
1039S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001040F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001041
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001042ATMEL USBA UDC DRIVER
1043P: Haavard Skinnemoen
1044M: hskinnemoen@atmel.com
1045L: kernel@avr32linux.org
1046W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1047S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001048F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050ATMEL WIRELESS DRIVER
1051P: Simon Kelley
1052M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -07001053L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054W: http://www.thekelleys.org.uk/atmel
1055W: http://atmelwlandriver.sourceforge.net/
1056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001057F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Chris Wrighta92b7b82005-07-07 18:12:23 -07001059AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -04001060P: Al Viro
1061M: viro@zeniv.linux.org.uk
1062P: Eric Paris
1063M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -07001064L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001065W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001066T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001068F: include/linux/audit.h
1069F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001070
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001071AUXILIARY DISPLAY DRIVERS
1072P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001073M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001074L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001075W: http://miguelojeda.es/auxdisplay.htm
1076W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001078F: drivers/auxdisplay/
1079F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001080
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001081AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001082P: Haavard Skinnemoen
1083M: hskinnemoen@atmel.com
1084W: http://www.atmel.com/products/AVR32/
1085W: http://avr32linux.org/
1086W: http://avrfreaks.net/
1087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001088F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001089
1090AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001091P: Haavard Skinnemoen
1092M: hskinnemoen@atmel.com
1093S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001094F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096AX.25 NETWORK LAYER
1097P: Ralf Baechle
1098M: ralf@linux-mips.org
1099L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001100W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001102F: include/linux/ax25.h
1103F: include/net/ax25.h
1104F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001106B43 WIRELESS DRIVER
1107P: Michael Buesch
1108M: mb@bu3sch.de
1109P: Stefano Brivio
1110M: stefano.brivio@polimi.it
1111L: linux-wireless@vger.kernel.org
1112W: http://linuxwireless.org/en/users/Drivers/b43
1113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001114F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001115
1116B43LEGACY WIRELESS DRIVER
1117P: Larry Finger
1118M: Larry.Finger@lwfinger.net
1119P: Stefano Brivio
1120M: stefano.brivio@polimi.it
1121L: linux-wireless@vger.kernel.org
1122W: http://linuxwireless.org/en/users/Drivers/b43
1123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001124F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001125
Richard Purdie300abeb2007-02-07 22:21:07 +00001126BACKLIGHT CLASS/SUBSYSTEM
1127P: Richard Purdie
1128M: rpurdie@rpsys.net
1129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001130F: drivers/video/backlight/
1131F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001132
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001133BAYCOM/HDLCDRV DRIVERS FOR AX.25
1134P: Thomas Sailer
1135M: t.sailer@alumni.ethz.ch
1136L: linux-hams@vger.kernel.org
1137W: http://www.baycom.org/~tom/ham/ham.html
1138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001139F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001140
1141BEFS FILE SYSTEM
1142P: Sergey S. Kostyliov
1143M: rathamahata@php4.ru
1144L: linux-kernel@vger.kernel.org
1145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001146F: Documentation/filesystems/befs.txt
1147F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001148
1149BFS FILE SYSTEM
1150P: Tigran A. Aivazian
1151M: tigran@aivazian.fsnet.co.uk
1152L: linux-kernel@vger.kernel.org
1153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001154F: Documentation/filesystems/bfs.txt
1155F: fs/bfs/
1156F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001157
Bryan Wu1394f032007-05-06 14:50:22 -07001158BLACKFIN ARCHITECTURE
Mike Frysinger6c834292009-05-24 02:13:15 -04001159P: Mike Frysinger
1160M: vapier@gentoo.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001161L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001162W: http://blackfin.uclinux.org
1163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001164F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001165
Bryan Wue190d6b2007-07-17 14:43:44 +08001166BLACKFIN EMAC DRIVER
Mike Frysinger6c834292009-05-24 02:13:15 -04001167P: Michael Hennerich
1168M: michael.hennerich@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001169L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001170W: http://blackfin.uclinux.org
1171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001172F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001173
Mike Frysinger566da5b2007-06-11 15:31:30 +08001174BLACKFIN RTC DRIVER
1175P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001176M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001177L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001178W: http://blackfin.uclinux.org
1179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001180F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001181
Bryan Wu1394f032007-05-06 14:50:22 -07001182BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001183P: Sonic Zhang
1184M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001185L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001186W: http://blackfin.uclinux.org
1187S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001188F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001189
Bryan Wu1e6d3202007-07-15 02:50:02 +08001190BLACKFIN WATCHDOG DRIVER
1191P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001192M: vapier.adi@gmail.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001193L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001194W: http://blackfin.uclinux.org
1195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001196F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001197
Bryan Wud24ecfc2007-05-01 23:26:32 +02001198BLACKFIN I2C TWI DRIVER
1199P: Sonic Zhang
1200M: sonic.zhang@analog.com
Mike Frysinger49afa602009-05-18 04:33:07 -04001201L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001202W: http://blackfin.uclinux.org/
1203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001204F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206BLOCK LAYER
1207P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001208M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001210T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001212F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Joern Engel2b54aae2008-02-06 01:38:02 -08001214BLOCK2MTD DRIVER
1215P: Joern Engel
1216M: joern@lazybastard.org
1217L: linux-mtd@lists.infradead.org
1218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001219F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001220
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001221BLUETOOTH DRIVERS
1222P: Marcel Holtmann
1223M: marcel@holtmann.org
1224L: linux-bluetooth@vger.kernel.org
1225W: http://www.bluez.org/
1226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001227F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229BLUETOOTH SUBSYSTEM
1230P: Marcel Holtmann
1231M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001232L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001233W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001234T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001236F: net/bluetooth/
1237F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001240P: Jay Vosburgh
1241M: fubar@us.ibm.com
1242L: bonding-devel@lists.sourceforge.net
1243W: http://sourceforge.net/projects/bonding/
1244S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001245F: drivers/net/bonding/
1246F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Gary Zambrano39105892006-06-22 17:26:20 -07001248BROADCOM B44 10/100 ETHERNET DRIVER
1249P: Gary Zambrano
1250M: zambrano@broadcom.com
1251L: netdev@vger.kernel.org
1252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001253F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001254
Michael Chan948c51e2006-06-04 02:51:39 -07001255BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1256P: Michael Chan
1257M: mchan@broadcom.com
1258L: netdev@vger.kernel.org
1259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001260F: drivers/net/bnx2.*
1261F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001262
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001263BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001264P: Eilon Greenstein
1265M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001266L: netdev@vger.kernel.org
1267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001268F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001269
Michael Chan948c51e2006-06-04 02:51:39 -07001270BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001271P: Matt Carlson
1272M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001273P: Michael Chan
1274M: mchan@broadcom.com
1275L: netdev@vger.kernel.org
1276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001277F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001278
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001279BSG (block layer generic sg v4 driver)
1280P: FUJITA Tomonori
1281M: fujita.tomonori@lab.ntt.co.jp
1282L: linux-scsi@vger.kernel.org
1283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001284F: block/bsg.c
1285F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001286
Michael Bueschff1d5c22008-07-25 01:46:10 -07001287BT8XXGPIO DRIVER
1288P: Michael Buesch
1289M: mb@bu3sch.de
1290W: http://bu3sch.de/btgpio.php
1291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001292F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001293
Joe Percheseb1eb042009-01-21 10:49:16 -05001294BTRFS FILE SYSTEM
1295P: Chris Mason
1296M: chris.mason@oracle.com
1297L: linux-btrfs@vger.kernel.org
1298W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001299T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: Documentation/filesystems/btrfs.txt
1302F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001305P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001306M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001307L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001308W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001309T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001310S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001311F: Documentation/video4linux/bttv/
1312F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
David Howellsa5432f52009-04-20 15:46:45 +01001314CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1315P: David Howells
1316M: dhowells@redhat.com
1317L: linux-cachefs@redhat.com
1318S: Supported
1319F: Documentation/filesystems/caching/cachefiles.txt
1320F: fs/cachefiles/
1321
Jonathan Corbet77d51402007-03-22 19:44:17 -03001322CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001323P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001324M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001325L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001326T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001328F: Documentation/video4linux/cafe_ccic
1329F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001330
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001331CALGARY x86-64 IOMMU
1332P: Muli Ben-Yehuda
1333M: muli@il.ibm.com
1334P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001335M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001336L: linux-kernel@vger.kernel.org
1337L: discuss@x86-64.org
1338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001339F: arch/x86/kernel/pci-calgary_64.c
1340F: arch/x86/kernel/tce_64.c
1341F: arch/x86/include/asm/calgary.h
1342F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001343
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001344CAN NETWORK LAYER
1345P: Urs Thuermann
1346M: urs.thuermann@volkswagen.de
1347P: Oliver Hartkopp
1348M: oliver.hartkopp@volkswagen.de
1349L: socketcan-core@lists.berlios.de (subscribers-only)
1350W: http://developer.berlios.de/projects/socketcan/
1351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001352F: drivers/net/can/
1353F: include/linux/can/
1354F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001355
Arnd Bergmannb8154542008-05-16 11:10:59 +02001356CELL BROADBAND ENGINE ARCHITECTURE
1357P: Arnd Bergmann
1358M: arnd@arndb.de
1359L: linuxppc-dev@ozlabs.org
1360L: cbe-oss-dev@ozlabs.org
1361W: http://www.ibm.com/developerworks/power/cell/
1362S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001363F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001364F: arch/powerpc/include/asm/spu*.h
1365F: arch/powerpc/oprofile/*cell*
1366F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001367
David Vrabel18332a82008-09-17 16:34:44 +01001368CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1369P: David Vrabel
1370M: david.vrabel@csr.com
1371L: linux-usb@vger.kernel.org
1372S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001373F: Documentation/usb/WUSB-Design-overview.txt
1374F: Documentation/usb/wusb-cbaf
1375F: drivers/usb/wusbcore/
1376F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001377
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001378CFAG12864B LCD DRIVER
1379P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001380M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001381L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001382W: http://miguelojeda.es/auxdisplay.htm
1383W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001385F: drivers/auxdisplay/cfag12864b.c
1386F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001387
1388CFAG12864BFB LCD FRAMEBUFFER DRIVER
1389P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001390M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001391L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001392W: http://miguelojeda.es/auxdisplay.htm
1393W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/auxdisplay/cfag12864bfb.c
1396F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001397
Johannes Berg704232c2007-04-23 12:20:05 -07001398CFG80211 and NL80211
1399P: Johannes Berg
1400M: johannes@sipsolutions.net
1401L: linux-wireless@vger.kernel.org
1402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001403F: include/linux/nl80211.h
1404F: include/net/cfg80211.h
1405F: net/wireless/*
1406X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001407
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001408CHECKPATCH
1409P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001410M: apw@canonical.com
1411L: linux-kernel@vger.kernel.org
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001412S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001413F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001414
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001415CISCO 10G ETHERNET DRIVER
1416P: Scott Feldman
1417M: scofeldm@cisco.com
1418P: Joe Eykholt
1419M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001420S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001421F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001422
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001423CIRRUS LOGIC EP93XX ETHERNET DRIVER
1424P: Lennert Buytenhek
1425M: kernel@wantstofly.org
1426L: netdev@vger.kernel.org
1427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001428F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001429
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001430CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1431P: Lennert Buytenhek
1432M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001433L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001435F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001436
Timur Tabid9e9d822008-04-24 08:45:26 +10001437CIRRUS LOGIC CS4270 SOUND DRIVER
1438P: Timur Tabi
1439M: timur@freescale.com
1440L: alsa-devel@alsa-project.org
1441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001442F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1445P: Cirrus Logic Corporation (kernel 2.2 driver)
1446M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1447P: Nils Faerber (port to kernel 2.4)
1448M: Nils Faerber <nils@kernelconcepts.de>
1449S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001450F: Documentation/input/cs461x.txt
1451F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Russell Kingd4275352009-04-16 14:05:27 +01001453CLK API
1454P: Russell King
1455M: linux@arm.linux.org.uk
1456F: include/linux/clk.h
1457
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001458CISCO FCOE HBA DRIVER
1459P: Abhijeet Joglekar
1460M: abjoglek@cisco.com
1461P: Joe Eykholt
1462M: jeykholt@cisco.com
1463L: linux-scsi@vger.kernel.org
1464S: Supported
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466CODA FILE SYSTEM
1467P: Jan Harkes
1468M: jaharkes@cs.cmu.edu
1469M: coda@cs.cmu.edu
1470L: codalist@coda.cs.cmu.edu
1471W: http://www.coda.cs.cmu.edu/
1472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001473F: Documentation/filesystems/coda.txt
1474F: fs/coda/
1475F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001477COMMON INTERNET FILE SYSTEM (CIFS)
1478P: Steve French
1479M: sfrench@samba.org
1480L: linux-cifs-client@lists.samba.org
1481L: samba-technical@lists.samba.org
1482W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001483T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001484S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001485F: Documentation/filesystems/cifs.txt
1486F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488COMPACTPCI HOTPLUG CORE
1489P: Scott Murray
1490M: scottm@somanetworks.com
1491M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001492L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001494F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1497P: Scott Murray
1498M: scottm@somanetworks.com
1499M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001500L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001502F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504COMPACTPCI HOTPLUG GENERIC DRIVER
1505P: Scott Murray
1506M: scottm@somanetworks.com
1507M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001508L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001510F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001512COMPAL LAPTOP SUPPORT
1513P: Cezary Jackiewicz
1514M: cezary.jackiewicz@gmail.com
1515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001516F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518COMPUTONE INTELLIPORT MULTIPORT CARD
1519P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001520M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001523F: Documentation/serial/computone.txt
1524F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Simon Arlott949be0f2007-03-06 02:47:46 -08001526CONEXANT ACCESSRUNNER USB DRIVER
1527P: Simon Arlott
1528M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001529L: accessrunner-general@lists.sourceforge.net
1530W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001533
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001534CONFIGFS
1535P: Joel Becker
1536M: joel.becker@oracle.com
1537L: linux-kernel@vger.kernel.org
1538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001539F: fs/configfs/
1540F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001541
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001542CONTROL GROUPS (CGROUPS)
1543P: Paul Menage
1544M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001545P: Li Zefan
1546M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001547L: containers@lists.linux-foundation.org
1548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: include/linux/cgroup*
1550F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001551
Rudolf Marekbebe4672007-05-08 17:22:02 +02001552CORETEMP HARDWARE MONITORING DRIVER
1553P: Rudolf Marek
1554M: r.marek@assembler.cz
1555L: lm-sensors@lm-sensors.org
1556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001557F: Documentation/hwmon/coretemp
1558F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560COSA/SRP SYNC SERIAL DRIVER
1561P: Jan "Yenya" Kasprzak
1562M: kas@fi.muni.cz
1563W: http://www.fi.muni.cz/~kas/cosa/
1564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001565F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Florian Fainelli4371ee32009-06-01 02:43:17 -07001567CPMAC ETHERNET DRIVER
1568P: Florian Fainelli
1569M: florian@openwrt.org
1570L: netdev@vger.kernel.org
1571S: Maintained
1572F: drivers/net/cpmac.c
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574CPU FREQUENCY DRIVERS
1575P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001576M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001577L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001579T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001581F: arch/x86/kernel/cpu/cpufreq/
1582F: drivers/cpufreq/
1583F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585CPUID/MSR DRIVER
1586P: H. Peter Anvin
1587M: hpa@zytor.com
1588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: arch/x86/kernel/cpuid.c
1590F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Paul Jacksoned90fb42005-09-27 21:45:37 -07001592CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001593P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001594M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001595L: linux-kernel@vger.kernel.org
1596W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001597W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001598S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001599F: Documentation/cgroups/cpusets.txt
1600F: include/linux/cpuset.h
1601F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001604W: http://sourceforge.net/projects/cramfs/
1605S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001606F: Documentation/filesystems/cramfs.txt
1607F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609CRIS PORT
1610P: Mikael Starvik
1611M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001612P: Jesper Nilsson
1613M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614L: dev-etrax@axis.com
1615W: http://developer.axis.com
1616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001617F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619CRYPTO API
1620P: Herbert Xu
1621M: herbert@gondor.apana.org.au
1622P: David S. Miller
1623M: davem@davemloft.net
1624L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001625T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001627F: Documentation/crypto/
1628F: arch/*/crypto/
1629F: crypto/
1630F: drivers/crypto/
1631F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Neil Horman5b07bd52009-02-05 16:03:04 +11001633CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1634P: Neil Horman
1635M: nhorman@tuxdriver.com
1636L: linux-crypto@vger.kernel.org
1637S: Maintained
1638
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001639CS5535 Audio ALSA driver
1640P: Jaya Kumar
1641M: jayakumar.alsa@gmail.com
1642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001643F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001644
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001645CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001646P: Hans Verkuil
1647M: hverkuil@xs4all.nl
1648P: Andy Walls
1649M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001650L: ivtv-devel@ivtvdriver.org
1651L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001652L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001653T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001654W: http://linuxtv.org
1655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001656F: Documentation/video4linux/cx18.txt
1657F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001658
Steve Wisee5ec3782008-05-20 14:06:33 -07001659CXGB3 ETHERNET DRIVER (CXGB3)
1660P: Divy Le Ray
1661M: divy@chelsio.com
1662L: netdev@vger.kernel.org
1663W: http://www.chelsio.com
1664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001665F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001666
1667CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1668P: Steve Wise
1669M: swise@chelsio.com
1670L: general@lists.openfabrics.org
1671W: http://www.openfabrics.org
1672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675CYBERPRO FB DRIVER
1676P: Russell King
Russell Kingd4275352009-04-16 14:05:27 +01001677M: linux@arm.linux.org.uk
1678L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679W: http://www.arm.linux.org.uk/
1680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001681F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683CYCLADES 2X SYNC CARD DRIVER
1684P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001685M: acme@ghostprotocols.net
1686W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001688F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001692S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001693F: drivers/char/cyclades.c
1694F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001698S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001699F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701DAMA SLAVE for AX.25
1702P: Joerg Reuter
1703M: jreuter@yaina.de
1704W: http://yaina.de/jreuter/
1705W: http://www.qsl.net/dl1bke/
1706L: linux-hams@vger.kernel.org
1707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001708F: net/ax25/af_ax25.c
1709F: net/ax25/ax25_dev.c
1710F: net/ax25/ax25_ds_*
1711F: net/ax25/ax25_in.c
1712F: net/ax25/ax25_out.c
1713F: net/ax25/ax25_timer.c
1714F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001716DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1717P: Tobias Ringstrom
1718M: tori@unhappy.mine.nu
1719L: netdev@vger.kernel.org
1720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001721F: Documentation/networking/dmfe.txt
1722F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001723
1724DC390/AM53C974 SCSI driver
1725P: Kurt Garloff
1726M: garloff@suse.de
1727W: http://www.garloff.de/kurt/linux/dc390/
1728P: Guennadi Liakhovetski
1729M: g.liakhovetski@gmx.de
1730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001731F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733DC395x SCSI driver
1734P: Oliver Neukum
1735M: oliver@neukum.name
1736P: Ali Akcaagac
1737M: aliakc@web.de
1738P: Jamie Lenehan
1739M: lenehan@twibble.org
1740W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001741L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742L: http://lists.twibble.org/mailman/listinfo/dc395x/
1743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001744F: Documentation/scsi/dc395x.txt
1745F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001747DCCP PROTOCOL
1748P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001749M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001750L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001751W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001753F: include/linux/dccp.h
1754F: include/linux/tfrc.h
1755F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001758P: Christine Caulfield
1759M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760W: http://linux-decnet.sourceforge.net
1761L: linux-decnet-user@lists.sourceforge.net
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: Documentation/networking/decnet.txt
1764F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766DEFXX FDDI NETWORK DRIVER
1767P: Maciej W. Rozycki
1768M: macro@linux-mips.org
1769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001770F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001772DELL LAPTOP DRIVER
1773P: Matthew Garrett
1774M: mjg59@srcf.ucam.org
1775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001776F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778DELL LAPTOP SMM DRIVER
1779P: Massimo Dal Zotto
1780M: dz@debian.org
1781W: http://www.debian.org/~dz/i8k/
1782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001783F: drivers/char/i8k.c
1784F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Doug Warzecha90563ec2005-09-06 15:17:15 -07001786DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1787P: Doug Warzecha
1788M: Douglas_Warzecha@dell.com
1789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001790F: Documentation/dcdbas.txt
1791F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001792
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001793DELL WMI EXTRAS DRIVER
1794P: Matthew Garrett
1795M: mjg59@srcf.ucam.org
1796S: Maintained
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798DEVICE NUMBER REGISTRY
1799P: Torben Mathiasen
1800M: device@lanana.org
1801W: http://lanana.org/docs/device-list/index.html
1802L: linux-kernel@vger.kernel.org
1803S: Maintained
1804
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001805DEVICE-MAPPER (LVM)
1806P: Alasdair Kergon
1807L: dm-devel@redhat.com
1808W: http://sources.redhat.com/dm
1809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001810F: Documentation/device-mapper/
1811F: drivers/md/dm*
1812F: include/linux/device-mapper.h
1813F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815DIGI INTL. EPCA DRIVER
1816P: Digi International, Inc
1817M: Eng.Linux@digi.com
1818L: Eng.Linux@digi.com
1819W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001820S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001821F: Documentation/serial/digiepca.txt
1822F: drivers/char/epca*
1823F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Randy Dunlape7839f22008-10-12 16:11:45 -07001825DIRECTORY NOTIFICATION (DNOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826P: Stephen Rothwell
1827M: sfr@canb.auug.org.au
1828L: linux-kernel@vger.kernel.org
1829S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001830F: Documentation/filesystems/dnotify.txt
1831F: fs/notify/dnotify/
1832F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834DISK GEOMETRY AND PARTITION HANDLING
1835P: Andries Brouwer
1836M: aeb@cwi.nl
1837W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1838W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1839W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1840S: Maintained
1841
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001842DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843P: Jan Kara
1844M: jack@suse.cz
1845L: linux-kernel@vger.kernel.org
1846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001847F: Documentation/filesystems/quota.txt
1848F: fs/quota/
1849F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Randy Dunlape7839f22008-10-12 16:11:45 -07001851DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001852P: Christine Caulfield
1853M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001854P: David Teigland
1855M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001856L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001857W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001858T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001859S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001860F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001861
Dan Williamsb3e5f262007-08-07 10:26:35 -07001862DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001863P: Maciej Sosnowski
1864M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001865P: Dan Williams
1866M: dan.j.williams@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001867L: linux-kernel@vger.kernel.org
Dan Williamsb3e5f262007-08-07 10:26:35 -07001868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001869F: drivers/dma/
1870F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001871
Juerg Haefligerb8250372007-06-09 10:11:16 -04001872DME1737 HARDWARE MONITOR DRIVER
1873P: Juerg Haefliger
1874M: juergh@gmail.com
1875L: lm-sensors@lm-sensors.org
1876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001877F: Documentation/hwmon/dme1737
1878F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001879
Martin Waitzba483d52005-06-17 13:20:59 -07001880DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001881P: Randy Dunlap
1882M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001883S: Maintained
1884
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001885DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001886P: Shaohua Li
1887M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001888L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001889S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001890F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001891
Joe Perches7d2c86b2009-04-07 20:59:01 -07001892DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001893P: Randy Dunlap
1894M: rdunlap@xenotime.net
1895L: linux-doc@vger.kernel.org
1896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001897F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899DOUBLETALK DRIVER
1900P: James R. Van Zandt
1901M: jrv@vanzandt.mv.com
1902L: blinux-list@redhat.com
1903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001904F: drivers/char/dtlk.c
1905F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001907DPT_I2O SCSI RAID DRIVER
1908P: Adaptec OEM Raid Solutions
1909M: aacraid@adaptec.com
1910L: linux-scsi@vger.kernel.org
1911W: http://www.adaptec.com/
1912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/scsi/dpt*
1914F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916DRIVER CORE, KOBJECTS, AND SYSFS
1917P: Greg Kroah-Hartman
1918M: gregkh@suse.de
1919L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001920T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001922F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001923F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001924F: fs/sysfs/
1925F: include/linux/kobj*
1926F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928DRM DRIVERS
1929P: David Airlie
1930M: airlied@linux.ie
1931L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001932T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001934F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001937P: Francois Romieu
1938M: romieu@fr.zoreil.com
1939L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001941F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001943DZ DECSTATION DZ11 SERIAL DRIVER
1944P: Maciej W. Rozycki
1945M: macro@linux-mips.org
1946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001947F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949EATA-DMA SCSI DRIVER
1950P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001951M: mike@i-Connect.Net
1952L: linux-eata@i-connect.net
1953L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001955F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957EATA ISA/EISA/PCI SCSI DRIVER
1958P: Dario Ballabio
1959M: ballabio_dario@emc.com
1960L: linux-scsi@vger.kernel.org
1961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001962F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964EATA-PIO SCSI DRIVER
1965P: Michael Neuffer
1966M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001967L: linux-eata@i-connect.net
1968L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001970F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972EBTABLES
1973P: Bart De Schuymer
1974M: bart.de.schuymer@pandora.be
1975L: ebtables-user@lists.sourceforge.net
1976L: ebtables-devel@lists.sourceforge.net
1977W: http://ebtables.sourceforge.net/
1978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001979F: include/linux/netfilter_bridge/ebt_*.h
1980F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Michael Halcrow237fead2006-10-04 02:16:22 -07001982ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001983P: Tyler Hicks
1984M: tyhicks@linux.vnet.ibm.com
1985M: Dustin Kirkland
1986P: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001987L: ecryptfs-devel@lists.launchpad.net
1988W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001989S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001990F: Documentation/filesystems/ecryptfs.txt
1991F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001992
Alan Coxda9bb1d2006-01-18 17:44:13 -08001993EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001994P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001995M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001996L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001997W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001999F: Documentation/edac.txt
2000F: drivers/edac/edac_*
2001F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002002
2003EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002004P: Mark Gross
2005M: mark.gross@intel.com
Joe Perches681a1b42009-05-28 14:34:18 -07002006P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002007M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002008L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002009W: bluesmoke.sourceforge.net
2010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002012
2013EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002014P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002015M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002016L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002017W: bluesmoke.sourceforge.net
2018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002020
Douglas Thompson6bc78402007-07-19 01:50:12 -07002021EDAC-I82443BXGX
2022P: Tim Small
2023M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002024L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002025W: bluesmoke.sourceforge.net
2026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002028
2029EDAC-I3000
2030P: Jason Uhlenkott
2031M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002032L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002033W: bluesmoke.sourceforge.net
2034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002035F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002036
2037EDAC-I5000
2038P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002039M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002040L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002041W: bluesmoke.sourceforge.net
2042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002044
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002045EDAC-I5400
2046P: Mauro Carvalho Chehab
2047M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002048L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002049W: bluesmoke.sourceforge.net
2050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002051F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002052
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002053EDAC-I82975X
2054P: Ranganathan Desikan
2055P: Arvind R.
2056M: rdesikan@jetzbroadband.com
2057M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002058L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002059W: bluesmoke.sourceforge.net
2060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002061F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002062
2063EDAC-PASEMI
2064P: Egor Martovetsky
2065M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002066L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002067W: bluesmoke.sourceforge.net
2068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002069F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002070
Dave Peterson0e438e32006-03-26 01:38:55 -08002071EDAC-R82600
2072P: Tim Small
2073M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07002074L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002075W: bluesmoke.sourceforge.net
2076S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002077F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002078
Eric Coopere59f8792008-03-13 12:55:46 +01002079EEEPC LAPTOP EXTRAS DRIVER
2080P: Corentin Chary
2081M: corentincj@iksaif.net
2082L: acpi4asus-user@lists.sourceforge.net
2083W: http://sourceforge.net/projects/acpi4asus
2084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002085F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002086
Josh Triplett0bee8d22006-07-30 03:03:58 -07002087EFS FILESYSTEM
2088W: http://aeschi.ch.eu.org/efs/
2089S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002090F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002091
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002092EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07002093P: Hoang-Nam Nguyen
2094M: hnguyen@de.ibm.com
2095P: Christoph Raisch
2096M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07002097L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002099F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002100
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002101EMBEDDED LINUX
2102P: Paul Gortmaker
2103M: paul.gortmaker@windriver.com
Matt Mackall0f249222009-04-21 12:24:47 -07002104P: Matt Mackall
2105M: mpm@selenic.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002106P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002107M: dwmw2@infradead.org
2108L: linux-embedded@vger.kernel.org
2109S: Maintained
2110
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002111EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002112P: James Smart
2113M: james.smart@emulex.com
2114L: linux-scsi@vger.kernel.org
2115W: http://sourceforge.net/projects/lpfcxxxx
2116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002117F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119EPSON 1355 FRAMEBUFFER DRIVER
2120P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002121M: ch@murgatroid.com
2122P: Christopher Hoover
2123M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002125F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002127EPSON S1D13XXX FRAMEBUFFER DRIVER
2128P: Kristoffer Ericson
2129M: kristoffer.ericson@gmail.com
2130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: drivers/video/s1d13xxxfb.c
2132F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134ETHEREXPRESS-16 NETWORK DRIVER
2135P: Philip Blundell
2136M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002137L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002139F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141ETHERNET BRIDGE
2142P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08002143M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002144L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002145W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002147F: include/linux/netfilter_bridge/
2148F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150ETHERTEAM 16I DRIVER
2151P: Mika Kuoppala
2152M: miku@iki.fi
2153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002154F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002157L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002159F: Documentation/filesystems/ext2.txt
2160F: fs/ext2/
2161F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002164P: Stephen Tweedie
2165M: sct@redhat.com
2166P: Andrew Morton
2167M: akpm@linux-foundation.org
2168P: Andreas Dilger
2169M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002170L: linux-ext4@vger.kernel.org
2171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: Documentation/filesystems/ext3.txt
2173F: fs/ext3/
2174F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002175
2176EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002177P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002178M: tytso@mit.edu
2179P: Andreas Dilger
2180M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002181L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002182W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: Documentation/filesystems/ext4.txt
2185F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Jean Delvaree53004e2006-01-09 23:26:14 +01002187F71805F HARDWARE MONITORING DRIVER
2188P: Jean Delvare
2189M: khali@linux-fr.org
2190L: lm-sensors@lm-sensors.org
2191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: Documentation/hwmon/f71805f
2193F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195FARSYNC SYNCHRONOUS DRIVER
2196P: Kevin Curtis
2197M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198W: http://www.farsite.co.uk/
2199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002200F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Akinobu Mitac5408b82007-04-23 14:41:20 -07002202FAULT INJECTION SUPPORT
2203P: Akinobu Mita
2204M: akinobu.mita@gmail.com
2205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002206F: Documentation/fault-injection/
2207F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002208
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002209FILE LOCKING (flock() and fcntl()/lockf())
2210P: Matthew Wilcox
2211M: matthew@wil.cx
2212L: linux-fsdevel@vger.kernel.org
2213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002214F: include/linux/fcntl.h
2215F: include/linux/fs.h
2216F: fs/fcntl.c
2217F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002218
2219FILESYSTEMS (VFS and infrastructure)
2220P: Alexander Viro
2221M: viro@zeniv.linux.org.uk
2222L: linux-fsdevel@vger.kernel.org
2223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002224F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002225
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002226FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2227P: Riku Voipio
2228M: riku.vipio@iki.fi
2229L: lm-sensors@lm-sensors.org
2230S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002231F: drivers/hwmon/f75375s.c
2232F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002233
Joe Perches7d2c86b2009-04-07 20:59:01 -07002234FIREWIRE SUBSYSTEM
2235P: Kristian Hoegsberg
2236M: krh@redhat.com
2237P: Stefan Richter
2238M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002239L: linux1394-devel@lists.sourceforge.net
2240W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002241T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002242S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002243F: drivers/firewire/
2244F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002245
2246FIRMWARE LOADER (request_firmware)
2247L: linux-kernel@vger.kernel.org
2248S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002249F: Documentation/firmware_class/
2250F: drivers/base/firmware*.c
2251F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002252
2253FPU EMULATOR
2254P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002255M: billm@melbpc.org.au
2256W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002258F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002259
2260FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2261P: Mike McLagan
2262M: mike.mclagan@linux.org
2263L: netdev@vger.kernel.org
2264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002265F: drivers/net/wan/dlci.c
2266F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002267
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268FRAMEBUFFER LAYER
2269P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002270M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002271L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272W: http://linux-fbdev.sourceforge.net/
2273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002274F: Documentation/fb/
2275F: drivers/video/fb*
2276F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Zhang Wei173acc72008-03-01 07:42:48 -07002278FREESCALE DMA DRIVER
Zhang Wei76b0c782008-05-13 14:44:59 -07002279P: Li Yang
2280M: leoli@freescale.com
2281P: Zhang Wei
2282M: zw@zh-kernel.org
Li Yang0899d632009-05-22 16:39:59 +08002283L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002284L: linux-kernel@vger.kernel.org
2285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002287
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002288FREESCALE I2C CPM DRIVER
2289P: Jochen Friedrich
2290M: jochen@scram.de
2291L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002292L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002295
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002296FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2297P: Sascha Hauer
2298M: kernel@pengutronix.de
2299L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2300L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002302F: arch/arm/plat-mxc/include/mach/imxfb.h
2303F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002304
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002305FREESCALE SOC FS_ENET DRIVER
2306P: Pantelis Antoniou
2307M: pantelis.antoniou@gmail.com
2308P: Vitaly Bordug
2309M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002310L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002311L: netdev@vger.kernel.org
2312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002313F: drivers/net/fs_enet/
2314F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002315
Timur Tabid9e9d822008-04-24 08:45:26 +10002316FREESCALE QUICC ENGINE LIBRARY
2317P: Timur Tabi
2318M: timur@freescale.com
2319L: linuxppc-dev@ozlabs.org
2320S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002321F: arch/powerpc/sysdev/qe_lib/
2322F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002323
Li Yanga7205b32007-04-23 10:38:18 -07002324FREESCALE HIGHSPEED USB DEVICE DRIVER
2325P: Li Yang
2326M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002327L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002328L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002330F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002331
Li Yangbeaf53b2007-05-25 13:54:02 +08002332FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2333P: Li Yang
2334M: leoli@freescale.com
2335L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002336L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002338F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002339
Timur Tabid9e9d822008-04-24 08:45:26 +10002340FREESCALE QUICC ENGINE UCC UART DRIVER
2341P: Timur Tabi
2342M: timur@freescale.com
2343L: linuxppc-dev@ozlabs.org
2344S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002345F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002346
2347FREESCALE SOC SOUND DRIVERS
2348P: Timur Tabi
2349M: timur@freescale.com
2350L: alsa-devel@alsa-project.org
2351L: linuxppc-dev@ozlabs.org
2352S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002353F: sound/soc/fsl/fsl*
2354F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002355
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356FREEVXFS FILESYSTEM
2357P: Christoph Hellwig
2358M: hch@infradead.org
2359W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002361F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Pavel Machek71038f52009-01-15 13:51:02 -08002363FREEZER
2364P: Pavel Machek
2365M: pavel@suse.cz
2366P: Rafael J. Wysocki
2367M: rjw@sisk.pl
2368L: linux-pm@lists.linux-foundation.org
2369S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002370F: Documentation/power/freezing-of-tasks.txt
2371F: include/linux/freezer.h
2372F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002373
David Howellsa5432f52009-04-20 15:46:45 +01002374FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
2375P: David Howells
2376M: dhowells@redhat.com
2377L: linux-cachefs@redhat.com
2378S: Supported
2379F: Documentation/filesystems/caching/
2380F: fs/fscache/
2381F: include/linux/fscache*.h
2382
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002383FTRACE
2384P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002385M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002386S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002387F: Documentation/ftrace.txt
2388F: arch/*/*/*/ftrace.h
2389F: arch/*/kernel/ftrace.c
2390F: include/*/ftrace.h
2391F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002392
David Howells5ab7ffe2007-04-10 15:10:45 +01002393FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394P: David Howells
2395M: dhowells@redhat.com
2396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002397F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Jonathan Woithe20b93732008-06-11 10:14:56 +09302399FUJITSU LAPTOP EXTRAS
2400P: Jonathan Woithe
2401M: jwoithe@physics.adelaide.edu.au
2402L: linux-acpi@vger.kernel.org
2403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002404F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302405
Miklos Szeredi04578f12005-09-09 13:10:22 -07002406FUSE: FILESYSTEM IN USERSPACE
2407P: Miklos Szeredi
2408M: miklos@szeredi.hu
2409L: fuse-devel@lists.sourceforge.net
2410W: http://fuse.sourceforge.net/
2411S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002412F: fs/fuse/
2413F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002414
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2416P: Rik Faith
2417M: faith@cs.unc.edu
2418L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002419S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002420F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422GDT SCSI DISK ARRAY CONTROLLER DRIVER
2423P: Achim Leubner
2424M: achim_leubner@adaptec.com
2425L: linux-scsi@vger.kernel.org
2426W: http://www.icp-vortex.com/
2427S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002428F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002430GENERIC GPIO I2C DRIVER
2431P: Haavard Skinnemoen
2432M: hskinnemoen@atmel.com
2433S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002434F: drivers/i2c/busses/i2c-gpio.c
2435F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002436
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002437GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438P: Krzysztof Halasa
2439M: khc@pm.waw.pl
2440W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002442F: drivers/net/wan/c101.c
2443F: drivers/net/wan/hd6457*
2444F: drivers/net/wan/hdlc*
2445F: drivers/net/wan/n2.c
2446F: drivers/net/wan/pc300too.c
2447F: drivers/net/wan/pci200syn.c
2448F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002450GFS2 FILE SYSTEM
2451P: Steven Whitehouse
2452M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002453L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002454W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002455T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2456T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002457S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002458F: Documentation/filesystems/gfs2*.txt
2459F: fs/gfs2/
2460F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002461
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002462GIGASET ISDN DRIVERS
2463P: Hansjoerg Lipp
2464M: hjlipp@web.de
2465P: Tilman Schmidt
2466M: tilman@imap.cc
2467L: gigaset307x-common@lists.sourceforge.net
2468W: http://gigaset307x.sourceforge.net/
2469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002470F: Documentation/isdn/README.gigaset
2471F: drivers/isdn/gigaset/
2472F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002473
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002474HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002475P: Frank Seidel
2476M: frank@f-seidel.de
2477L: lm-sensors@lm-sensors.org
2478W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002480F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002481
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002482HYPERVISOR VIRTUAL CONSOLE DRIVER
2483L: linuxppc-dev@ozlabs.org
2484L: linux-kernel@vger.kernel.org
2485S: Odd Fixes
2486F: drivers/char/hvc_*
2487
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002488GSPCA FINEPIX SUBDRIVER
2489P: Frank Zago
2490M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002491L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002492T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002494F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002495
2496GSPCA M5602 SUBDRIVER
2497P: Erik Andren
2498M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002499L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002500T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002502F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002503
2504GSPCA PAC207 SONIXB SUBDRIVER
2505P: Hans de Goede
2506M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002507L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002508T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002511
2512GSPCA T613 SUBDRIVER
2513P: Leandro Costantino
2514M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002515L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002516T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002518F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002519
2520GSPCA USB WEBCAM DRIVER
2521P: Jean-Francois Moine
2522M: moinejf@free.fr
2523W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002524L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002525T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002527F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002528
Jean Delvare5b543962005-08-15 19:51:02 +02002529HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002530L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002531W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002532S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002533F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002534
Michael Buesch844dd052006-06-26 00:24:59 -07002535HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002536S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002537F: Documentation/hw_random.txt
2538F: drivers/char/hw_random/
2539F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541HARMONY SOUND DRIVER
2542P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002543M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002544L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002546F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548HAYES ESP SERIAL DRIVER
2549P: Andrew J. Robinson
2550M: arobinso@nyx.net
2551L: linux-kernel@vger.kernel.org
2552W: http://www.nyx.net/~arobinso
2553S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002554F: Documentation/serial/hayes-esp.txt
2555F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002556
2557HEWLETT-PACKARD SMART2 RAID DRIVER
2558P: Chirag Kantharia
2559M: chirag.kantharia@hp.com
2560L: iss_storagedev@hp.com
2561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002562F: Documentation/blockdev/cpqarray.txt
2563F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002564
2565HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2566P: Mike Miller
2567M: mike.miller@hp.com
2568L: iss_storagedev@hp.com
2569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002570F: Documentation/blockdev/cciss.txt
2571F: drivers/block/cciss*
2572F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574HFS FILESYSTEM
2575P: Roman Zippel
2576M: zippel@linux-m68k.org
2577L: linux-kernel@vger.kernel.org
2578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002579F: Documentation/filesystems/hfs.txt
2580F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582HGA FRAMEBUFFER DRIVER
2583P: Ferenc Bakonyi
2584M: fero@drama.obuda.kando.hu
2585L: linux-nvidia@lists.surfsouth.com
2586W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002588F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002590HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002591P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002592M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002593P: Rafael J. Wysocki
2594M: rjw@sisk.pl
2595L: linux-pm@lists.linux-foundation.org
2596S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002597F: arch/x86/power/
2598F: drivers/base/power/
2599F: kernel/power/
2600F: include/linux/suspend.h
2601F: include/linux/freezer.h
2602F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002603F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002604
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002605HID CORE LAYER
2606P: Jiri Kosina
2607M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002608L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002609T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002611F: drivers/hid/
2612F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002613
Ingo Molnar38bed542007-02-22 09:09:34 +01002614HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2615P: Thomas Gleixner
2616M: tglx@linutronix.de
2617L: linux-kernel@vger.kernel.org
2618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002619F: Documentation/timers/
2620F: kernel/hrtimer.c
2621F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623HIGH-SPEED SCC DRIVER FOR AX.25
2624P: Klaus Kudielka
2625M: klaus.kudielka@ieee.org
2626L: linux-hams@vger.kernel.org
2627W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: drivers/net/hamradio/dmascc.c
2630F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002632HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2633P: HighPoint Linux Team
2634M: linux@highpoint-tech.com
2635W: http://www.highpoint-tech.com
2636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002637F: Documentation/scsi/hptiop.txt
2638F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002639
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640HIPPI
2641P: Jes Sorensen
2642M: jes@trained-monkey.org
2643L: linux-hippi@sunsite.dk
2644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002645F: include/linux/hippidevice.h
2646F: include/linux/if_hippi.h
2647F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Jouni Malinenff1d2762005-05-12 22:54:16 -04002649HOST AP DRIVER
2650P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002651M: j@w1.fi
2652L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002653L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002654W: http://hostap.epitest.fi/
2655S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002656F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002657
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002658HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2659P: Carlos Corbacho
2660M: carlos@strangeworlds.co.uk
2661S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002662F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002663
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002664HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2665P: Jaroslav Kysela
2666M: perex@perex.cz
2667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002668F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002669
Joe Perches7d2c86b2009-04-07 20:59:01 -07002670HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002671P: Clemens Ladisch
2672M: clemens@ladisch.de
2673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002674F: Documentation/timers/hpet.txt
2675F: drivers/char/hpet.c
2676F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002677
2678HPET: i386
2679P: Venkatesh Pallipadi (Venki)
2680M: venkatesh.pallipadi@intel.com
2681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002682F: arch/x86/kernel/hpet.c
2683F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002684
2685HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002686P: Vojtech Pavlik
2687M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002688S: Maintained
2689
Joe Perches7d2c86b2009-04-07 20:59:01 -07002690HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002691P: Bob Picco
2692M: bob.picco@hp.com
2693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002694F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002695
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696HPFS FILESYSTEM
2697P: Mikulas Patocka
2698M: mikulas@artax.karlin.mff.cuni.cz
2699W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002701F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Joe Perches7d2c86b2009-04-07 20:59:01 -07002703HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002704P: Jan Dumon
2705M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002706W: http://www.pharscape.org
2707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002708F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002709
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002710HTCPEN TOUCHSCREEN DRIVER
2711P: Pau Oliva Fora
2712M: pof@eslack.org
2713L: linux-input@vger.kernel.org
2714S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002715F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717HUGETLB FILESYSTEM
2718P: William Irwin
2719M: wli@holomorphy.com
2720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002723I2C/SMBUS STUB DRIVER
2724P: Mark M. Hoffman
2725M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002726L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002728F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002729
Jean Delvare5b543962005-08-15 19:51:02 +02002730I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002731P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002733P: Ben Dooks (embedded platforms)
2734M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002735L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002736W: http://i2c.wiki.kernel.org/
2737T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002739F: Documentation/i2c/
2740F: drivers/i2c/
2741F: include/linux/i2c.h
2742F: include/linux/i2c-dev.h
2743F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Till Harbaume8c76ee2007-05-01 23:26:35 +02002745I2C-TINY-USB DRIVER
2746P: Till Harbaum
2747M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002748L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002749W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002751F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002754P: H. Peter Anvin
2755M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756L: Linux-Kernel@vger.kernel.org
2757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761P: H. Peter Anvin
2762M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002763T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764S: Maintained
2765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766IA64 (Itanium) PLATFORM
2767P: Tony Luck
2768M: tony.luck@intel.com
2769L: linux-ia64@vger.kernel.org
2770W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002771T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002773F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775IBM MCA SCSI SUBSYSTEM DRIVER
2776P: Michael Lang
2777M: langa2@kph.uni-mainz.de
2778W: http://www.uni-mainz.de/~langm000/linux.html
2779S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002780F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782IBM Power Linux RAID adapter
2783P: Brian King
2784M: brking@us.ibm.com
2785S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002786F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788IBM ServeRAID RAID DRIVER
2789P: Jack Hammer
2790P: Dave Jeffery
2791M: ipslinux@adaptec.com
2792W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002793S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002794F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002796IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002798M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewiczb930f962009-04-23 22:53:45 +02002800T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: Documentation/ide/
2803F: drivers/ide/
2804F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002806IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002807P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002808M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002809L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002811F: Documentation/cdrom/ide-cd
2812F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Andy Henroid27471fd2008-10-09 11:45:22 -07002814IDLE-I7300
2815P: Andy Henroid
2816M: andrew.d.henroid@intel.com
2817L: linux-pm@lists.linux-foundation.org
2818S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002819F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002820
Joe Perches7d2c86b2009-04-07 20:59:01 -07002821IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002823M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002824P: Stefan Richter
2825M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826L: linux1394-devel@lists.sourceforge.net
2827W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002828T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002830F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Joe Perches7d2c86b2009-04-07 20:59:01 -07002832IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833P: Dan Dennedy
2834M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002835P: Stefan Richter
2836M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002840
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002841INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2842P: Mimi Zohar
2843M: zohar@us.ibm.com
2844S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002845F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002848L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002849S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852INFINIBAND SUBSYSTEM
2853P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002854M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002856M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002858M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002859L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002861T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002863F: Documentation/infiniband/
2864F: drivers/infiniband/
2865F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Robert Lovec9f04f52005-07-15 12:21:07 -04002867INOTIFY
Cal Peake18b36c72006-12-12 20:18:16 +01002868P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002869M: john@johnmccutchan.com
Cal Peake18b36c72006-12-12 20:18:16 +01002870P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002871M: rlove@rlove.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002872L: linux-kernel@vger.kernel.org
2873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002874F: Documentation/filesystems/inotify.txt
2875F: fs/notify/inotify/
2876F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002877
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002878INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2879P: Dmitry Torokhov
2880M: dmitry.torokhov@gmail.com
2881M: dtor@mail.ru
2882L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002883T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002885F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002886
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002887INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002888P: Sylvain Meyer
2889M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002890L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002891S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002892F: Documentation/fb/intelfb.txt
2893F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002894
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002896P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002897M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002898L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002900F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302902INTEL MENLOW THERMAL DRIVER
2903P: Sujith Thomas
2904M: sujith.thomas@intel.com
2905L: linux-acpi@vger.kernel.org
2906W: http://www.lesswatts.org/projects/acpi/
2907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002908F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910INTEL IA32 MICROCODE UPDATE SUPPORT
2911P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002912M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: arch/x86/kernel/microcode_core.c
2915F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002917INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002918P: Maciej Sosnowski
2919M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002920L: linux-kernel@vger.kernel.org
2921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002922F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002923
David Woodhouse6c8909b2008-10-18 16:12:17 +01002924INTEL IOMMU (VT-d)
2925P: David Woodhouse
2926M: dwmw2@infradead.org
2927L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002928T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002929S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002930F: drivers/pci/intel-iommu.c
2931F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002932
Dan Williamsb3e5f262007-08-07 10:26:35 -07002933INTEL IOP-ADMA DMA DRIVER
2934P: Dan Williams
2935M: dan.j.williams@intel.com
2936L: linux-kernel@vger.kernel.org
2937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002938F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002939
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002940INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2941P: Krzysztof Halasa
2942M: khc@pm.waw.pl
2943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002944F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2945F: arch/arm/mach-ixp4xx/include/mach/npe.h
2946F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2947F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2948F: drivers/net/arm/ixp4xx_eth.c
2949F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002950
Michael Buesch844dd052006-06-26 00:24:59 -07002951INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2952P: Deepak Saxena
2953M: dsaxena@plexity.net
2954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002955F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002956
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002957INTEL IXP2000 ETHERNET DRIVER
2958P: Lennert Buytenhek
2959M: kernel@wantstofly.org
2960L: netdev@vger.kernel.org
2961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002962F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002963
Auke Kokd94e6fe2008-03-03 14:37:47 -08002964INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002965P: Jeff Kirsher
2966M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002967P: Jesse Brandeburg
2968M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002969P: Bruce Allan
2970M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002971P: PJ Waskiewicz
2972M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002973P: John Ronciak
2974M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002975L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002976W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002978F: drivers/net/e100.c
2979F: drivers/net/e1000/
2980F: drivers/net/e1000e/
2981F: drivers/net/igb/
2982F: drivers/net/ixgb/
2983F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
James Ketrenos826d2ab2005-11-07 18:56:59 -06002985INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002986P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002987M: yi.zhu@intel.com
2988P: James Ketrenos
2989M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002990P: Reinette Chatre
2991M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002992L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002993L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002994W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002995W: http://ipw2100.sourceforge.net
2996S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002997F: Documentation/networking/README.ipw2100
2998F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002999
3000INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08003001P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06003002M: yi.zhu@intel.com
3003P: James Ketrenos
3004M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003005P: Reinette Chatre
3006M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07003007L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07003008L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08003009W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06003010W: http://ipw2200.sourceforge.net
3011S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003012F: Documentation/networking/README.ipw2200
3013F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003014
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003015INTEL WIRELESS WIMAX CONNECTION 2400
3016P: Inaky Perez-Gonzalez
3017M: inaky.perez-gonzalez@intel.com
3018M: linux-wimax@intel.com
3019L: wimax@linuxwimax.org
3020S: Supported
3021W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003022F: Documentation/wimax/README.i2400m
3023F: drivers/net/wimax/i2400m/
3024F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003025
Zhu Yib481de92007-09-25 17:54:57 -07003026INTEL WIRELESS WIFI LINK (iwlwifi)
3027P: Zhu Yi
3028M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08003029P: Reinette Chatre
3030M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07003031L: linux-wireless@vger.kernel.org
3032L: ipw3945-devel@lists.sourceforge.net
3033W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003034T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003035S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003036F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003037
Ralf Baechlecb109a02007-08-30 23:56:30 -07003038IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039P: Ralf Baechle
3040M: ralf@linux-mips.org
3041L: linux-mips@linux-mips.org
3042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003043F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Ralf Baechlecb109a02007-08-30 23:56:30 -07003045IOC3 SERIAL DRIVER
3046P: Pat Gefre
3047M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08003048L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003050F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003051
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003052IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053P: Juanjo Ciarlante
3054M: jjciarla@raiz.uncu.edu.ar
3055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003056F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Francois Romieu1202d6f2007-09-17 17:13:55 -07003058IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
3059P: Francois Romieu
3060M: romieu@fr.zoreil.com
3061P: Sorbica Shieh
3062M: sorbica@icplus.com.tw
3063P: Jesse Huang
3064M: jesse@icplus.com.tw
3065L: netdev@vger.kernel.org
3066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003067F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07003068
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003069IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08003070P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07003071M: infinipath@qlogic.com
3072L: general@lists.openfabrics.org
3073T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003074S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003075F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003076
Corey Minyard4409ebe2006-04-20 02:43:12 -07003077IPMI SUBSYSTEM
3078P: Corey Minyard
3079M: minyard@acm.org
3080L: openipmi-developer@lists.sourceforge.net
3081W: http://openipmi.sourceforge.net/
3082S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003083F: Documentation/IPMI.txt
3084F: drivers/char/ipmi/
3085F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003086
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003087IPS SCSI RAID DRIVER
3088P: Adaptec OEM Raid Solutions
3089M: aacraid@adaptec.com
3090L: linux-scsi@vger.kernel.org
3091W: http://www.adaptec.com/
3092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003093F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003094
3095IPVS
3096P: Wensong Zhang
3097M: wensong@linux-vs.org
3098P: Simon Horman
3099M: horms@verge.net.au
3100P: Julian Anastasov
3101M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07003102L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003103L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: Documentation/networking/ipvs-sysctl.txt
3106F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Randy Dunlape7839f22008-10-12 16:11:45 -07003108IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003109P: Jiri Kosina
3110M: jkosina@suse.cz
3111P: David Sterba
3112M: dsterba@suse.cz
3113S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003114T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003115F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003116
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003117IPX NETWORK LAYER
3118P: Arnaldo Carvalho de Melo
3119M: acme@ghostprotocols.net
3120L: netdev@vger.kernel.org
3121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: include/linux/ipx.h
3123F: include/net/ipx.h
3124F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003125
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003127P: Samuel Ortiz
3128M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003129L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003132F: Documentation/networking/irda.txt
3133F: drivers/net/irda/
3134F: include/net/irda/
3135F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003137ISAPNP
3138P: Jaroslav Kysela
3139M: perex@perex.cz
3140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003141F: Documentation/isapnp.txt
3142F: drivers/pnp/isapnp/
3143F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003144
Mike Christie14816b12007-11-28 16:22:06 -08003145ISCSI
3146P: Mike Christie
3147M: michaelc@cs.wisc.edu
3148L: open-iscsi@googlegroups.com
3149W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003150T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003152F: drivers/scsi/*iscsi*
3153F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155ISDN SUBSYSTEM
3156P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003157M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003158L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003160T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003162F: Documentation/isdn/
3163F: drivers/isdn/
3164F: include/linux/isdn.h
3165F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167ISDN SUBSYSTEM (Eicon active card driver)
3168P: Armin Schindler
3169M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003170L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://www.melware.de
3172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003173F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Hans Verkuil91821ff2007-12-02 09:35:33 -03003175IVTV VIDEO4LINUX DRIVER
3176P: Hans Verkuil
3177M: hverkuil@xs4all.nl
3178L: ivtv-devel@ivtvdriver.org
3179L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003180L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003181T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003182W: http://www.ivtvdriver.org
3183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003184F: Documentation/video4linux/*.ivtv
3185F: drivers/media/video/ivtv/
3186F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003188JFS FILESYSTEM
3189P: Dave Kleikamp
3190M: shaggy@austin.ibm.com
3191L: jfs-discussion@lists.sourceforge.net
3192W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003193T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003195F: Documentation/filesystems/jfs.txt
3196F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003197
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003198JME NETWORK DRIVER
3199P: Guo-Fu Tseng
3200M: cooldavid@cooldavid.org
3201L: netdev@vger.kernel.org
3202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003203F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3206P: David Woodhouse
3207M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003208L: linux-mtd@lists.infradead.org
3209W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003211F: fs/jffs2/
3212F: include/linux/jffs2.h
3213F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Josh Triplettde456d32006-07-30 03:04:00 -07003215JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003216P: Stephen Tweedie
3217M: sct@redhat.com
3218P: Andrew Morton
3219M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003220L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003222F: fs/jbd*/
3223F: include/linux/ext*jbd*.h
3224F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003225
Rudolf Marek4660cb32006-10-08 22:01:26 +02003226K8TEMP HARDWARE MONITORING DRIVER
3227P: Rudolf Marek
3228M: r.marek@assembler.cz
3229L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: Documentation/hwmon/k8temp
3232F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234KCONFIG
3235P: Roman Zippel
3236M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003237L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003239F: Documentation/kbuild/kconfig-language.txt
3240F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Vivek Goyalea6c2082006-05-20 14:59:55 -07003242KDUMP
3243P: Vivek Goyal
Vivek Goyal4200b662007-12-01 12:16:30 -08003244M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003245P: Haren Myneni
3246M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003247L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003248L: linux-kernel@vger.kernel.org
3249W: http://lse.sourceforge.net/kdump/
3250S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003251F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253KERNEL AUTOMOUNTER (AUTOFS)
3254P: H. Peter Anvin
3255M: hpa@zytor.com
3256L: autofs@linux.kernel.org
3257S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003258F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260KERNEL AUTOMOUNTER v4 (AUTOFS4)
3261P: Ian Kent
3262M: raven@themaw.net
3263L: autofs@linux.kernel.org
3264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003265F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Joe Perches7d2c86b2009-04-07 20:59:01 -07003267KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268P: Sam Ravnborg
3269M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003270T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3271T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003272L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003274F: Documentation/kbuild/
3275F: Makefile
3276F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278KERNEL JANITORS
3279P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003280L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282S: Maintained
3283
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003284KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003285P: J. Bruce Fields
3286M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003288M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003289L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003292F: fs/nfsd/
3293F: include/linux/nfsd/
3294F: fs/lockd/
3295F: fs/nfs_common/
3296F: net/sunrpc/
3297F: include/linux/lockd/
3298F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Avi Kivity426d62e2006-12-13 00:34:03 -08003300KERNEL VIRTUAL MACHINE (KVM)
3301P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003302M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003303L: kvm@vger.kernel.org
3304W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003306F: Documentation/*/kvm.txt
3307F: arch/*/kvm/
3308F: arch/*/include/asm/kvm*
3309F: include/linux/kvm*
3310F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003311
Joerg Roedelad8003d2008-09-10 20:01:07 +02003312KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3313P: Joerg Roedel
3314M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003315L: kvm@vger.kernel.org
3316W: http://kvm.qumranet.com
3317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003318F: arch/x86/include/asm/svm.h
3319F: arch/x86/kvm/kvm_svm.h
3320F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003321
Hollis Blanchard513014b2008-04-16 23:28:08 -05003322KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3323P: Hollis Blanchard
3324M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003325L: kvm-ppc@vger.kernel.org
3326W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003327S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003328F: arch/powerpc/include/asm/kvm*
3329F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003330
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003331KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003332P: Xiantao Zhang
3333M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003334L: kvm-ia64@vger.kernel.org
3335W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003337F: Documentation/ia64/kvm.txt
3338F: arch/ia64/include/asm/kvm*
3339F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003340
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003341KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3342P: Carsten Otte
3343M: cotte@de.ibm.com
3344P: Christian Borntraeger
3345M: borntraeger@de.ibm.com
3346M: linux390@de.ibm.com
3347L: linux-s390@vger.kernel.org
3348W: http://www.ibm.com/developerworks/linux/linux390/
3349S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003350F: Documentation/s390/kvm.txt
3351F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003352F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003353
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003354KEXEC
3355P: Eric Biederman
3356M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003357W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003358L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07003359L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003361F: include/linux/kexec.h
3362F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003363
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003364KGDB
3365P: Jason Wessel
3366M: jason.wessel@windriver.com
3367L: kgdb-bugreport@lists.sourceforge.net
3368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003369F: Documentation/DocBook/kgdb.tmpl
3370F: drivers/misc/kgdbts.c
3371F: drivers/serial/kgdboc.c
3372F: include/linux/kgdb.h
3373F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003374
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003375KMEMTRACE
3376P: Eduard - Gabriel Munteanu
3377M: eduard.munteanu@linux360.ro
3378L: linux-kernel@vger.kernel.org
3379S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003380F: Documentation/trace/kmemtrace.txt
Joe Perches679655d2009-04-07 20:44:32 -07003381F: include/trace/kmemtrace.h
3382F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003383
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003384KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003385P: Ananth N Mavinakayanahalli
3386M: ananth@in.ibm.com
3387P: Anil S Keshavamurthy
3388M: anil.s.keshavamurthy@intel.com
3389P: David S. Miller
3390M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003391P: Masami Hiramatsu
3392M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003393L: linux-kernel@vger.kernel.org
3394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003395F: Documentation/kprobes.txt
3396F: include/linux/kprobes.h
3397F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003398
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003399KS0108 LCD CONTROLLER DRIVER
3400P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003401M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003402L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07003403W: http://miguelojeda.es/auxdisplay.htm
3404W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003406F: Documentation/auxdisplay/ks0108
3407F: drivers/auxdisplay/ks0108.c
3408F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003409
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003412S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003413F: Documentation/networking/lapb-module.txt
3414F: include/*/lapb.h
3415F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
3417LASI 53c700 driver for PARISC
3418P: James E.J. Bottomley
3419M: James.Bottomley@HansenPartnership.com
3420L: linux-scsi@vger.kernel.org
3421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003422F: Documentation/scsi/53c700.txt
3423F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Richard Purdie263de9b2006-05-15 09:44:16 -07003425LED SUBSYSTEM
3426P: Richard Purdie
3427M: rpurdie@rpsys.net
3428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003429F: drivers/leds/
3430F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432LEGO USB Tower driver
3433P: Juergen Stuber
3434M: starblue@users.sourceforge.net
3435L: legousb-devel@lists.sourceforge.net
3436W: http://legousb.sourceforge.net/
3437S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003438F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Rusty Russell568a17f2007-10-25 14:12:24 +10003440LGUEST
3441P: Rusty Russell
3442M: rusty@rustcorp.com.au
3443L: lguest@ozlabs.org
3444W: http://lguest.ozlabs.org/
3445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: Documentation/lguest/
3447F: arch/x86/lguest/
3448F: drivers/lguest/
3449F: include/linux/lguest*.h
3450F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452LINUX FOR IBM pSERIES (RS/6000)
3453P: Paul Mackerras
3454M: paulus@au.ibm.com
3455W: http://www.ibm.com/linux/ltc/projects/ppc
3456S: Supported
3457
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003458LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003459P: Benjamin Herrenschmidt
3460M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003461P: Paul Mackerras
3462M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463W: http://www.penguinppc.org/
3464L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003465T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466S: Supported
3467
3468LINUX FOR POWER MACINTOSH
3469P: Benjamin Herrenschmidt
3470M: benh@kernel.crashing.org
3471W: http://www.penguinppc.org/
3472L: linuxppc-dev@ozlabs.org
3473S: Maintained
3474
Grant Likely77a76362008-07-12 12:11:43 -06003475LINUX FOR POWERPC EMBEDDED MPC5XXX
Grant Likelye1eea9f2007-10-09 14:45:26 -06003476P: Grant Likely
3477M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003479T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480S: Maintained
3481
3482LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003483P: Josh Boyer
3484M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485P: Matt Porter
3486M: mporter@kernel.crashing.org
3487W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003488L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490S: Maintained
3491
Grant Likely260c02a2007-10-02 12:15:34 +10003492LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3493P: Grant Likely
3494M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003495W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003496L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003497T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498S: Maintained
3499
Tom Rinie93adf12005-07-26 12:49:53 -07003500LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003501P: Vitaly Bordug
3502M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003503P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003504M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003505W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003506L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003507S: Maintained
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003510P: Kumar Gala
3511M: galak@kernel.crashing.org
3512W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003513L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003514S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515
Olof Johanssonab06ff32006-09-06 14:44:54 -05003516LINUX FOR POWERPC PA SEMI PWRFICIENT
3517P: Olof Johansson
3518M: olof@lixom.net
3519W: http://www.pasemi.com/
3520L: linuxppc-dev@ozlabs.org
3521S: Supported
3522
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523LINUX SECURITY MODULE (LSM) FRAMEWORK
3524P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003525M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003526L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003527T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528S: Supported
3529
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003530LLC (802.2)
3531P: Arnaldo Carvalho de Melo
3532M: acme@ghostprotocols.net
3533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: include/linux/llc.h
3535F: include/net/llc*
3536F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003537
Pavel Machek455fbdd2008-11-12 13:27:02 -08003538LIS3LV02D ACCELEROMETER DRIVER
3539P: Eric Piel
3540M: eric.piel@tremplin-utc.net
3541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003542F: Documentation/hwmon/lis3lv02d
3543F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545LM83 HARDWARE MONITOR DRIVER
3546P: Jean Delvare
3547M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003548L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003550F: Documentation/hwmon/lm83
3551F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553LM90 HARDWARE MONITOR DRIVER
3554P: Jean Delvare
3555M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003556L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: Documentation/hwmon/lm90
3559F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003561LOCKDEP AND LOCKSTAT
3562P: Peter Zijlstra
3563M: peterz@infradead.org
3564P: Ingo Molnar
3565M: mingo@redhat.com
3566L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003567T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003569F: Documentation/lockdep*.txt
3570F: Documentation/lockstat.txt
3571F: include/linux/lockdep.h
3572F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003573
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003574LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575P: Richard Russon (FlatCap)
3576M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003577L: linux-ntfs-dev@lists.sourceforge.net
3578W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003580F: Documentation/ldm.txt
3581F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003583LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3584P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003585M: Eric.Moore@lsi.com
3586M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003587L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003588L: linux-scsi@vger.kernel.org
3589W: http://www.lsilogic.com/support
3590S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003591F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3594P: Matthew Wilcox
3595M: matthew@wil.cx
3596L: linux-scsi@vger.kernel.org
3597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003598F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Mike Frysinger81365c32008-10-29 14:01:12 -07003600LTP (Linux Test Project)
3601P: Subrata Modak
3602M: subrata@linux.vnet.ibm.com
3603P: Mike Frysinger
3604M: vapier@gentoo.org
3605L: ltp-list@lists.sourceforge.net (subscribers-only)
3606W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003607T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003608S: Maintained
3609
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003610M32R ARCHITECTURE
3611P: Hirokazu Takata
3612M: takata@linux-m32r.org
3613L: linux-m32r@ml.linux-m32r.org
3614L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3615W: http://www.linux-m32r.org/
3616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: arch/m32r/
3618F: include/asm-m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003619
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620M68K ARCHITECTURE
3621P: Geert Uytterhoeven
3622M: geert@linux-m68k.org
3623P: Roman Zippel
3624M: zippel@linux-m68k.org
3625L: linux-m68k@lists.linux-m68k.org
3626W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003627T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003629F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003630F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
3632M68K ON APPLE MACINTOSH
3633P: Joshua Thompson
3634M: funaho@jurai.org
3635W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003636L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003638F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639
3640M68K ON HP9000/300
3641P: Philip Blundell
3642M: philb@gnu.org
3643W: http://www.tazenda.demon.co.uk/phil/linux-hp
3644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003645F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Jiri Benc64a327a2007-05-05 11:47:08 -07003647MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003648P: Johannes Berg
3649M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003650L: linux-wireless@vger.kernel.org
3651W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003652T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003654F: Documentation/networking/mac80211-injection.txt
3655F: include/net/mac80211.h
3656F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003657
Stefano Brivio1036d862007-12-23 04:46:27 +01003658MAC80211 PID RATE CONTROL
3659P: Stefano Brivio
3660M: stefano.brivio@polimi.it
3661P: Mattias Nissler
3662M: mattias.nissler@gmx.de
3663L: linux-wireless@vger.kernel.org
3664W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003665T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003668
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003669MACVLAN DRIVER
3670P: Patrick McHardy
3671M: kaber@trash.net
3672L: netdev@vger.kernel.org
3673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003674F: drivers/net/macvlan.c
3675F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003676
Michael Kerriskfaf16682005-07-31 22:34:47 -07003677MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003678P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003679M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003680W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003681L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003682S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003683
Stefano Brivio74cda162007-11-19 20:27:46 +01003684MARVELL LIBERTAS WIRELESS DRIVER
3685P: Dan Williams
3686M: dcbw@redhat.com
3687L: libertas-dev@lists.infradead.org
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003690
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003691MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003692P: Lennert Buytenhek
3693M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003694L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003695S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003696F: drivers/net/mv643xx_eth.*
3697F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
Pierre Ossman2a695672009-03-16 19:52:26 +01003699MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3700P: Nicolas Pitre
3701M: nico@cam.org
3702L: linux-kernel@vger.kernel.org
3703S: Maintained
3704
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003705MARVELL YUKON / SYSKONNECT DRIVER
3706P: Mirko Lindner
3707M: mlindner@syskonnect.de
3708P: Ralph Roesler
3709M: rroesler@syskonnect.de
3710W: http://www.syskonnect.com
3711S: Supported
3712
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713MATROX FRAMEBUFFER DRIVER
3714P: Petr Vandrovec
3715M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003716L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003718F: drivers/video/matrox/matroxfb_*
3719F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003721MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3722P: Hans J. Koch
3723M: hjk@linutronix.de
3724L: lm-sensors@lm-sensors.org
3725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/hwmon/max6650
3727F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003728
Joe Perches127c49a2009-04-08 08:34:04 -07003729MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3730P: Mauro Carvalho Chehab
3731M: mchehab@infradead.org
3732P: LinuxTV.org Project
3733L: linux-media@vger.kernel.org
3734W: http://linuxtv.org
3735T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3736S: Maintained
3737F: Documentation/dvb/
3738F: Documentation/video4linux/
3739F: drivers/media/
3740F: include/media/
3741F: include/linux/dvb/
3742F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003743
3744MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003745P: Neela Syam Kolli
Sumant Patrobdd0d752007-05-10 07:22:35 -07003746M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003747L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003748W: http://megaraid.lsilogic.com
3749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003750F: Documentation/scsi/megaraid.txt
3751F: drivers/scsi/megaraid.*
3752F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003753
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754MEMORY MANAGEMENT
3755L: linux-mm@kvack.org
3756L: linux-kernel@vger.kernel.org
3757W: http://www.linux-mm.org
3758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003759F: include/linux/mm.h
3760F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003761
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003762MEMORY RESOURCE CONTROLLER
3763P: Balbir Singh
3764M: balbir@linux.vnet.ibm.com
3765P: Pavel Emelyanov
3766M: xemul@openvz.org
3767P: KAMEZAWA Hiroyuki
3768M: kamezawa.hiroyu@jp.fujitsu.com
3769L: linux-mm@kvack.org
3770L: linux-kernel@vger.kernel.org
3771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003772F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774MEMORY TECHNOLOGY DEVICES (MTD)
3775P: David Woodhouse
3776M: dwmw2@infradead.org
3777W: http://www.linux-mtd.infradead.org/
3778L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003779T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003781F: drivers/mtd/
3782F: include/linux/mtd/
3783F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
Michal Simekc6375b02009-03-27 14:25:52 +01003785MICROBLAZE ARCHITECTURE
3786P: Michal Simek
3787M: monstr@monstr.eu
3788L: microblaze-uclinux@itee.uq.edu.au
3789W: http://www.monstr.eu/fdt/
3790T: git git://git.monstr.eu/linux-2.6-microblaze.git
3791S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003792F: arch/microblaze/
Michal Simekc6375b02009-03-27 14:25:52 +01003793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794MICROTEK X6 SCANNER
3795P: Oliver Neukum
3796M: oliver@neukum.name
3797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003798F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
3800MIPS
3801P: Ralf Baechle
3802M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003803W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003805T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003806S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003807F: Documentation/mips/
3808F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810MISCELLANEOUS MCA-SUPPORT
3811P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003812M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813L: linux-kernel@vger.kernel.org
3814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: Documentation/ia64/mca.txt
3816F: Documentation/mca.txt
3817F: drivers/mca/
3818F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
3820MODULE SUPPORT
3821P: Rusty Russell
3822M: rusty@rustcorp.com.au
3823L: linux-kernel@vger.kernel.org
3824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003825F: include/linux/module.h
3826F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827
3828MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3829P: Stelian Pop
3830M: stelian@popies.net
3831W: http://popies.net/meye/
3832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003833F: Documentation/video4linux/meye.txt
3834F: drivers/media/video/meye.*
3835F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Pavel Pisac58ff042007-05-16 01:10:41 +02003837MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3838P: Pavel Pisa
3839M: ppisa@pikron.com
3840L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844MOUSE AND MISC DEVICES [GENERAL]
3845P: Alessandro Rubini
3846M: rubini@ipvvis.unipv.it
3847L: linux-kernel@vger.kernel.org
3848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003849F: drivers/input/mouse/
3850F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851
Jiri Slabyb9705b62008-04-30 00:53:48 -07003852MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003853P: Jiri Slaby
3854M: jirislaby@gmail.com
3855L: linux-kernel@vger.kernel.org
3856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003857F: Documentation/serial/moxa-smartio
3858F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003859
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003860MSI LAPTOP SUPPORT
3861P: Lennart Poettering
3862M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003863W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003864W: http://0pointer.de/lennart/tchibo.html
3865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003866F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003867
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003868MULTIFUNCTION DEVICES (MFD)
3869P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003870M: sameo@linux.intel.com
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003871L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003872T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003874F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003875
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003876MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003877P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003878M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003879L: linux-kernel@vger.kernel.org
3880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003881F: drivers/mmc/
3882F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003883
David Brownell15a05802007-08-08 09:12:54 -07003884MULTIMEDIA CARD (MMC) ETC. OVER SPI
3885P: David Brownell
3886M: dbrownell@users.sourceforge.net
3887L: linux-kernel@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003888S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003889F: drivers/mmc/host/mmc_spi.c
3890F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003891
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892MULTISOUND SOUND DRIVER
3893P: Andrew Veliath
3894M: andrewtv@usa.net
3895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: Documentation/sound/oss/MultiSound
3897F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Jiri Slabyd7354102006-12-08 02:38:35 -08003899MULTITECH MULTIPORT CARD (ISICOM)
3900P: Jiri Slaby
3901M: jirislaby@gmail.com
3902L: linux-kernel@vger.kernel.org
3903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003904F: drivers/char/isicom.c
3905F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003906
Felipe Balbi550a7372008-07-24 12:27:36 +03003907MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003908P: Felipe Balbi
3909M: felipe.balbi@nokia.com
3910L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003911T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003914
Brice Goglin2d3cf582008-05-17 12:45:36 +02003915MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3916P: Andrew Gallatin
3917M: gallatin@myri.com
3918P: Brice Goglin
3919M: brice@myri.com
3920L: netdev@vger.kernel.org
3921W: http://www.myri.com/scs/download-Myri10GE.html
3922S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003923F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003926P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927M: thockin@hockin.org
3928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003929F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931NCP FILESYSTEM
3932P: Petr Vandrovec
3933M: vandrove@vc.cvut.cz
3934L: linware@sh.cvut.cz
3935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003936F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
3938NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3939P: James E.J. Bottomley
3940M: James.Bottomley@HansenPartnership.com
3941L: linux-scsi@vger.kernel.org
3942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003943F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003945NETEFFECT IWARP RNIC DRIVER (IW_NES)
3946P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003947M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003948P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003949M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003950L: general@lists.openfabrics.org
3951W: http://www.neteffect.com
3952S: Supported
3953F: drivers/infiniband/hw/nes/
3954
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003955NETEM NETWORK EMULATOR
3956P: Stephen Hemminger
Stephen Hemminger65ebe632007-01-23 11:38:57 -08003957M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003958L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003960F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003961
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003962NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003963P: Ramkrishna Vepa
3964M: ram.vepa@neterion.com
3965P: Rastapur Santosh
3966M: santosh.rastapur@neterion.com
3967P: Sivakumar Subramani
3968M: sivakumar.subramani@neterion.com
3969P: Sreenivasa Honnur
3970M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003971P: Anil Murthy
3972M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003973L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003974W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3975W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003976S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003977F: Documentation/networking/s2io.txt
3978F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003979
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980NETFILTER/IPTABLES/IPCHAINS
3981P: Rusty Russell
3982P: Marc Boucher
3983P: James Morris
3984P: Harald Welte
3985P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07003986P: Patrick McHardy
3987M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07003988L: netfilter-devel@vger.kernel.org
3989L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003990L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991W: http://www.netfilter.org/
3992W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003994F: include/linux/netfilter*
3995F: include/linux/netfilter/
3996F: include/net/netfilter/
3997F: net/*/netfilter.c
3998F: net/*/netfilter/
3999F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
Paul Moore4cc67732006-09-25 15:57:13 -07004001NETLABEL
4002P: Paul Moore
4003M: paul.moore@hp.com
4004W: http://netlabel.sf.net
4005L: netdev@vger.kernel.org
4006S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004007F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004008F: include/net/netlabel.h
4009F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004010
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011NETROM NETWORK LAYER
4012P: Ralf Baechle
4013M: ralf@linux-mips.org
4014L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004015W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004017F: include/linux/netrom.h
4018F: include/net/netrom.h
4019F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004021NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022P: Paul Clements
4023M: Paul.Clements@steeleye.com
4024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004025F: Documentation/blockdev/nbd.txt
4026F: drivers/block/nbd.c
4027F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029NETWORKING [GENERAL]
Ben Hutchings48f6e892009-04-09 05:47:41 +00004030P: David S. Miller
4031M: davem@davemloft.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004032L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004033W: http://www.linuxfoundation.org/en/Net
4034T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004036F: net/
4037F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039NETWORKING [IPv4/IPv6]
4040P: David S. Miller
4041M: davem@davemloft.net
4042P: Alexey Kuznetsov
4043M: kuznet@ms2.inr.ac.ru
4044P: Pekka Savola (ipv6)
4045M: pekkas@netcore.fi
4046P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04004047M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048P: Hideaki YOSHIFUJI
4049M: yoshfuji@linux-ipv6.org
4050P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07004051M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004052L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004053T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: net/ipv4/
4056F: net/ipv6/
4057F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
James Morris10e2ff12007-08-25 14:41:28 -07004059NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
4060P: Paul Moore
4061M: paul.moore@hp.com
4062L: netdev@vger.kernel.org
4063S: Maintained
4064
John W. Linville29f8f632006-01-18 14:52:48 -08004065NETWORKING [WIRELESS]
4066P: John W. Linville
4067M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004068L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004069T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004071F: net/wireless/
4072F: include/net/ieee80211*
4073F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08004074
Joe Perches788873a2009-04-16 09:38:45 +00004075NETWORKING DRIVERS
4076L: netdev@vger.kernel.org
4077W: http://www.linuxfoundation.org/en/Net
4078T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
4079S: Odd Fixes
4080F: drivers/net/
4081
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004082NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08004083P: Dhananjay Phadke
4084M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004085L: netdev@vger.kernel.org
4086W: http://www.netxen.com
4087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004088F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004089
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004090NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05004092M: Trond.Myklebust@netapp.com
4093L: linux-nfs@vger.kernel.org
4094W: http://client.linux-nfs.org
4095T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004097F: fs/lockd/
4098F: fs/nfs/
4099F: fs/nfs_common/
4100F: net/sunrpc/
4101F: include/linux/lockd/
4102F: include/linux/nfs*
4103F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
4105NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07004106P: Jan-Pascal van Best
4107M: janpascal@vanbest.org
4108P: Andreas Mohr
4109M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004110L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004112F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004114NILFS2 FILESYSTEM
4115P: KONISHI Ryusuke
4116M: konishi.ryusuke@lab.ntt.co.jp
4117L: users@nilfs.org
4118W: http://www.nilfs.org/en/
4119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004120F: Documentation/filesystems/nilfs2.txt
4121F: fs/nilfs2/
4122F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004123
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4125P: YOKOTA Hiroshi
4126M: yokota@netlab.is.tsukuba.ac.jp
4127W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004129F: Documentation/scsi/NinjaSCSI.txt
4130F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
4132NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4133P: GOTO Masanori
4134M: gotom@debian.or.jp
4135P: YOKOTA Hiroshi
4136M: yokota@netlab.is.tsukuba.ac.jp
4137W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004139F: Documentation/scsi/NinjaSCSI.txt
4140F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142NTFS FILESYSTEM
4143P: Anton Altaparmakov
4144M: aia21@cantab.net
4145L: linux-ntfs-dev@lists.sourceforge.net
4146L: linux-kernel@vger.kernel.org
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004147W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004148T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004150F: Documentation/filesystems/ntfs.txt
4151F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004153NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004154P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004155M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004156L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004158F: drivers/video/riva/
4159F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Bob Copeland0ad122d2008-07-25 19:45:18 -07004161OMFS FILESYSTEM
4162P: Bob Copeland
4163M: me@bobcopeland.com
4164L: linux-karma-devel@lists.sourceforge.net
4165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004166F: Documentation/filesystems/omfs.txt
4167F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004168
Harald Weltec1986ee2005-11-13 16:06:29 -08004169OMNIKEY CARDMAN 4000 DRIVER
4170P: Harald Welte
4171M: laforge@gnumonks.org
4172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004173F: drivers/char/pcmcia/cm4000_cs.c
4174F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004175
Harald Welte77c44ab2005-11-13 16:06:26 -08004176OMNIKEY CARDMAN 4040 DRIVER
4177P: Harald Welte
4178M: laforge@gnumonks.org
4179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004180F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004181
Jonathan Corbet77d51402007-03-22 19:44:17 -03004182OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004183P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004184M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004185L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004186T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004188F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004189
Thomas Gleixner431bca72007-05-02 09:31:35 +02004190ONENAND FLASH DRIVER
4191P: Kyungmin Park
4192M: kyungmin.park@samsung.com
4193L: linux-mtd@lists.infradead.org
4194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: drivers/mtd/onenand/
4196F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004197
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198ONSTREAM SCSI TAPE DRIVER
4199P: Willem Riede
4200M: osst@riede.org
4201L: osst-users@lists.sourceforge.net
4202L: linux-scsi@vger.kernel.org
4203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004204F: drivers/scsi/osst*
4205F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004207OPENCORES I2C BUS DRIVER
4208P: Peter Korsgaard
4209M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004210L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004212F: Documentation/i2c/busses/i2c-ocores
4213F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004216P: Robert Richter
4217M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218L: oprofile-list@lists.sf.net
4219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004220F: arch/*/oprofile/
4221F: drivers/oprofile/
4222F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004224ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4225P: Mark Fasheh
4226M: mfasheh@suse.com
4227P: Joel Becker
4228M: joel.becker@oracle.com
4229L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4230W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004231T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004232S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004233F: Documentation/filesystems/ocfs2.txt
4234F: Documentation/filesystems/dlmfs.txt
4235F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237ORINOCO DRIVER
4238P: Pavel Roskin
4239M: proski@gnu.org
4240P: David Gibson
4241M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004242L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004243L: orinoco-users@lists.sourceforge.net
4244L: orinoco-devel@lists.sourceforge.net
4245W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
Boaz Harrosh68274792009-01-25 17:24:14 +02004249OSD LIBRARY
4250P: Boaz Harrosh
4251M: bharrosh@panasas.com
4252P: Benny Halevy
4253M: bhalevy@panasas.com
4254L: osd-dev@open-osd.org
4255W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004256T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004257S: Maintained
4258
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004259P54 WIRELESS DRIVER
4260P: Michael Wu
4261M: flamingice@sourmilk.net
4262L: linux-wireless@vger.kernel.org
4263W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004264T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004267
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004268PA SEMI ETHERNET DRIVER
4269P: Olof Johansson
4270M: olof@lixom.net
4271L: netdev@vger.kernel.org
4272S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004273F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004274
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004275PA SEMI SMBUS DRIVER
4276P: Olof Johansson
4277M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004278L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004280F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004281
Harald Welte709ee532008-09-23 17:46:57 +02004282PANASONIC LAPTOP ACPI EXTRAS DRIVER
4283P: Harald Welte
4284M: laforge@gnumonks.org
4285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004286F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004287
David Howells4fa97182008-10-13 10:42:44 +01004288PANASONIC MN10300/AM33 PORT
4289P: David Howells
4290M: dhowells@redhat.com
4291P: Koichi Yasutake
4292M: yasutake.koichi@jp.panasonic.com
4293L: linux-am33-list@redhat.com (moderated for non-subscribers)
4294W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004296F: Documentation/mn10300/
4297F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004298
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004300L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004301S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004302F: drivers/parport/
4303F: include/linux/parport*.h
4304F: drivers/char/ppdev.c
4305F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004307PARAVIRT_OPS INTERFACE
4308P: Jeremy Fitzhardinge
4309M: jeremy@xensource.com
4310P: Chris Wright
4311M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004312P: Alok Kataria
4313M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004314P: Rusty Russell
4315M: rusty@rustcorp.com.au
4316L: virtualization@lists.osdl.org
4317L: linux-kernel@vger.kernel.org
4318S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004319F: Documentation/ia64/paravirt_ops.txt
4320F: arch/*/kernel/paravirt*
4321F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4324P: Tim Waugh
4325M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004326L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327W: http://www.torque.net/linux-pp.html
4328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004329F: Documentation/blockdev/paride.txt
4330F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
4332PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004333P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004334M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004335P: Helge Deller
4336M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004337L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004339T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004341F: arch/parisc/
4342F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Jim Cromie1662d322006-10-06 00:43:59 -07004344PC87360 HARDWARE MONITORING DRIVER
4345P: Jim Cromie
4346M: jim.cromie@gmail.com
4347L: lm-sensors@lm-sensors.org
4348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: Documentation/hwmon/pc87360
4350F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004351
4352PC8736x GPIO DRIVER
4353P: Jim Cromie
4354M: jim.cromie@gmail.com
4355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004356F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004357
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004358PCA9532 LED DRIVER
4359P: Riku Voipio
4360M: riku.voipio@iki.fi
4361S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004362F: drivers/leds/leds-pca9532.c
4363F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004364
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004365PCI ERROR RECOVERY
4366P: Linas Vepstas
4367M: linas@austin.ibm.com
4368L: linux-kernel@vger.kernel.org
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004369L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004370S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004371F: Documentation/PCI/pci-error-recovery.txt
4372F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004375P: Jesse Barnes
4376M: jbarnes@virtuousgeek.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377L: linux-kernel@vger.kernel.org
Jesse Barnes29054742008-05-03 08:35:49 -07004378L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004379T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004381F: Documentation/PCI/
4382F: drivers/pci/
4383F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004385PCIE HOTPLUG DRIVER
4386P: Kristen Carlson Accardi
4387M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004388L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004390F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004391
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004393P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004394L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004395W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004396T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004398F: Documentation/pcmcia/
4399F: drivers/pcmcia/
4400F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
4402PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004403P: Don Fry
4404M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004405L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004407F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004409PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004410P: Balbir Singh
4411M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004412L: linux-kernel@vger.kernel.org
4413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004414F: include/linux/delayacct.h
4415F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004416
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004417PERSONALITY HANDLING
4418P: Christoph Hellwig
4419M: hch@infradead.org
4420L: linux-abi-devel@lists.sourceforge.net
4421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004422F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004423
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004425P: Joern Engel
4426M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427L: linux-mtd@lists.infradead.org
4428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004429F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430
Peter Osterlund249a6772005-09-27 21:45:30 -07004431PKTCDVD DRIVER
4432P: Peter Osterlund
4433M: petero2@telia.com
4434L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07004435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004436F: drivers/block/pktcdvd.c
4437F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004438
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004440P: Thomas Gleixner
4441M: tglx@linutronix.de
Hormsf1c3ddf2006-01-15 02:18:28 +01004442L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004444F: fs/timerfd.c
4445F: include/linux/timer*
4446F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Anton Vorontsov3be86142007-07-15 04:43:36 +04004448POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4449P: Anton Vorontsov
4450M: cbou@mail.ru
4451P: David Woodhouse
4452M: dwmw2@infradead.org
4453L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004454T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004456F: include/linux/power_supply.h
4457F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459PNP SUPPORT
4460P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004461M: abelay@mit.edu
4462P: Bjorn Helgaas
4463M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004465F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466
Vitaly Wool999445d2007-01-04 13:07:03 +01004467PNXxxxx I2C DRIVER
4468P: Vitaly Wool
4469M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004470L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004472F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004473
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474PPP PROTOCOL DRIVERS AND COMPRESSORS
4475P: Paul Mackerras
4476M: paulus@samba.org
4477L: linux-ppp@vger.kernel.org
4478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004479F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
4481PPP OVER ATM (RFC 2364)
4482P: Mitchell Blank Jr
4483M: mitch@sfgoth.com
4484S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004485F: net/atm/pppoatm.c
4486F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
4488PPP OVER ETHERNET
4489P: Michal Ostrowski
Chris Wright5e70b7f2008-06-09 16:07:28 -07004490M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004492F: drivers/net/pppoe.c
4493F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494
James Chapmana6d23702007-06-27 15:53:17 -07004495PPP OVER L2TP
4496P: James Chapman
4497M: jchapman@katalix.com
4498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004499F: drivers/net/pppol2tp.c
4500F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502PREEMPTIBLE KERNEL
4503P: Robert Love
4504M: rml@tech9.net
4505L: linux-kernel@vger.kernel.org
4506L: kpreempt-tech@lists.sourceforge.net
4507W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4508S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004509F: Documentation/preempt-locking.txt
4510F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
4512PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004513P: Luis R. Rodriguez
4514M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004515L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516W: http://prism54.org
4517S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004518F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
4520PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4521P: Peter Denison
4522M: promise@pnd-pc.demon.co.uk
4523W: http://www.pnd-pc.demon.co.uk/promise/
4524S: Maintained
4525
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004526PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4527P: Mikael Pettersson
4528M: mikpe@it.uu.se
4529L: linux-ide@vger.kernel.org
4530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004531F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004532
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004533PS3 NETWORK SUPPORT
4534P: Masakazu Mokuno
4535M: mokuno@sm.sony.co.jp
4536L: netdev@vger.kernel.org
4537L: cbe-oss-dev@ozlabs.org
4538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004539F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004540
Geoff Levandf58a9d12006-11-23 00:46:51 +01004541PS3 PLATFORM SUPPORT
4542P: Geoff Levand
4543M: geoffrey.levand@am.sony.com
4544L: linuxppc-dev@ozlabs.org
4545L: cbe-oss-dev@ozlabs.org
4546S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004547F: arch/powerpc/boot/ps3*
4548F: arch/powerpc/include/asm/lv1call.h
4549F: arch/powerpc/include/asm/ps3*.h
4550F: arch/powerpc/platforms/ps3/
4551F: drivers/*/ps3*
4552F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004553F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004554F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004555F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004556
Jim Pariscffb4add2009-01-06 11:32:10 +00004557PS3VRAM DRIVER
4558P: Jim Paris
4559M: jim@jtan.com
4560L: cbe-oss-dev@ozlabs.org
4561S: Maintained
4562
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004563PTRACE SUPPORT
4564P: Roland McGrath
4565M: roland@redhat.com
4566P: Oleg Nesterov
4567M: oleg@redhat.com
4568L: linux-kernel@vger.kernel.org
4569S: Maintained
4570F: include/asm-generic/syscall.h
4571F: include/linux/ptrace.h
4572F: include/linux/regset.h
4573F: include/linux/tracehook.h
4574F: kernel/ptrace.c
4575
Michael Krufky83202042006-07-03 00:24:18 -07004576PVRUSB2 VIDEO4LINUX DRIVER
4577P: Mike Isely
4578M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004579L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004580L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004581W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004582T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004584F: Documentation/video4linux/README.pvrusb2
4585F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004586
Eric Miao30ec2612008-06-12 15:21:41 -07004587PXA2xx/PXA3xx SUPPORT
4588P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004589M: eric.y.miao@gmail.com
Eric Miao30ec2612008-06-12 15:21:41 -07004590P: Russell King
4591M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004592L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004594F: arch/arm/mach-pxa/
4595F: drivers/pcmcia/pxa2xx*
4596F: drivers/spi/pxa2xx*
4597F: drivers/usb/gadget/pxa2*
4598F: include/sound/pxa2xx-lib.h
4599F: sound/soc/pxa/pxa2xx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004601PXA168 SUPPORT
4602P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004603M: eric.y.miao@gmail.com
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004604P: Jason Chagas
4605M: jason.chagas@marvell.com
4606L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004607T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004608S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004609
Eric Miao5fa82eb2009-03-20 12:52:24 +08004610PXA910 SUPPORT
4611P: Eric Miao
Eric Miao7517b3f2009-06-13 00:10:17 +08004612M: eric.y.miao@gmail.com
Eric Miao5fa82eb2009-03-20 12:52:24 +08004613L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004614T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004615S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004616
Pierre Ossman272f1332007-05-14 21:25:26 +02004617PXA MMCI DRIVER
4618S: Orphan
4619
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004620PXA RTC DRIVER
4621P: Robert Jarzmik
4622M: robert.jarzmik@free.fr
4623L: rtc-linux@googlegroups.com
4624S: Maintained
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626QLOGIC QLA2XXX FC-SCSI DRIVER
4627P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004628M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629L: linux-scsi@vger.kernel.org
4630S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004631F: Documentation/scsi/LICENSE.qla2xxx
4632F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633
Ron Mercer5a4faa82006-07-25 00:40:21 -07004634QLOGIC QLA3XXX NETWORK DRIVER
4635P: Ron Mercer
4636M: linux-driver@qlogic.com
4637L: netdev@vger.kernel.org
4638S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004639F: Documentation/networking/LICENSE.qla3xxx
4640F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004641
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004642QLOGIC QLGE 10Gb ETHERNET DRIVER
4643P: Ron Mercer
4644M: linux-driver@qlogic.com
4645M: ron.mercer@qlogic.com
4646L: netdev@vger.kernel.org
4647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004648F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004649
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650QNX4 FILESYSTEM
4651P: Anders Larsen
4652M: al@alarsen.net
4653L: linux-kernel@vger.kernel.org
4654W: http://www.alarsen.net/linux/qnx4fs/
4655S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004656F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004657F: include/linux/qnx4_fs.h
4658F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659
4660RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004661P: Benjamin Herrenschmidt
4662M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004663L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004665F: drivers/video/aty/radeon*
4666F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
4668RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004669P: Paul Mackerras
4670M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004671L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004673F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674
Randy Dunlape7839f22008-10-12 16:11:45 -07004675RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004676P: rt2x00 project
4677L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004678L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004679W: http://rt2x00.serialmonkey.com/
4680S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004681T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004682F: drivers/net/wireless/rt2x00/
4683
Nick Piggin9db55792008-02-08 04:19:49 -08004684RAMDISK RAM BLOCK DEVICE DRIVER
4685P: Nick Piggin
4686M: npiggin@suse.de
4687S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004688F: Documentation/blockdev/ramdisk.txt
4689F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004690
Matt Mackall9e95ce22005-04-16 15:25:56 -07004691RANDOM NUMBER DRIVER
4692P: Matt Mackall
4693M: mpm@selenic.com
4694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004695F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004696
Matt Porter394b7012005-11-07 01:00:15 -08004697RAPIDIO SUBSYSTEM
4698P: Matt Porter
4699M: mporter@kernel.crashing.org
4700L: linux-kernel@vger.kernel.org
4701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004702F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004703
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004704RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4705P: Corey Thomas
4706M: coreythomas@charter.net
4707L: linux-wireless@vger.kernel.org
4708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004709F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004710
4711RCUTORTURE MODULE
4712P: Josh Triplett
4713M: josh@freedesktop.org
4714L: linux-kernel@vger.kernel.org
4715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004716F: Documentation/RCU/torture.txt
4717F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004718
Florian Fainellic1f766b2008-02-06 22:39:44 +01004719RDC R-321X SoC
4720P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004721M: florian@openwrt.org
Florian Fainellic1f766b2008-02-06 22:39:44 +01004722L: linux-kernel@vger.kernel.org
4723S: Maintained
4724
Florian Fainellidb17f392007-12-19 11:30:30 +01004725RDC R6040 FAST ETHERNET DRIVER
4726P: Florian Fainelli
Florian Fainelli1e50cc92009-04-30 15:08:10 -07004727M: florian@openwrt.org
Florian Fainellidb17f392007-12-19 11:30:30 +01004728L: netdev@vger.kernel.org
4729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004730F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004731
Andy Grovera09ed662009-02-24 15:30:41 +00004732RDS - RELIABLE DATAGRAM SOCKETS
4733P: Andy Grover
4734M: andy.grover@oracle.com
4735L: rds-devel@oss.oracle.com
4736S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004737F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004738
Josh Triplett595182b2006-10-04 02:17:21 -07004739READ-COPY UPDATE (RCU)
4740P: Dipankar Sarma
4741M: dipankar@in.ibm.com
4742W: http://www.rdrop.com/users/paulmck/rclock/
4743L: linux-kernel@vger.kernel.org
4744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004745F: Documentation/RCU/rcu.txt
4746F: Documentation/RCU/rcuref.txt
4747F: include/linux/rcupdate.h
4748F: include/linux/srcu.h
4749F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004750
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751REAL TIME CLOCK DRIVER
4752P: Paul Gortmaker
4753M: p_gortmaker@yahoo.com
4754L: linux-kernel@vger.kernel.org
4755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004756F: Documentation/rtc.txt
4757F: drivers/rtc/
4758F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004760REAL TIME CLOCK (RTC) SUBSYSTEM
4761P: Alessandro Zummo
4762M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004763L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004765F: Documentation/rtc.txt
4766F: drivers/rtc/
4767F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004768
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004770L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004772F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Ivo van Doorne08976452008-04-12 19:23:55 +02004774RFKILL
4775P: Ivo van Doorn
4776M: IvDoorn@gmail.com
4777L: netdev@vger.kernel.org
4778S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004779F Documentation/rfkill.txt
4780F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004781
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004782RISCOM8 DRIVER
4783S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004784F: Documentation/serial/riscom8.txt
4785F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787ROCKETPORT DRIVER
4788P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789W: http://www.comtrol.com
4790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004791F: Documentation/serial/rocket.txt
4792F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
4794ROSE NETWORK LAYER
4795P: Ralf Baechle
4796M: ralf@linux-mips.org
4797L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004798W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004800F: include/linux/rose.h
4801F: include/net/rose.h
4802F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Larry Finger59840482008-11-12 17:13:09 -06004804RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004805P: John W. Linville
4806M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004807L: linux-wireless@vger.kernel.org
4808W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004809T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004811F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004812
Larry Finger59840482008-11-12 17:13:09 -06004813RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004814P: Herton Ronaldo Krzesinski
4815M: herton@mandriva.com.br
4816P: Hin-Tak Leung
4817M: htl10@users.sourceforge.net
4818P: Larry Finger
4819M: Larry.Finger@lwfinger.net
4820L: linux-wireless@vger.kernel.org
4821W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004822T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004824F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004825
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004826S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004827P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004828M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004829L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004831F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004832
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833S390
4834P: Martin Schwidefsky
4835M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004836P: Heiko Carstens
4837M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004839L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004840W: http://www.ibm.com/developerworks/linux/linux390/
4841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004842F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004843
4844S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004845P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004846M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004847P: Frank Blaschka
4848M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004849M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004850L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004851W: http://www.ibm.com/developerworks/linux/linux390/
4852S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004853F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004854
Felix Beckfeed9b62009-03-26 15:24:23 +01004855S390 ZCRYPT DRIVER
4856P: Felix Beck
4857M: felix.beck@de.ibm.com
4858P: Ralph Wuerthner
4859M: ralph.wuerthner@de.ibm.com
4860M: linux390@de.ibm.com
4861L: linux-s390@vger.kernel.org
4862S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004863F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004864
Heiko Carstens5238da42006-02-11 17:56:01 -08004865S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004866P: Christof Schmitt
4867M: christof.schmitt@de.ibm.com
4868P: Martin Peschke
4869M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004870M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004871L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004872W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004874F: Documentation/s390/zfcpdump.txt
4875F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
Ursula Braundd96df22007-09-19 13:09:02 +02004877S390 IUCV NETWORK LAYER
4878P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004879M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004880M: linux390@de.ibm.com
4881L: linux-s390@vger.kernel.org
4882W: http://www.ibm.com/developerworks/linux/linux390/
4883S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004884F: drivers/s390/net/*iucv*
4885F: include/net/iucv/
4886F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004887
Ben Dooks4dde7f72008-06-30 22:40:38 +01004888S3C24XX SD/MMC Driver
4889P: Ben Dooks
4890M: ben-linux@fluff.org
4891L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4892L: linux-kernel@vger.kernel.org
4893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004894F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004895
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896SAA7146 VIDEO4LINUX-2 DRIVER
4897P: Michael Hunold
4898M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004899L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004900T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901W: http://www.mihu.de/linux/saa7146
4902S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004903F: drivers/media/common/saa7146*
4904F: drivers/media/video/*7146*
4905F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907SC1200 WDT DRIVER
4908P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004909M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004911F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912
4913SCHEDULER
4914P: Ingo Molnar
4915M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02004916P: Peter Zijlstra
4917M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918L: linux-kernel@vger.kernel.org
4919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004920F: kernel/sched*
4921F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
4923SCSI CDROM DRIVER
4924P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02004925M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926L: linux-scsi@vger.kernel.org
4927W: http://www.kernel.dk
4928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
4931SCSI SG DRIVER
4932P: Doug Gilbert
4933M: dgilbert@interlog.com
4934L: linux-scsi@vger.kernel.org
4935W: http://www.torque.net/sg
4936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004937F: drivers/scsi/sg.c
4938F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940SCSI SUBSYSTEM
4941P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05004942M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004944T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4945T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4946T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: drivers/scsi/
4949F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950
4951SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02004952P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953M: Kai.Makisara@kolumbus.fi
4954L: linux-scsi@vger.kernel.org
4955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: Documentation/scsi/st.txt
4957F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958
4959SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004960P: Vlad Yasevich
4961M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01004962P: Sridhar Samudrala
4963M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07004964L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004965W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004967F: Documentation/networking/sctp.txt
4968F: include/linux/sctp.h
4969F: include/net/sctp/
4970F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971
4972SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07004973P: Jim Cromie
4974M: jim.cromie@gmail.com
4975S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004976F: Documentation/i2c/busses/scx200_acb
4977F: arch/x86/kernel/scx200_32.c
4978F: drivers/watchdog/scx200_wdt.c
4979F: drivers/i2c/busses/scx200*
4980F: drivers/mtd/maps/scx200_docflash.c
4981F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004982
4983SCx200 GPIO DRIVER
4984P: Jim Cromie
4985M: jim.cromie@gmail.com
4986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004987F: drivers/char/scx200_gpio.c
4988F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004989
4990SCx200 HRT CLOCKSOURCE DRIVER
4991P: Jim Cromie
4992M: jim.cromie@gmail.com
4993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004994F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Sascha Sommer6a369132008-07-15 14:21:29 +02004996SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
4997P: Sascha Sommer
4998M: saschasommer@freenet.de
4999L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005001F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005002
Randy Dunlape7839f22008-10-12 16:11:45 -07005003SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005004P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02005005M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01005006L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005007S: Maintained
5008
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005009SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
5010P: Anton Vorontsov
5011M: avorontsov@ru.mvista.com
5012L: linuxppc-dev@ozlabs.org
5013L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005015F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
James Morris8711cca2008-12-04 03:19:45 +11005017SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11005018P: James Morris
5019M: jmorris@namei.org
5020L: linux-kernel@vger.kernel.org
5021L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07005022T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005023W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005024S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005025F: security/
James Morris8711cca2008-12-04 03:19:45 +11005026
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027SECURITY CONTACT
5028P: Security Officers
5029M: security@kernel.org
5030S: Supported
5031
5032SELINUX SECURITY MODULE
5033P: Stephen Smalley
5034M: sds@tycho.nsa.gov
5035P: James Morris
5036M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05005037P: Eric Paris
5038M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039L: linux-kernel@vger.kernel.org (kernel issues)
Joe Perches7d2c86b2009-04-07 20:59:01 -07005040L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005041W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005042T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005044F: include/linux/selinux*
5045F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
Jiri Slabycef2cf02007-05-08 00:31:45 -07005047SENSABLE PHANTOM
5048P: Jiri Slaby
5049M: jirislaby@gmail.com
5050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: drivers/misc/phantom.c
5052F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005053
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005054SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055P: Jeff Garzik
5056M: jgarzik@pobox.com
5057L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005058T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005060F: drivers/ata/
5061F: include/linux/ata.h
5062F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005064SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
5065P: Sathya Perla
5066M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07005067P: Subbu Seetharaman
5068M: subbus@serverengines.com
5069L: netdev@vger.kernel.org
5070W: http://www.serverengines.com
5071S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005072F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005073
Ben Hutchings8ceee662008-04-27 12:55:59 +01005074SFC NETWORK DRIVER
5075P: Steve Hodgson
5076P: Ben Hutchings
5077P: Robert Stonehouse
5078M: linux-net-drivers@solarflare.com
5079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005080F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005081
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005082SGI GRU DRIVER
5083P: Jack Steiner
5084M: steiner@sgi.com
5085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005086F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005087
5088SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
5089P: Pat Gefre
5090M: pfg@sgi.com
5091L: linux-ia64@vger.kernel.org
5092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005093F: Documentation/ia64/serial.txt
5094F: drivers/serial/ioc?_serial.c
5095F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097SGI VISUAL WORKSTATION 320 AND 540
5098P: Andrey Panin
5099M: pazke@donpac.ru
5100L: linux-visws-devel@lists.sf.net
5101W: http://linux-visws.sf.net
5102S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005103F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
Jack Steiner75312612008-08-15 00:40:42 -07005105SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07005106P: Robin Holt
5107M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07005108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005109F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005110
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005111SHARP LH SUPPORT (LH7952X & LH7A40X)
5112P: Marc Singer
5113M: elf@buici.com
5114W: http://projects.buici.com/arm
5115L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
5116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005117F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5118F: arch/arm/mach-lh7a40x/
5119F: drivers/serial/serial_lh7a40x.c
5120F: drivers/usb/gadget/lh7a40*
5121F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005122
5123SHPC HOTPLUG DRIVER
5124P: Kristen Carlson Accardi
5125M: kristen.c.accardi@intel.com
5126L: linux-pci@vger.kernel.org
5127S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005128F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005129
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130SIMTEC EB110ATX (Chalice CATS)
5131P: Ben Dooks
5132P: Vincent Sanders
5133M: support@simtec.co.uk
5134W: http://www.simtec.co.uk/products/EB110ATX/
5135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005136F: arch/arm/mach-ebsa110/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
5138SIMTEC EB2410ITX (BAST)
5139P: Ben Dooks
5140P: Vincent Sanders
5141M: support@simtec.co.uk
5142W: http://www.simtec.co.uk/products/EB2410ITX/
5143S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005144F: arch/arm/mach-s3c2410/
5145F: drivers/*/*s3c2410*
5146F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
Francois Romieu92aab3c2005-07-30 13:11:18 +02005148SIS 190 ETHERNET DRIVER
5149P: Francois Romieu
5150M: romieu@fr.zoreil.com
5151L: netdev@vger.kernel.org
5152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005153F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155SIS 900/7016 FAST ETHERNET DRIVER
5156P: Daniele Venzano
5157M: venza@brownhat.org
5158W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005159L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005161F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005163SIS 96X I2C/SMBUS DRIVER
5164P: Mark M. Hoffman
5165M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005166L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005168F: Documentation/i2c/busses/i2c-sis96x
5169F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005170
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171SIS FRAMEBUFFER DRIVER
5172P: Thomas Winischhofer
5173M: thomas@winischhofer.net
5174W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005176F: Documentation/fb/sisfb.txt
5177F: drivers/video/sis/
5178F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
5180SIS USB2VGA DRIVER
5181P: Thomas Winischhofer
5182M: thomas@winischhofer.net
5183W: http://www.winischhofer.at/linuxsisusbvga.shtml
5184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005187SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5188P: Stephen Hemminger
5189M: shemminger@linux-foundation.org
5190L: netdev@vger.kernel.org
5191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005192F: drivers/net/skge.*
5193F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005194
Christoph Lameter415ad262007-07-26 10:40:56 -07005195SLAB ALLOCATOR
5196P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005197M: cl@linux-foundation.org
Christoph Lameter415ad262007-07-26 10:40:56 -07005198P: Pekka Enberg
5199M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005200P: Matt Mackall
5201M: mpm@selenic.com
Christoph Lameter415ad262007-07-26 10:40:56 -07005202L: linux-mm@kvack.org
5203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005204F: include/linux/sl?b*.h
5205F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005206
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207SMC91x ETHERNET DRIVER
5208P: Nicolas Pitre
5209M: nico@cam.org
5210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005211F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005213SMSC47B397 HARDWARE MONITOR DRIVER
5214P: Mark M. Hoffman
5215M: mhoffman@lightlink.com
5216L: lm-sensors@lm-sensors.org
5217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: Documentation/hwmon/smsc47b397
5219F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005220
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005221SMSC911x ETHERNET DRIVER
5222P: Steve Glendinning
5223M: steve.glendinning@smsc.com
5224L: netdev@vger.kernel.org
5225S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005226F: include/linux/smsc911x.h
5227F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005228
Steve Glendinning2cb37722008-12-11 20:54:30 -08005229SMSC9420 PCI ETHERNET DRIVER
5230P: Steve Glendinning
5231M: steve.glendinning@smsc.com
5232L: netdev@vger.kernel.org
5233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005234F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005235
Ben Nizetteb54f2862008-03-13 22:27:30 +11005236SMX UIO Interface
5237P: Ben Nizette
5238M: bn@niasdigital.com
5239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005240F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005241
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005242SN-IA64 (Itanium) SUB-PLATFORM
5243P: Jes Sorensen
5244M: jes@sgi.com
5245L: linux-altix@sgi.com
5246L: linux-ia64@vger.kernel.org
5247W: http://www.sgi.com/altix
5248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005249F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005250
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005251SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005252P: Guennadi Liakhovetski
5253M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005254L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005255T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: include/media/v4l2*
5258F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005259
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005260SOEKRIS NET48XX LED SUPPORT
5261P: Chris Boot
5262M: bootc@bootc.net
5263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005264F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005265
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005268M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005271F: drivers/md/
5272F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274SONIC NETWORK DRIVER
5275P: Thomas Bogendoerfer
5276M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005277L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005279F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280
Michael Buesch61e115a2007-09-18 15:12:50 -04005281SONICS SILICON BACKPLANE DRIVER (SSB)
5282P: Michael Buesch
5283M: mb@bu3sch.de
5284L: netdev@vger.kernel.org
5285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: drivers/ssb/
5287F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005288
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005290P: Mattia Dongili
5291M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005292L: linux-acpi@vger.kernel.org
5293W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005295F: Documentation/laptops/sony-laptop.txt
5296F: drivers/char/sonypi.c
5297F: drivers/platform/x86/sony-laptop.c
5298F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
Alex Dubovbaf85322008-02-09 10:20:54 -08005300SONY MEMORYSTICK CARD SUPPORT
5301P: Alex Dubov
5302M: oakad@yahoo.com
5303L: linux-kernel@vger.kernel.org
5304W: http://tifmxx.berlios.de/
5305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005306F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308SOUND
5309P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005310M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005311P: Takashi Iwai
5312M: tiwai@suse.de
Takashi Iwai82622042007-04-16 12:32:52 +02005313L: alsa-devel@alsa-project.org (subscribers-only)
Joe Perches3126a172009-04-15 23:38:45 -07005314W: http://www.alsa-project.org/
5315T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5316T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005318F: Documentation/sound/
5319F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005320F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
Mark Brownbd903bd2008-11-19 19:16:05 +00005322SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005323P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005324M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005325P: Mark Brown
5326M: broonie@opensource.wolfsonmicro.com
Joe Perches54e58812009-04-07 21:08:10 -07005327T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Takashi Iwai82622042007-04-16 12:32:52 +02005328L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005329W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005330S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005331F: sound/soc/
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005332
Sam Ravnborg473321f2009-01-04 15:47:49 -08005333SPARC + UltraSPARC (sparc/sparc64)
5334P: David S. Miller
5335M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005337T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5338T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341
5342SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5343P: Roger Wolff
5344M: R.E.Wolff@BitWizard.nl
Joe Perches7d2c86b2009-04-07 20:59:01 -07005345L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005347F: Documentation/serial/specialix.txt
5348F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005350SPI SUBSYSTEM
5351P: David Brownell
5352M: dbrownell@users.sourceforge.net
5353L: spi-devel-general@lists.sourceforge.net
5354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: Documentation/spi/
5356F: drivers/spi/
5357F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005358
Jim Lewis2752e402006-09-29 02:01:19 -07005359SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005360P: Ishizaki Kou
5361M: kou.ishizaki@toshiba.co.jp
5362P: Jens Osterkamp
5363M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005364L: netdev@vger.kernel.org
5365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005366F: Documentation/networking/spider_net.txt
5367F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005368
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005369SPU FILE SYSTEM
5370P: Jeremy Kerr
5371M: jk@ozlabs.org
5372L: linuxppc-dev@ozlabs.org
5373L: cbe-oss-dev@ozlabs.org
5374W: http://www.ibm.com/developerworks/power/cell/
5375S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005376F: Documentation/filesystems/spufs.txt
5377F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005378
Phillip Lougherfc555842009-01-05 08:46:29 +00005379SQUASHFS FILE SYSTEM
5380P: Phillip Lougher
5381M: phillip@lougher.demon.co.uk
5382L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5383W: http://squashfs.org.uk
5384S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005385F: Documentation/filesystems/squashfs.txt
5386F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005387
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388SRM (Alpha) environment access
5389P: Jan-Benedict Glaw
5390M: jbglaw@lug-owl.de
5391L: linux-kernel@vger.kernel.org
5392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394
Linus Torvalds26e9a392008-10-17 09:50:12 -07005395STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005396P: Greg Kroah-Hartman
5397M: greg@kroah.com
5398P: Chris Wright
5399M: chrisw@sous-sol.org
5400L: stable@kernel.org
5401S: Maintained
5402
Linus Torvalds26e9a392008-10-17 09:50:12 -07005403STAGING SUBSYSTEM
5404P: Greg Kroah-Hartman
5405M: gregkh@suse.de
5406L: linux-kernel@vger.kernel.org
5407T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005409F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411STARFIRE/DURALAN NETWORK DRIVER
5412P: Ion Badulescu
5413M: ionut@cs.columbia.edu
5414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005415F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416
5417STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5418W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005419S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005420F: drivers/net/wireless/strip.c
5421F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
5423STRADIS MPEG-2 DECODER DRIVER
5424P: Nathan Laredo
5425M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426W: http://www.stradis.com/
5427S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005428F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005430SUN3/3X
5431P: Sam Creasey
5432M: sammy@sammy.net
5433W: http://sammy.net/sun3/
5434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005435F: arch/m68k/kernel/*sun3*
5436F: arch/m68k/sun3*/
5437F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005438
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005439SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440P: Paul Mundt
5441M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005442L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005444T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005445S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005446F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005447F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005448F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005450SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005451P: Len Brown
5452M: len.brown@intel.com
5453P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005454M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005455P: Rafael J. Wysocki
5456M: rjw@sisk.pl
5457L: linux-pm@lists.linux-foundation.org
5458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005459F: Documentation/power/
5460F: arch/x86/kernel/acpi/
5461F: drivers/base/power/
5462F: kernel/power/
5463F: include/linux/suspend.h
5464F: include/linux/freezer.h
5465F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
5467SVGA HANDLING
5468P: Martin Mares
5469M: mj@ucw.cz
5470L: linux-video@atrey.karlin.mff.cuni.cz
5471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005472F: Documentation/svga.txt
5473F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
5475SYSV FILESYSTEM
5476P: Christoph Hellwig
5477M: hch@infradead.org
5478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005479F: Documentation/filesystems/sysv-fs.txt
5480F: fs/sysv/
5481F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
Alan Cox4e688522008-04-30 00:52:11 -07005483TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005484P: Balbir Singh
5485M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005486L: linux-kernel@vger.kernel.org
5487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005488F: Documentation/accounting/taskstats*
5489F: include/linux/taskstats*
5490F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005491
Stephen Hemminger781b4562006-07-10 20:25:29 -07005492TC CLASSIFIER
5493P: Jamal Hadi Salim
5494M: hadi@cyberus.ca
5495L: netdev@vger.kernel.org
5496S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005497F: include/linux/pkt_cls.h
5498F: include/net/pkt_cls.h
5499F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005500
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005501TCP LOW PRIORITY MODULE
5502P: Wong Hoi Sing, Edison
5503M: hswong3i@gmail.com
5504P: Hung Hing Lun, Mike
5505M: hlhung3i@gmail.com
5506W: http://tcp-lp-mod.sourceforge.net/
5507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005508F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005509
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005510TEHUTI ETHERNET DRIVER
5511P: Alexander Indenbaum
5512M: baum@tehutinetworks.net
5513P: Andy Gospodarek
5514M: andy@greyhouse.net
5515L: netdev@vger.kernel.org
5516S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005517F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005518
Alan Cox4e688522008-04-30 00:52:11 -07005519Telecom Clock Driver for MCPL0010
5520P: Mark Gross
5521M: mark.gross@intel.com
5522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005523F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005524
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005525TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005526P: Chris Zankel
5527M: chris@zankel.net
5528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005529F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005530
5531THINKPAD ACPI EXTRAS DRIVER
5532P: Henrique de Moraes Holschuh
5533M: ibm-acpi@hmh.eng.br
5534L: ibm-acpi-devel@lists.sourceforge.net
5535W: http://ibm-acpi.sourceforge.net
5536W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005537T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005540
Alex Dubov4020f2d2006-10-04 02:15:37 -07005541TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005542P: Alex Dubov
5543M: oakad@yahoo.com
5544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: drivers/misc/tifm*
5546F: drivers/mmc/host/tifm_sd.c
5547F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005548
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005549TI OMAP MMC INTERFACE DRIVER
5550P: Carlos Aguiar, Anderson Briglia and Syed Khasim
Dirk Behmeb6a7e4c2007-12-15 07:47:46 +01005551M: linux-omap@vger.kernel.org
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005552W: http://linux.omap.com
5553W: http://www.muru.com/linux/omap/
5554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005555F: drivers/mmc/host/omap.c
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005556
Michael Buesch844dd052006-06-26 00:24:59 -07005557TI OMAP RANDOM NUMBER GENERATOR SUPPORT
5558P: Deepak Saxena
5559M: dsaxena@plexity.net
5560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: drivers/char/hw_random/omap-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005562
Per Lidene86eaa32006-01-12 16:45:18 +01005563TIPC NETWORK LAYER
5564P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005565M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005566P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005567M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005568P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005569M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005570L: tipc-discussion@lists.sourceforge.net
5571W: http://tipc.sourceforge.net/
5572W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005573T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: include/linux/tipc*.h
5576F: include/net/tipc/
5577F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005578
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579TLAN NETWORK DRIVER
5580P: Samuel Chessman
5581M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005582L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583W: http://sourceforge.net/projects/tlan/
5584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005585F: Documentation/networking/tlan.txt
5586F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005588TOMOYO SECURITY MODULE
5589P: Kentaro Takeda
5590M: takedakn@nttdata.co.jp
5591P: Tetsuo Handa
5592M: penguin-kernel@I-love.SAKURA.ne.jp
5593L: linux-kernel@vger.kernel.org (kernel issues)
5594L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5595L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5596L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5597W: http://tomoyo.sourceforge.jp/
5598T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5599S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005600F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005601
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005603S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005604F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606TOSHIBA SMM DRIVER
5607P: Jonathan Buzzard
5608M: jonathan@buzzard.org.uk
5609L: tlinux-users@tce.toshiba-dme.co.jp
5610W: http://www.buzzard.org.uk/toshiba/
5611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005612F: drivers/char/toshiba.c
5613F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
Pierre Ossmand719f902009-03-24 21:06:09 +01005615TMIO MMC DRIVER
5616P: Ian Molton
5617M: ian@mnementh.co.uk
5618S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005619F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005620
Hugh Dickins98f32602009-05-21 20:33:58 +01005621TMPFS (SHMEM FILESYSTEM)
5622P: Hugh Dickins
5623M: hugh.dickins@tiscali.co.uk
5624L: linux-mm@kvack.org
5625S: Maintained
5626F: include/linux/shmem_fs.h
5627F: mm/shmem.c
5628
Alan Cox4e688522008-04-30 00:52:11 -07005629TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005630P: Debora Velarde
5631M: debora@linux.vnet.ibm.com
5632P: Rajiv Andrade
5633M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005634W: http://tpmdd.sourceforge.net
5635P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005636M: m.selhorst@sirrix.com
5637W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005638L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005641
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005643P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005644M: trivial@kernel.org
5645L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005646T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647S: Maintained
5648
Alan Cox4e688522008-04-30 00:52:11 -07005649TTY LAYER
5650P: Alan Cox
5651M: alan@lxorguk.ukuu.org.uk
5652L: linux-kernel@vger.kernel.org
5653S: Maintained
5654
Grant Grundler740db6d2008-02-17 11:53:49 -07005655TULIP NETWORK DRIVERS
5656P: Grant Grundler
5657M: grundler@parisc-linux.org
5658P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005659M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005660L: netdev@vger.kernel.org
5661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005662F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
5664TUN/TAP driver
5665P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005666M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667L: vtun@office.satix.net
5668W: http://vtun.sourceforge.net/tun
5669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005670F: Documentation/networking/tuntap.txt
5671F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005673TURBOCHANNEL SUBSYSTEM
5674P: Maciej W. Rozycki
5675M: macro@linux-mips.org
5676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005677F: drivers/tc/
5678F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005679
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680U14-34F SCSI DRIVER
5681P: Dario Ballabio
5682M: ballabio_dario@emc.com
5683L: linux-scsi@vger.kernel.org
5684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005685F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005687UBI FILE SYSTEM (UBIFS)
5688P: Artem Bityutskiy
5689M: dedekind@infradead.org
5690P: Adrian Hunter
5691M: ext-adrian.hunter@nokia.com
5692L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005693T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005694W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5695S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005696F: Documentation/filesystems/ubifs.txt
5697F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005698
Alan Coxcc2020e2008-05-19 14:21:51 +01005699UCLINUX (AND M68KNOMMU)
5700P: Greg Ungerer
5701M: gerg@uclinux.org
5702W: http://www.uclinux.org/
5703L: uclinux-dev@uclinux.org (subscribers-only)
5704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005705F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005706
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005707UCLINUX FOR RENESAS H8/300 (H8300)
Alan Coxcc2020e2008-05-19 14:21:51 +01005708P: Yoshinori Sato
5709M: ysato@users.sourceforge.jp
5710W: http://uclinux-h8.sourceforge.jp/
5711S: Supported
5712
Linus Torvalds1da177e2005-04-16 15:20:36 -07005713UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005714P: Jan Kara
5715M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716W: http://linux-udf.sourceforge.net
5717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005718F: Documentation/filesystems/udf.txt
5719F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005720
Alan Coxcc2020e2008-05-19 14:21:51 +01005721UFS FILESYSTEM
5722P: Evgeniy Dushistov
5723M: dushistov@mail.ru
5724L: linux-kernel@vger.kernel.org
5725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005726F: Documentation/filesystems/ufs.txt
5727F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005728
David Vrabel18332a82008-09-17 16:34:44 +01005729ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5730P: David Vrabel
5731M: david.vrabel@csr.com
5732L: linux-usb@vger.kernel.org
5733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005734F: drivers/uwb/*
5735F: include/linux/uwb.h
5736F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005737
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738UNIFORM CDROM DRIVER
5739P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005740M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741L: linux-kernel@vger.kernel.org
5742W: http://www.kernel.dk
5743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005744F: Documentation/cdrom/
5745F: drivers/cdrom/cdrom.c
5746F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005748UNSORTED BLOCK IMAGES (UBI)
5749P: Artem Bityutskiy
5750M: dedekind@infradead.org
5751W: http://www.linux-mtd.infradead.org/
5752L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005753T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005754S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005755F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005756F: include/linux/mtd/ubi.h
5757F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005758
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759USB ACM DRIVER
5760P: Oliver Neukum
5761M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005762L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005764F: Documentation/usb/acm.txt
5765F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
5767USB BLOCK DRIVER (UB ub)
5768P: Pete Zaitcev
5769M: zaitcev@redhat.com
5770L: linux-kernel@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005771L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005773F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775USB CDC ETHERNET DRIVER
5776P: Greg Kroah-Hartman
5777M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005778L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779S: Maintained
5780W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/net/usb/cdc_*.c
5782F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005784USB CYPRESS C67X00 DRIVER
5785P: Peter Korsgaard
5786M: jacmet@sunsite.dk
5787L: linux-usb@vger.kernel.org
5788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005789F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005790
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005791USB DAVICOM DM9601 DRIVER
5792P: Peter Korsgaard
5793M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005794L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005795W: http://www.linux-usb.org/usbnet
5796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005797F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005798
Alan Coxcc2020e2008-05-19 14:21:51 +01005799USB DIAMOND RIO500 DRIVER
5800P: Cesar Miquel
5801M: miquel@df.uba.ar
5802L: rio500-users@lists.sourceforge.net
5803W: http://rio500.sourceforge.net
5804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005805F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005806
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807USB EHCI DRIVER
5808P: David Brownell
5809M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005810L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005811S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005812F: Documentation/usb/ehci.txt
5813F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Luca Risolia7ce08c92006-01-11 02:06:59 +00005815USB ET61X[12]51 DRIVER
5816P: Luca Risolia
5817M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005818L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005819L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005820T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005821W: http://www.linux-projects.org
5822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005823F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005824
David Brownell69ae9e32006-11-14 02:03:31 -08005825USB GADGET/PERIPHERAL SUBSYSTEM
5826P: David Brownell
5827M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005828L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005829W: http://www.linux-usb.org/gadget
5830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005831F: drivers/usb/gadget/
5832F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005833
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005834USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266f2007-01-15 09:56:21 +01005835P: Jiri Kosina
5836M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005837L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005838T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005840F: Documentation/usb/hiddev.txt
5841F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842
Olav Kongas959eea22005-11-03 17:38:14 +02005843USB ISP116X DRIVER
5844P: Olav Kongas
5845M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005846L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005848F: drivers/usb/host/isp116x*
5849F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005850
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851USB KAWASAKI LSI DRIVER
5852P: Oliver Neukum
5853M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005854L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005856F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857
5858USB MASS STORAGE DRIVER
5859P: Matthew Dharm
5860M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005861L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005862L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863S: Maintained
5864W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005865F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
5867USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005868P: David Brownell
5869M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005870L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005871S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005872F: Documentation/usb/ohci.txt
5873F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874
Matthias Urlichsba460e42005-07-14 00:33:47 -07005875USB OPTION-CARD DRIVER
5876P: Matthias Urlichs
5877M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005878L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005880F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005881
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882USB OV511 DRIVER
5883P: Mark McClelland
5884M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005885L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886W: http://alpha.dyndns.org/ov511/
5887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005888F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
5890USB PEGASUS DRIVER
5891P: Petko Manolov
5892M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005893L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005894L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895W: http://pegasus2.sourceforge.net/
5896S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005897F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005899USB PRINTER DRIVER (usblp)
5900P: Pete Zaitcev
5901M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005902L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005904F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905
5906USB RTL8150 DRIVER
5907P: Petko Manolov
5908M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005909L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005910L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911W: http://pegasus2.sourceforge.net/
5912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005913F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914
5915USB SE401 DRIVER
5916P: Jeroen Vreeken
5917M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005918L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919W: http://www.chello.nl/~j.vreeken/se401/
5920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005921F: Documentation/video4linux/se401.txt
5922F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
Alan Cox4e688522008-04-30 00:52:11 -07005924USB SERIAL BELKIN F5U103 DRIVER
5925P: William Greathouse
5926M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005927L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005929F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005930
5931USB SERIAL CYPRESS M8 DRIVER
5932P: Lonnie Mendez
5933M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005934L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005935S: Maintained
5936W: http://geocities.com/i0xox0i
5937W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005938F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005939
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940USB SERIAL CYBERJACK DRIVER
5941P: Matthias Bruestle and Harald Welte
5942M: support@reiner-sct.com
5943W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005945F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946
5947USB SERIAL DIGI ACCELEPORT DRIVER
5948P: Peter Berger and Al Borchers
5949M: pberger@brimson.com
5950M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005951L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005953F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954
5955USB SERIAL DRIVER
5956P: Greg Kroah-Hartman
5957M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005958L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005960F: Documentation/usb/usb-serial.txt
5961F: drivers/usb/serial/generic.c
5962F: drivers/usb/serial/usb-serial.c
5963F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
5966P: Gary Brubaker
5967M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005968L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005970F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971
5972USB SERIAL KEYSPAN DRIVER
5973P: Greg Kroah-Hartman
5974M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005975L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976W: http://www.kroah.com/linux/
5977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005978F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
5980USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04005981P: Support Department
5982M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005983L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984W: http://www.connecttech.com
5985S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005986F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005988USB SMSC95XX ETHERNET DRIVER
5989P: Steve Glendinning
5990M: steve.glendinning@smsc.com
5991L: netdev@vger.kernel.org
5992S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005993F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005994
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005995USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996P: Luca Risolia
5997M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005998L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005999L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006000T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001W: http://www.linux-projects.org
6002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: Documentation/video4linux/sn9c102.txt
6004F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005
6006USB SUBSYSTEM
6007P: Greg Kroah-Hartman
6008M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02006009L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006011T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006013F: Documentation/usb/
6014F: drivers/net/usb/
6015F: drivers/usb/
6016F: include/linux/usb.h
6017F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018
6019USB UHCI DRIVER
6020P: Alan Stern
6021M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02006022L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025
David Brownell69ae9e32006-11-14 02:03:31 -08006026USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027P: David Brownell
6028M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02006029L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006030W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/net/usb/usbnet.c
6033F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006035USB VIDEO CLASS
6036P: Laurent Pinchart
6037M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03006038L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006039L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006040T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006041W: http://linux-uvc.berlios.de
6042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006043F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006044
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045USB W996[87]CF DRIVER
6046P: Luca Risolia
6047M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006048L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006049L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006050T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051W: http://www.linux-projects.org
6052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006053F: Documentation/video4linux/w9968cf.txt
6054F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006055
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006056USB WIRELESS RNDIS DRIVER (rndis_wlan)
6057P: Jussi Kivilinna
6058M: jussi.kivilinna@mbnet.fi
6059L: linux-wireless@vger.kernel.org
6060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006061F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006062
Luca Risolia60f78052006-02-06 16:29:35 +00006063USB ZC0301 DRIVER
6064P: Luca Risolia
6065M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02006066L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006067L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006068T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006069W: http://www.linux-projects.org
6070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006071F: Documentation/video4linux/zc0301.txt
6072F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006073
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074USB ZD1201 DRIVER
6075P: Jeroen Vreeken
6076M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02006077L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006078W: http://linux-lc100020.sourceforge.net
6079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006080F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006082USB ZR364XX DRIVER
6083P: Antoine Jacquet
6084M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02006085L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006086L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006087T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006088W: http://royale.zerezo.com/zr364xx/
6089S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006090F: Documentation/video4linux/zr364xx.txt
6091F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006092
Randy Dunlape7839f22008-10-12 16:11:45 -07006093USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08006095M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096L: user-mode-linux-devel@lists.sourceforge.net
6097L: user-mode-linux-user@lists.sourceforge.net
6098W: http://user-mode-linux.sourceforge.net
6099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006100F: Documentation/uml/
6101F: arch/um/
6102F: fs/hostfs/
6103F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006104
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006105USERSPACE I/O (UIO)
6106P: Hans J. Koch
6107M: hjk@linutronix.de
6108P: Greg Kroah-Hartman
6109M: gregkh@suse.de
6110L: linux-kernel@vger.kernel.org
6111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006112F: Documentation/DocBook/uio-howto.tmpl
6113F: drivers/uio/
6114F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006115
Karel Zakf899b0a2008-05-23 13:04:21 -07006116UTIL-LINUX-NG PACKAGE
6117P: Karel Zak
6118M: kzak@redhat.com
6119L: util-linux-ng@vger.kernel.org
6120W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006121T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006122S: Maintained
6123
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006124UVESAFB DRIVER
6125P: Michal Januszewski
6126M: spock@gentoo.org
6127L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6128W: http://dev.gentoo.org/~spock/projects/uvesafb/
6129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006130F: Documentation/fb/uvesafb.txt
6131F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006132
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006133VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134P: OGAWA Hirofumi
6135M: hirofumi@mail.parknet.co.jp
6136L: linux-kernel@vger.kernel.org
6137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/filesystems/vfat.txt
6139F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141VIA RHINE NETWORK DRIVER
6142P: Roger Luethi
6143M: rl@hellgate.ch
6144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006145F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146
Jean Delvare32c0a522005-09-22 21:47:58 +02006147VIAPRO SMBUS DRIVER
6148P: Jean Delvare
6149M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006150L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006152F: Documentation/i2c/busses/i2c-viapro
6153F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006154
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006155VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6156P: Joseph Chan
6157M: JosephChan@via.com.tw
6158P: Scott Fang
6159M: ScottFang@viatech.com.cn
6160L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006162F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006163
Francois Romieu01f20732007-01-26 00:57:17 -08006164VIA VELOCITY NETWORK DRIVER
6165P: Francois Romieu
6166M: romieu@fr.zoreil.com
6167L: netdev@vger.kernel.org
6168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006169F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170
Patrick McHardybe7f8272007-10-23 20:26:36 -07006171VLAN (802.1Q)
6172P: Patrick McHardy
6173M: kaber@trash.net
6174L: netdev@vger.kernel.org
6175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006176F: drivers/net/macvlan.c
6177F: include/linux/if_*vlan.h
6178F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006179
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006180VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6181P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006182M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006183P: Mark Brown
6184M: broonie@opensource.wolfsonmicro.com
6185W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006186W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006187T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006189F: drivers/regulator/
6190F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006191
Juerg Haefligerab413192006-09-24 20:54:04 +02006192VT1211 HARDWARE MONITOR DRIVER
6193P: Juerg Haefliger
6194M: juergh@gmail.com
6195L: lm-sensors@lm-sensors.org
6196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006197F: Documentation/hwmon/vt1211
6198F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006199
Roger Lucas1de9e372005-11-26 20:20:05 +01006200VT8231 HARDWARE MONITOR DRIVER
6201P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006202M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006203L: lm-sensors@lm-sensors.org
6204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006205F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006206
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207W1 DALLAS'S 1-WIRE BUS
6208P: Evgeniy Polyakov
6209M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006211F: Documentation/w1/
6212F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213
Charles Spirakis13927072006-07-05 18:05:15 +02006214W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006215P: Marc Hulsman
6216M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006217L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006219F: Documentation/hwmon/w83791d
6220F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006221
Rudolf Marek61db0112006-12-12 18:18:30 +01006222W83793 HARDWARE MONITORING DRIVER
6223P: Rudolf Marek
6224M: r.marek@assembler.cz
6225L: lm-sensors@lm-sensors.org
6226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006227F: Documentation/hwmon/w83793
6228F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006229
Linus Torvalds1da177e2005-04-16 15:20:36 -07006230W83L51xD SD/MMC CARD INTERFACE DRIVER
6231P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006232M: pierre@ossman.eu
Pierre Ossmanfac88992007-01-27 13:18:26 +01006233L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006235F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006237WATCHDOG DEVICE DRIVERS
6238P: Wim Van Sebroeck
6239M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006240T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006241S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006242F: Documentation/watchdog/
6243F: drivers/watchdog/
6244F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006245
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6247P: Jean Tourrilhes
6248M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006249L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006252F: Documentation/networking/wavelan.txt
6253F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
6255WD7000 SCSI DRIVER
6256P: Miroslav Zagorac
6257M: zaga@fly.cc.fer.hr
6258L: linux-scsi@vger.kernel.org
6259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006262WIMAX STACK
6263P: Inaky Perez-Gonzalez
6264M: inaky.perez-gonzalez@intel.com
6265M: linux-wimax@intel.com
6266L: wimax@linuxwimax.org
6267S: Supported
6268W: http://linuxwimax.org
6269
David Vrabel18332a82008-09-17 16:34:44 +01006270WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6271P: David Vrabel
6272M: david.vrabel@csr.com
6273S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006274F: include/linux/wlp.h
6275F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006276
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006277WISTRON LAPTOP BUTTON DRIVER
6278P: Miloslav Trmac
6279M: mitr@volny.cz
6280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006281F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006282
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283WL3501 WIRELESS PCMCIA CARD DRIVER
6284P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006285M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006286L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006287W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290
Mark Brownfebf1df2008-04-02 00:51:09 -04006291WM97XX TOUCHSCREEN DRIVERS
6292P: Mark Brown
6293M: broonie@opensource.wolfsonmicro.com
6294P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006295M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006296L: linux-input@vger.kernel.org
6297T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6298W: http://opensource.wolfsonmicro.com/node/7
6299S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006300F: drivers/input/touchscreen/*wm97*
6301F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303X.25 NETWORK LAYER
6304P: Henner Eisen
6305M: eis@baty.hanse.de
6306L: linux-x25@vger.kernel.org
6307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006308F: Documentation/networking/x25*
6309F: include/net/x25*
6310F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006312X86 ARCHITECTURE (32-BIT AND 64-BIT)
6313P: Thomas Gleixner
6314M: tglx@linutronix.de
6315P: Ingo Molnar
6316M: mingo@redhat.com
6317P: H. Peter Anvin
6318M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006319M: x86@kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006320L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006321T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006323F: Documentation/x86/
6324F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006325
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006326XEN HYPERVISOR INTERFACE
6327P: Jeremy Fitzhardinge
6328M: jeremy@xensource.com
6329P: Chris Wright
6330M: chrisw@sous-sol.org
6331L: virtualization@lists.osdl.org
6332L: xen-devel@lists.xensource.com
6333S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006334F: arch/x86/xen/
6335F: drivers/*/xen-*front.c
6336F: drivers/xen/
6337F: arch/x86/include/asm/xen/
6338F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006339
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340XFS FILESYSTEM
6341P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006342P: Felix Blyakher
6343M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006345L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006346W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006347T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006349F: Documentation/filesystems/xfs.txt
6350F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006351
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006352XILINX SYSTEMACE DRIVER
6353P: Grant Likely
6354M: grant.likely@secretlab.ca
6355W: http://www.secretlab.ca/
6356L: linux-kernel@vger.kernel.org
6357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006358F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006359
Peter Korsgaard238b8722006-12-06 20:35:17 -08006360XILINX UARTLITE SERIAL DRIVER
6361P: Peter Korsgaard
6362M: jacmet@sunsite.dk
6363L: linux-serial@vger.kernel.org
6364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006365F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006366
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367YAM DRIVER FOR AX.25
6368P: Jean-Paul Roubelat
6369M: jpr@f6fbb.org
6370L: linux-hams@vger.kernel.org
6371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006372F: drivers/net/hamradio/yam*
6373F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374
Henkaf64a5e2005-10-12 15:02:56 +02006375YEALINK PHONE DRIVER
6376P: Henk Vergonet
6377M: Henk.Vergonet@gmail.com
6378L: usbb2k-api-dev@nongnu.org
6379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006380F: Documentation/input/yealink.txt
6381F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006382
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383Z8530 DRIVER FOR AX.25
6384P: Joerg Reuter
6385M: jreuter@yaina.de
6386W: http://yaina.de/jreuter/
6387W: http://www.qsl.net/dl1bke/
6388L: linux-hams@vger.kernel.org
6389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006390F: Documentation/networking/z8530drv.txt
6391F: drivers/net/hamradio/*scc.c
6392F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006394ZD1211RW WIRELESS DRIVER
6395P: Daniel Drake
6396M: dsd@gentoo.org
6397P: Ulrich Kunitz
6398M: kune@deine-taler.de
6399W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006400L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006401L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006403F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006404
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006407L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006409T: Mercurial http://linuxtv.org/hg/v4l-dvb
6410S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006411F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006413ZS DECSTATION Z85C30 SERIAL DRIVER
6414P: Maciej W. Rozycki
6415M: macro@linux-mips.org
6416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006417F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006418
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419THE REST
6420P: Linus Torvalds
Joe Perchescfe81f72009-04-07 21:09:58 -07006421T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422S: Buried alive in reporters