blob: 0cb20d8216945751a3a232d2b15ec72f29470e16 [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
437M: thomas.dahlmann@amd.com
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 King2761f5c2007-05-24 06:56:08 +0200546ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200547S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700548F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200549
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800550ARM/ADI ROADRUNNER MACHINE SUPPORT
551P: Lennert Buytenhek
552M: kernel@wantstofly.org
553L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700555F: arch/arm/mach-ixp23xx/
556F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800557
558ARM/ADS SPHERE MACHINE SUPPORT
559P: Lennert Buytenhek
560M: kernel@wantstofly.org
561L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
562S: Maintained
563
Sergey Lapin9c784f92008-08-03 02:29:48 +0100564ARM/AFEB9260 MACHINE SUPPORT
565P: Sergey Lapin
566M: slapin@ossfans.org
567L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
568S: Maintained
569
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800570ARM/AJECO 1ARM MACHINE SUPPORT
571P: Lennert Buytenhek
572M: kernel@wantstofly.org
573L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
574S: Maintained
575
Andrew Victord4a89c72006-12-04 13:56:21 +0100576ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Jean Delvare795fb7e2008-09-20 12:33:08 +0200577P: Andrew Victor
578M: linux@maxim.org.za
579L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
580W: http://maxim.org.za/at91_26.html
581S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100582
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800583ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
584P: Lennert Buytenhek
585M: kernel@wantstofly.org
586L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
587S: Maintained
588
589ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
590P: Lennert Buytenhek
591M: kernel@wantstofly.org
592L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
593S: Maintained
594
Mike Rapoportd48134e2008-08-20 09:03:26 +0100595ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Russell Kinga9da4f72008-07-12 21:42:04 +0100596P: Mike Rapoport
597M: mike@compulab.co.il
598L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
599S: Maintained
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601ARM/CORGI MACHINE SUPPORT
602P: Richard Purdie
603M: rpurdie@rpsys.net
604S: Maintained
605
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200606ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
607P: Paulius Zaleckas
608M: paulius.zaleckas@teltonika.lt
609L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -0700610T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200611S: Maintained
612
Russell Kinga9da4f72008-07-12 21:42:04 +0100613ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
614P: Daniel Ribeiro
615M: drwyrm@gmail.com
616P: Stefan Schmidt
617M: stefan@openezx.org
618P: Harald Welte
619M: laforge@openezx.org
620L: openezx-devel@lists.openezx.org (subscribers-only)
621W: http://www.openezx.org/
622S: Maintained
623
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200624ARM/FARADAY FA526 PORT
625P: Paulius Zaleckas
626M: paulius.zaleckas@teltonika.lt
627L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
628S: Maintained
629
Sascha Hauer86183a52008-07-24 23:50:35 +0200630ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
631P: Sascha Hauer
632M: kernel@pengutronix.de
633L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
634S: Maintained
635
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800636ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
637P: Lennert Buytenhek
638M: kernel@wantstofly.org
639L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
640S: Maintained
641
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100642ARM/GUMSTIX MACHINE SUPPORT
643P: Steve Sakoman
644M: sakoman@gmail.com
645L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
646S: Maintained
647
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100648ARM/HP JORNADA 7XX MACHINE SUPPORT
Jean Delvare795fb7e2008-09-20 12:33:08 +0200649P: Kristoffer Ericson
650M: kristoffer.ericson@gmail.com
651W: www.jlime.com
652S: Maintained
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100653
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800654ARM/INTEL IOP32X ARM ARCHITECTURE
655P: Lennert Buytenhek
656M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100657P: Dan Williams
658M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800659L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100660S: Supported
661
662ARM/INTEL IOP33X ARM ARCHITECTURE
663P: Dan Williams
664M: dan.j.williams@intel.com
665L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
666S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800667
668ARM/INTEL IOP13XX ARM ARCHITECTURE
669P: Lennert Buytenhek
670M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100671P: Dan Williams
672M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800673L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100674S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800675
676ARM/INTEL IQ81342EX MACHINE SUPPORT
677P: Lennert Buytenhek
678M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100679P: Dan Williams
680M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800681L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100682S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800683
684ARM/INTEL IXP2000 ARM ARCHITECTURE
685P: Lennert Buytenhek
686M: kernel@wantstofly.org
687L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
688S: Maintained
689
690ARM/INTEL IXDP2850 MACHINE SUPPORT
691P: Lennert Buytenhek
692M: kernel@wantstofly.org
693L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
694S: Maintained
695
696ARM/INTEL IXP23XX ARM ARCHITECTURE
697P: Lennert Buytenhek
698M: kernel@wantstofly.org
699L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
700S: Maintained
701
702ARM/INTEL XSC3 (MANZANO) ARM CORE
703P: Lennert Buytenhek
704M: kernel@wantstofly.org
Dan Williamse2bdb172007-01-02 18:32:37 +0100705P: Dan Williams
706M: dan.j.williams@intel.com
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Dan Williamse2bdb172007-01-02 18:32:37 +0100708S: Supported
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800709
710ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
711P: Lennert Buytenhek
712M: kernel@wantstofly.org
713L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
714S: Maintained
715
716ARM/LOGICPD PXA270 MACHINE SUPPORT
717P: Lennert Buytenhek
718M: kernel@wantstofly.org
719L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
720S: Maintained
721
Philipp Zabel3b8861712008-07-09 21:27:15 +0100722ARM/MAGICIAN MACHINE SUPPORT
723P: Philipp Zabel
724M: philipp.zabel@gmail.com
725S: Maintained
726
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100727ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
728P: Michael Petchkovsky
729M: mkpetch@internode.on.net
730S: Maintained
731
Dirk Opfer8459c152005-11-06 14:27:52 +0000732ARM/TOSA MACHINE SUPPORT
Dmitry Eremin-Solenikovbfa0b1c2009-01-06 14:41:05 -0800733P: Dmitry Eremin-Solenikov
Dmitry Baryshkov93887042008-07-07 10:50:06 +0100734M: dbaryshkov@gmail.com
Dirk Opfer8459c152005-11-06 14:27:52 +0000735P: Dirk Opfer
736M: dirk@opfer-online.de
737S: Maintained
738
Marek Vasut54088bf2009-03-24 00:29:29 +0100739ARM/PALMTX,PALMT5,PALMLD,PALMTE2 SUPPORT
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100740P: Marek Vasut
741M: marek.vasut@gmail.com
742W: http://hackndev.com
743S: Maintained
744
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100745ARM/PALMZ72 SUPPORT
Joe Perches7d2c86b2009-04-07 20:59:01 -0700746P: Sergey Lapin
747M: slapin@ossfans.org
748W: http://hackndev.com
749S: Maintained
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751ARM/PLEB SUPPORT
752P: Peter Chubb
753M: pleb@gelato.unsw.edu.au
754W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
755S: Maintained
756
757ARM/PT DIGITAL BOARD PORT
758P: Stefan Eletzhofer
759M: stefan.eletzhofer@eletztrick.de
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700760L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761W: http://www.arm.linux.org.uk/
762S: Maintained
763
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800764ARM/RADISYS ENP2611 MACHINE SUPPORT
765P: Lennert Buytenhek
766M: kernel@wantstofly.org
767L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
768S: Maintained
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770ARM/SHARK MACHINE SUPPORT
771P: Alexander Schulz
772M: alex@shark-linux.de
773W: http://www.shark-linux.de/shark.html
774S: Maintained
775
776ARM/STRONGARM110 PORT
777P: Russell King
778M: rmk@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700779L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780W: http://www.arm.linux.org.uk/
781S: Maintained
782
783ARM/S3C2410 ARM ARCHITECTURE
784P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800785M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700786L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787W: http://www.fluff.org/ben/linux/
788S: Maintained
789
790ARM/S3C2440 ARM ARCHITECTURE
791P: Ben Dooks
Ben Dooks449d4dd2006-12-22 01:10:23 -0800792M: ben-linux@fluff.org
Alexey Dobriyan70f09f12005-06-23 00:09:47 -0700793L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794W: http://www.fluff.org/ben/linux/
795S: Maintained
796
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800797ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
798P: Lennert Buytenhek
799M: kernel@wantstofly.org
800L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
801S: Maintained
802
803ARM/THECUS N2100 MACHINE SUPPORT
804P: Lennert Buytenhek
805M: kernel@wantstofly.org
806L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
807S: Maintained
808
wanzongshun98ad6e32009-02-13 06:04:32 +0100809ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches7d2c86b2009-04-07 20:59:01 -0700810P: Wan ZongShun
811M: mcuos.com@gmail.com
812L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
813W: http://www.mcuos.com
814S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816ARPD SUPPORT
817P: Jonathan Layes
Ralf Baechle979b6c12005-06-13 14:30:40 -0700818L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700820F: net/ipv4/arp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822ASUS ACPI EXTRAS DRIVER
Len Brown0b67d942006-12-22 21:18:56 -0500823P: Corentin Chary
824M: corentincj@iksaif.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825P: Karol Kozimor
826M: sziwan@users.sourceforge.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827L: acpi4asus-user@lists.sourceforge.net
828W: http://sourceforge.net/projects/acpi4asus
Len Brown0b67d942006-12-22 21:18:56 -0500829W: http://xf.iksaif.net/acpi4asus
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700831F: arch/x86/kernel/acpi/boot.c
832F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400834ASUS ASB100 HARDWARE MONITOR DRIVER
835P: Mark M. Hoffman
836M: mhoffman@lightlink.com
837L: lm-sensors@lm-sensors.org
838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700839F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400840
Corentin Chary85091b72007-01-26 14:04:30 +0100841ASUS LAPTOP EXTRAS DRIVER
842P: Corentin Chary
843M: corentincj@iksaif.net
844L: acpi4asus-user@lists.sourceforge.net
845W: http://sourceforge.net/projects/acpi4asus
846W: http://xf.iksaif.net/acpi4asus
847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700848F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100849
Andrew Morton953a6472008-11-06 12:53:28 -0800850ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Dan Williamsb3e5f262007-08-07 10:26:35 -0700851P: Dan Williams
852M: dan.j.williams@intel.com
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +0100853P: Maciej Sosnowski
854M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -0700855L: linux-kernel@vger.kernel.org
856W: http://sourceforge.net/projects/xscaleiop
857S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700858F: Documentation/crypto/async-tx-api.txt
859F: crypto/async_tx/
860F: drivers/dma/
861F: include/linux/dmaengine.h
862F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -0700863
Randy Dunlape7839f22008-10-12 16:11:45 -0700864ATA OVER ETHERNET (AOE) DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865P: Ed L. Cashin
866M: ecashin@coraid.com
867W: http://www.coraid.com/support/linux
868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700869F: Documentation/aoe/
870F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200872ATHEROS ATH5K WIRELESS DRIVER
873P: Jiri Slaby
874M: jirislaby@gmail.com
875P: Nick Kossifidis
876M: mickflemm@gmail.com
877P: Luis R. Rodriguez
Luis R. Rodriguez4fe06572008-10-13 14:08:07 -0700878M: lrodriguez@atheros.com
Bob Copelandadef1992008-10-29 08:30:57 -0400879P: Bob Copeland
880M: me@bobcopeland.com
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200881L: linux-wireless@vger.kernel.org
882L: ath5k-devel@lists.ath5k.org
883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700884F: drivers/net/wireless/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +0200885
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700886ATHEROS ATH9K WIRELESS DRIVER
887P: Luis R. Rodriguez
888M: lrodriguez@atheros.com
889P: Jouni Malinen
890M: jmalinen@atheros.com
891L: linux-wireless@vger.kernel.org
892L: ath9k-devel@lists.ath9k.org
893S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700894F: drivers/net/wireless/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700895
Christian Lamparter75ca88c2009-03-21 23:11:49 +0100896ATHEROS AR9170 WIRELESS DRIVER
897P: Christian Lamparter
898M: chunkeey@web.de
899L: linux-wireless@vger.kernel.org
900W: http://wireless.kernel.org/en/users/Drivers/ar9170
901S: Maintained
902F: drivers/net/wireless/ar9170/
903
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000904ATI_REMOTE2 DRIVER
905P: Ville Syrjala
906M: syrjala@sci.fi
907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700908F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +0000909
Chris Snook7ae115b2008-09-09 03:26:57 -0400910ATLX ETHERNET DRIVERS
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600911P: Jay Cliburn
912M: jcliburn@gmail.com
913P: Chris Snook
914M: csnook@redhat.com
Chris Snook7ae115b2008-09-09 03:26:57 -0400915P: Jie Yang
916M: jie.yang@atheros.com
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600917L: atl1-devel@lists.sourceforge.net
918W: http://sourceforge.net/projects/atl1
919W: http://atl1.sourceforge.net
920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700921F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -0600922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923ATM
924P: Chas Williams
925M: chas@cmf.nrl.navy.mil
Roland Dreierf37bf902006-09-13 20:39:33 -0700926L: linux-atm-general@lists.sourceforge.net (subscribers-only)
Jiri Slaby44ae98b2008-11-30 23:27:11 -0800927L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928W: http://linux-atm.sourceforge.net
929S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700930F: drivers/atm/
931F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Pierre Ossman272f1332007-05-14 21:25:26 +0200933ATMEL AT91 MCI DRIVER
Pierre Ossman81764fa2007-07-15 18:47:38 +0200934P: Nicolas Ferre
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800935M: nicolas.ferre@atmel.com
Pierre Ossman81764fa2007-07-15 18:47:38 +0200936L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
937W: http://www.atmel.com/products/AT91/
938W: http://www.at91.com/
939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700940F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200941
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -0800942ATMEL AT91 / AT32 SERIAL DRIVER
943P: Haavard Skinnemoen
944M: hskinnemoen@atmel.com
945L: linux-kernel@vger.kernel.org
946S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700947F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -0800948
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800949ATMEL LCDFB DRIVER
950P: Nicolas Ferre
951M: nicolas.ferre@atmel.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -0800952L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700954F: drivers/video/atmel_lcdfb.c
955F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -0800956
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100957ATMEL MACB ETHERNET DRIVER
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100958P: Haavard Skinnemoen
959M: hskinnemoen@atmel.com
960S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700961F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100962
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800963ATMEL SPI DRIVER
964P: Haavard Skinnemoen
965M: hskinnemoen@atmel.com
966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700967F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -0800968
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -0700969ATMEL USBA UDC DRIVER
970P: Haavard Skinnemoen
971M: hskinnemoen@atmel.com
972L: kernel@avr32linux.org
973W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
974S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700975F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977ATMEL WIRELESS DRIVER
978P: Simon Kelley
979M: simon@thekelleys.org.uk
Johannes Berg724c6b32007-04-23 12:18:20 -0700980L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981W: http://www.thekelleys.org.uk/atmel
982W: http://atmelwlandriver.sourceforge.net/
983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700984F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Chris Wrighta92b7b82005-07-07 18:12:23 -0700986AUDIT SUBSYSTEM
Eric Paris0ef19702008-04-18 10:47:32 -0400987P: Al Viro
988M: viro@zeniv.linux.org.uk
989P: Eric Paris
990M: eparis@redhat.com
Gabriel Cb9a06202007-08-10 13:00:56 -0700991L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +0100992W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -0700993T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -0700994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700995F: include/linux/audit.h
996F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -0700997
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -0800998AUXILIARY DISPLAY DRIVERS
999P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001000M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001001L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001002W: http://miguelojeda.es/auxdisplay.htm
1003W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001005F: drivers/auxdisplay/
1006F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001007
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001008AVR32 ARCHITECTURE
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001009P: Haavard Skinnemoen
1010M: hskinnemoen@atmel.com
1011W: http://www.atmel.com/products/AVR32/
1012W: http://avr32linux.org/
1013W: http://avrfreaks.net/
1014S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001015F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001016
1017AVR32/AT32AP MACHINE SUPPORT
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001018P: Haavard Skinnemoen
1019M: hskinnemoen@atmel.com
1020S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001021F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023AX.25 NETWORK LAYER
1024P: Ralf Baechle
1025M: ralf@linux-mips.org
1026L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001027W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001029F: include/linux/ax25.h
1030F: include/net/ax25.h
1031F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001033B43 WIRELESS DRIVER
1034P: Michael Buesch
1035M: mb@bu3sch.de
1036P: Stefano Brivio
1037M: stefano.brivio@polimi.it
1038L: linux-wireless@vger.kernel.org
1039W: http://linuxwireless.org/en/users/Drivers/b43
1040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001041F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001042
1043B43LEGACY WIRELESS DRIVER
1044P: Larry Finger
1045M: Larry.Finger@lwfinger.net
1046P: Stefano Brivio
1047M: stefano.brivio@polimi.it
1048L: linux-wireless@vger.kernel.org
1049W: http://linuxwireless.org/en/users/Drivers/b43
1050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001051F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001052
Richard Purdie300abeb2007-02-07 22:21:07 +00001053BACKLIGHT CLASS/SUBSYSTEM
1054P: Richard Purdie
1055M: rpurdie@rpsys.net
1056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001057F: drivers/video/backlight/
1058F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001059
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001060BAYCOM/HDLCDRV DRIVERS FOR AX.25
1061P: Thomas Sailer
1062M: t.sailer@alumni.ethz.ch
1063L: linux-hams@vger.kernel.org
1064W: http://www.baycom.org/~tom/ham/ham.html
1065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001066F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001067
1068BEFS FILE SYSTEM
1069P: Sergey S. Kostyliov
1070M: rathamahata@php4.ru
1071L: linux-kernel@vger.kernel.org
1072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001073F: Documentation/filesystems/befs.txt
1074F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001075
1076BFS FILE SYSTEM
1077P: Tigran A. Aivazian
1078M: tigran@aivazian.fsnet.co.uk
1079L: linux-kernel@vger.kernel.org
1080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001081F: Documentation/filesystems/bfs.txt
1082F: fs/bfs/
1083F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001084
Bryan Wu1394f032007-05-06 14:50:22 -07001085BLACKFIN ARCHITECTURE
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001086P: Bryan Wu
Bryan Wu7dd06cd2008-02-21 16:18:43 +08001087M: cooloney@kernel.org
Mike Frysinger5b93e132009-02-04 16:49:45 +08001088L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001089W: http://blackfin.uclinux.org
1090S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001091F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001092
Bryan Wue190d6b2007-07-17 14:43:44 +08001093BLACKFIN EMAC DRIVER
1094P: Bryan Wu
Bryan Wu7dd06cd2008-02-21 16:18:43 +08001095M: cooloney@kernel.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001096L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
1097W: http://blackfin.uclinux.org
1098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001099F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001100
Mike Frysinger566da5b2007-06-11 15:31:30 +08001101BLACKFIN RTC DRIVER
1102P: Mike Frysinger
Mike Frysinger566da5b2007-06-11 15:31:30 +08001103M: vapier.adi@gmail.com
1104L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
1105W: http://blackfin.uclinux.org
1106S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001107F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001108
Bryan Wu1394f032007-05-06 14:50:22 -07001109BLACKFIN SERIAL DRIVER
Mike Frysinger9c5e7102007-11-17 23:19:44 +08001110P: Sonic Zhang
1111M: sonic.zhang@analog.com
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001112L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
1113W: http://blackfin.uclinux.org
1114S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001115F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001116
Bryan Wu1e6d3202007-07-15 02:50:02 +08001117BLACKFIN WATCHDOG DRIVER
1118P: Mike Frysinger
Bryan Wu1e6d3202007-07-15 02:50:02 +08001119M: vapier.adi@gmail.com
1120L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
1121W: http://blackfin.uclinux.org
1122S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001123F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001124
Bryan Wud24ecfc2007-05-01 23:26:32 +02001125BLACKFIN I2C TWI DRIVER
1126P: Sonic Zhang
1127M: sonic.zhang@analog.com
1128L: uclinux-dist-devel@blackfin.uclinux.org (subscribers-only)
1129W: http://blackfin.uclinux.org/
1130S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001131F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133BLOCK LAYER
1134P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02001135M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001137T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001139F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Joern Engel2b54aae2008-02-06 01:38:02 -08001141BLOCK2MTD DRIVER
1142P: Joern Engel
1143M: joern@lazybastard.org
1144L: linux-mtd@lists.infradead.org
1145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001146F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001147
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001148BLUETOOTH DRIVERS
1149P: Marcel Holtmann
1150M: marcel@holtmann.org
1151L: linux-bluetooth@vger.kernel.org
1152W: http://www.bluez.org/
1153S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001154F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156BLUETOOTH SUBSYSTEM
1157P: Marcel Holtmann
1158M: marcel@holtmann.org
Pavel Machek781c2842008-03-20 15:41:02 -07001159L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001160W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001161T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001163F: net/bluetooth/
1164F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166BONDING DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01001167P: Jay Vosburgh
1168M: fubar@us.ibm.com
1169L: bonding-devel@lists.sourceforge.net
1170W: http://sourceforge.net/projects/bonding/
1171S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001172F: drivers/net/bonding/
1173F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Gary Zambrano39105892006-06-22 17:26:20 -07001175BROADCOM B44 10/100 ETHERNET DRIVER
1176P: Gary Zambrano
1177M: zambrano@broadcom.com
1178L: netdev@vger.kernel.org
1179S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001180F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001181
Michael Chan948c51e2006-06-04 02:51:39 -07001182BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1183P: Michael Chan
1184M: mchan@broadcom.com
1185L: netdev@vger.kernel.org
1186S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001187F: drivers/net/bnx2.*
1188F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001189
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001190BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Eilon Greenstein24e3fce2008-06-12 14:30:28 -07001191P: Eilon Greenstein
1192M: eilong@broadcom.com
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001193L: netdev@vger.kernel.org
1194S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001195F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001196
Michael Chan948c51e2006-06-04 02:51:39 -07001197BROADCOM TG3 GIGABIT ETHERNET DRIVER
Matt Carlson13181362009-02-25 14:41:06 +00001198P: Matt Carlson
1199M: mcarlson@broadcom.com
Michael Chan948c51e2006-06-04 02:51:39 -07001200P: Michael Chan
1201M: mchan@broadcom.com
1202L: netdev@vger.kernel.org
1203S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001204F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001205
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001206BSG (block layer generic sg v4 driver)
1207P: FUJITA Tomonori
1208M: fujita.tomonori@lab.ntt.co.jp
1209L: linux-scsi@vger.kernel.org
1210S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001211F: block/bsg.c
1212F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001213
Michael Bueschff1d5c22008-07-25 01:46:10 -07001214BT8XXGPIO DRIVER
1215P: Michael Buesch
1216M: mb@bu3sch.de
1217W: http://bu3sch.de/btgpio.php
1218S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001219F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001220
Joe Percheseb1eb042009-01-21 10:49:16 -05001221BTRFS FILE SYSTEM
1222P: Chris Mason
1223M: chris.mason@oracle.com
1224L: linux-btrfs@vger.kernel.org
1225W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001226T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001228F: Documentation/filesystems/btrfs.txt
1229F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231BTTV VIDEO4LINUX DRIVER
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001232P: Mauro Carvalho Chehab
Mauro Carvalho Chehab8d58d772006-01-27 16:32:02 -02001233M: mchehab@infradead.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001234L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001235W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001236T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001238F: Documentation/video4linux/bttv/
1239F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Jonathan Corbet77d51402007-03-22 19:44:17 -03001241CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02001242P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03001243M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001244L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001245T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001247F: Documentation/video4linux/cafe_ccic
1248F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001249
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001250CALGARY x86-64 IOMMU
1251P: Muli Ben-Yehuda
1252M: muli@il.ibm.com
1253P: Jon D. Mason
Jon Masond8d2bed2006-10-05 18:47:21 +02001254M: jdmason@kudzu.us
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001255L: linux-kernel@vger.kernel.org
1256L: discuss@x86-64.org
1257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001258F: arch/x86/kernel/pci-calgary_64.c
1259F: arch/x86/kernel/tce_64.c
1260F: arch/x86/include/asm/calgary.h
1261F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001262
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001263CAN NETWORK LAYER
1264P: Urs Thuermann
1265M: urs.thuermann@volkswagen.de
1266P: Oliver Hartkopp
1267M: oliver.hartkopp@volkswagen.de
1268L: socketcan-core@lists.berlios.de (subscribers-only)
1269W: http://developer.berlios.de/projects/socketcan/
1270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001271F: drivers/net/can/
1272F: include/linux/can/
1273F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001274
Arnd Bergmannb8154542008-05-16 11:10:59 +02001275CELL BROADBAND ENGINE ARCHITECTURE
1276P: Arnd Bergmann
1277M: arnd@arndb.de
1278L: linuxppc-dev@ozlabs.org
1279L: cbe-oss-dev@ozlabs.org
1280W: http://www.ibm.com/developerworks/power/cell/
1281S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001282F: arch/powerpc/include/asm/cell*.h
1283F: arch/powerpc/include/asm/lv1call.h
1284F: arch/powerpc/include/asm/ps3*.h
1285F: arch/powerpc/include/asm/spu*.h
1286F: arch/powerpc/oprofile/*cell*
1287F: arch/powerpc/platforms/cell/
1288F: arch/powerpc/platforms/ps3/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001289
David Vrabel18332a82008-09-17 16:34:44 +01001290CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1291P: David Vrabel
1292M: david.vrabel@csr.com
1293L: linux-usb@vger.kernel.org
1294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001295F: Documentation/usb/WUSB-Design-overview.txt
1296F: Documentation/usb/wusb-cbaf
1297F: drivers/usb/wusbcore/
1298F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001299
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001300CFAG12864B LCD DRIVER
1301P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001302M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001303L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001304W: http://miguelojeda.es/auxdisplay.htm
1305W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001307F: drivers/auxdisplay/cfag12864b.c
1308F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001309
1310CFAG12864BFB LCD FRAMEBUFFER DRIVER
1311P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07001312M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001313L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07001314W: http://miguelojeda.es/auxdisplay.htm
1315W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001317F: drivers/auxdisplay/cfag12864bfb.c
1318F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001319
Johannes Berg704232c2007-04-23 12:20:05 -07001320CFG80211 and NL80211
1321P: Johannes Berg
1322M: johannes@sipsolutions.net
1323L: linux-wireless@vger.kernel.org
1324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001325F: include/linux/nl80211.h
1326F: include/net/cfg80211.h
1327F: net/wireless/*
1328X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001329
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001330CHECKPATCH
1331P: Andy Whitcroft
Andy Whitcroftb0e0b432009-01-06 14:41:22 -08001332M: apw@canonical.com
1333L: linux-kernel@vger.kernel.org
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001335F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001336
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001337CISCO 10G ETHERNET DRIVER
1338P: Scott Feldman
1339M: scofeldm@cisco.com
1340P: Joe Eykholt
1341M: jeykholt@cisco.com
Joel Becker7063fbf2005-12-15 14:29:43 -08001342S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001343F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001344
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001345CIRRUS LOGIC EP93XX ETHERNET DRIVER
1346P: Lennert Buytenhek
1347M: kernel@wantstofly.org
1348L: netdev@vger.kernel.org
1349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001350F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001351
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001352CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
1353P: Lennert Buytenhek
1354M: kernel@wantstofly.org
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001355L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001357F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001358
Timur Tabid9e9d822008-04-24 08:45:26 +10001359CIRRUS LOGIC CS4270 SOUND DRIVER
1360P: Timur Tabi
1361M: timur@freescale.com
1362L: alsa-devel@alsa-project.org
1363S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001364F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1367P: Cirrus Logic Corporation (kernel 2.2 driver)
1368M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1369P: Nils Faerber (port to kernel 2.4)
1370M: Nils Faerber <nils@kernelconcepts.de>
1371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001372F: Documentation/input/cs461x.txt
1373F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375CODA FILE SYSTEM
1376P: Jan Harkes
1377M: jaharkes@cs.cmu.edu
1378M: coda@cs.cmu.edu
1379L: codalist@coda.cs.cmu.edu
1380W: http://www.coda.cs.cmu.edu/
1381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001382F: Documentation/filesystems/coda.txt
1383F: fs/coda/
1384F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001386COMMON INTERNET FILE SYSTEM (CIFS)
1387P: Steve French
1388M: sfrench@samba.org
1389L: linux-cifs-client@lists.samba.org
1390L: samba-technical@lists.samba.org
1391W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001392T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001393S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001394F: Documentation/filesystems/cifs.txt
1395F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397COMPACTPCI HOTPLUG CORE
1398P: Scott Murray
1399M: scottm@somanetworks.com
1400M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001401L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001403F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1406P: Scott Murray
1407M: scottm@somanetworks.com
1408M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001409L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001411F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413COMPACTPCI HOTPLUG GENERIC DRIVER
1414P: Scott Murray
1415M: scottm@somanetworks.com
1416M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001417L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001419F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001421COMPAL LAPTOP SUPPORT
1422P: Cezary Jackiewicz
1423M: cezary.jackiewicz@gmail.com
1424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001425F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427COMPUTONE INTELLIPORT MULTIPORT CARD
1428P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001429M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001432F: Documentation/serial/computone.txt
1433F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Simon Arlott949be0f2007-03-06 02:47:46 -08001435CONEXANT ACCESSRUNNER USB DRIVER
1436P: Simon Arlott
1437M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001438L: accessrunner-general@lists.sourceforge.net
1439W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001441F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001442
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001443CONFIGFS
1444P: Joel Becker
1445M: joel.becker@oracle.com
1446L: linux-kernel@vger.kernel.org
1447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001448F: fs/configfs/
1449F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001450
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001451CONTROL GROUPS (CGROUPS)
1452P: Paul Menage
1453M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001454P: Li Zefan
1455M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001456L: containers@lists.linux-foundation.org
1457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: include/linux/cgroup*
1459F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001460
Rudolf Marekbebe4672007-05-08 17:22:02 +02001461CORETEMP HARDWARE MONITORING DRIVER
1462P: Rudolf Marek
1463M: r.marek@assembler.cz
1464L: lm-sensors@lm-sensors.org
1465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001466F: Documentation/hwmon/coretemp
1467F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469COSA/SRP SYNC SERIAL DRIVER
1470P: Jan "Yenya" Kasprzak
1471M: kas@fi.muni.cz
1472W: http://www.fi.muni.cz/~kas/cosa/
1473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001474F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476CPU FREQUENCY DRIVERS
1477P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001478M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001479L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001481T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001483F: arch/x86/kernel/cpu/cpufreq/
1484F: drivers/cpufreq/
1485F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487CPUID/MSR DRIVER
1488P: H. Peter Anvin
1489M: hpa@zytor.com
1490S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001491F: arch/x86/kernel/cpuid.c
1492F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Paul Jacksoned90fb42005-09-27 21:45:37 -07001494CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001495P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001496M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001497L: linux-kernel@vger.kernel.org
1498W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001499W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001501F: Documentation/cgroups/cpusets.txt
1502F: include/linux/cpuset.h
1503F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001506W: http://sourceforge.net/projects/cramfs/
1507S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001508F: Documentation/filesystems/cramfs.txt
1509F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511CRIS PORT
1512P: Mikael Starvik
1513M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001514P: Jesper Nilsson
1515M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516L: dev-etrax@axis.com
1517W: http://developer.axis.com
1518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001519F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521CRYPTO API
1522P: Herbert Xu
1523M: herbert@gondor.apana.org.au
1524P: David S. Miller
1525M: davem@davemloft.net
1526L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001527T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001529F: Documentation/crypto/
1530F: arch/*/crypto/
1531F: crypto/
1532F: drivers/crypto/
1533F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Neil Horman5b07bd52009-02-05 16:03:04 +11001535CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1536P: Neil Horman
1537M: nhorman@tuxdriver.com
1538L: linux-crypto@vger.kernel.org
1539S: Maintained
1540
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001541CS5535 Audio ALSA driver
1542P: Jaya Kumar
1543M: jayakumar.alsa@gmail.com
1544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001545F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001546
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001547CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001548P: Hans Verkuil
1549M: hverkuil@xs4all.nl
1550P: Andy Walls
1551M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001552L: ivtv-devel@ivtvdriver.org
1553L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001554L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001555T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001556W: http://linuxtv.org
1557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001558F: Documentation/video4linux/cx18.txt
1559F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001560
Steve Wisee5ec3782008-05-20 14:06:33 -07001561CXGB3 ETHERNET DRIVER (CXGB3)
1562P: Divy Le Ray
1563M: divy@chelsio.com
1564L: netdev@vger.kernel.org
1565W: http://www.chelsio.com
1566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001567F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001568
1569CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1570P: Steve Wise
1571M: swise@chelsio.com
1572L: general@lists.openfabrics.org
1573W: http://www.openfabrics.org
1574S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001575F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577CYBERPRO FB DRIVER
1578P: Russell King
1579M: rmk@arm.linux.org.uk
1580W: http://www.arm.linux.org.uk/
1581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001582F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584CYCLADES 2X SYNC CARD DRIVER
1585P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001586M: acme@ghostprotocols.net
1587W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001593S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001594F: drivers/char/cyclades.c
1595F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001599S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001600F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602DAMA SLAVE for AX.25
1603P: Joerg Reuter
1604M: jreuter@yaina.de
1605W: http://yaina.de/jreuter/
1606W: http://www.qsl.net/dl1bke/
1607L: linux-hams@vger.kernel.org
1608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001609F: net/ax25/af_ax25.c
1610F: net/ax25/ax25_dev.c
1611F: net/ax25/ax25_ds_*
1612F: net/ax25/ax25_in.c
1613F: net/ax25/ax25_out.c
1614F: net/ax25/ax25_timer.c
1615F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001617DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1618P: Tobias Ringstrom
1619M: tori@unhappy.mine.nu
1620L: netdev@vger.kernel.org
1621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001622F: Documentation/networking/dmfe.txt
1623F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001624
1625DC390/AM53C974 SCSI driver
1626P: Kurt Garloff
1627M: garloff@suse.de
1628W: http://www.garloff.de/kurt/linux/dc390/
1629P: Guennadi Liakhovetski
1630M: g.liakhovetski@gmx.de
1631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001632F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634DC395x SCSI driver
1635P: Oliver Neukum
1636M: oliver@neukum.name
1637P: Ali Akcaagac
1638M: aliakc@web.de
1639P: Jamie Lenehan
1640M: lenehan@twibble.org
1641W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001642L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643L: http://lists.twibble.org/mailman/listinfo/dc395x/
1644S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001645F: Documentation/scsi/dc395x.txt
1646F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001648DCCP PROTOCOL
1649P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001650M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001651L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001652W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001654F: include/linux/dccp.h
1655F: include/linux/tfrc.h
1656F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001657
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001659P: Christine Caulfield
1660M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661W: http://linux-decnet.sourceforge.net
1662L: linux-decnet-user@lists.sourceforge.net
1663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001664F: Documentation/networking/decnet.txt
1665F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667DEFXX FDDI NETWORK DRIVER
1668P: Maciej W. Rozycki
1669M: macro@linux-mips.org
1670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001671F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001673DELL LAPTOP DRIVER
1674P: Matthew Garrett
1675M: mjg59@srcf.ucam.org
1676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001677F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679DELL LAPTOP SMM DRIVER
1680P: Massimo Dal Zotto
1681M: dz@debian.org
1682W: http://www.debian.org/~dz/i8k/
1683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001684F: drivers/char/i8k.c
1685F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Doug Warzecha90563ec2005-09-06 15:17:15 -07001687DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1688P: Doug Warzecha
1689M: Douglas_Warzecha@dell.com
1690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001691F: Documentation/dcdbas.txt
1692F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001693
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001694DELL WMI EXTRAS DRIVER
1695P: Matthew Garrett
1696M: mjg59@srcf.ucam.org
1697S: Maintained
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699DEVICE NUMBER REGISTRY
1700P: Torben Mathiasen
1701M: device@lanana.org
1702W: http://lanana.org/docs/device-list/index.html
1703L: linux-kernel@vger.kernel.org
1704S: Maintained
1705
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001706DEVICE-MAPPER (LVM)
1707P: Alasdair Kergon
1708L: dm-devel@redhat.com
1709W: http://sources.redhat.com/dm
1710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001711F: Documentation/device-mapper/
1712F: drivers/md/dm*
1713F: include/linux/device-mapper.h
1714F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716DIGI INTL. EPCA DRIVER
1717P: Digi International, Inc
1718M: Eng.Linux@digi.com
1719L: Eng.Linux@digi.com
1720W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001721S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001722F: Documentation/serial/digiepca.txt
1723F: drivers/char/epca*
1724F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Randy Dunlape7839f22008-10-12 16:11:45 -07001726DIRECTORY NOTIFICATION (DNOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727P: Stephen Rothwell
1728M: sfr@canb.auug.org.au
1729L: linux-kernel@vger.kernel.org
1730S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001731F: Documentation/filesystems/dnotify.txt
1732F: fs/notify/dnotify/
1733F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735DISK GEOMETRY AND PARTITION HANDLING
1736P: Andries Brouwer
1737M: aeb@cwi.nl
1738W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1739W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1740W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1741S: Maintained
1742
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001743DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744P: Jan Kara
1745M: jack@suse.cz
1746L: linux-kernel@vger.kernel.org
1747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001748F: Documentation/filesystems/quota.txt
1749F: fs/quota/
1750F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Randy Dunlape7839f22008-10-12 16:11:45 -07001752DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001753P: Christine Caulfield
1754M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001755P: David Teigland
1756M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001757L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001758W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001759T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001760S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001761F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001762
Dan Williamsb3e5f262007-08-07 10:26:35 -07001763DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001764P: Maciej Sosnowski
1765M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001766P: Dan Williams
1767M: dan.j.williams@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001768L: linux-kernel@vger.kernel.org
Dan Williamsb3e5f262007-08-07 10:26:35 -07001769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001770F: drivers/dma/
1771F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001772
Juerg Haefligerb8250372007-06-09 10:11:16 -04001773DME1737 HARDWARE MONITOR DRIVER
1774P: Juerg Haefliger
1775M: juergh@gmail.com
1776L: lm-sensors@lm-sensors.org
1777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001778F: Documentation/hwmon/dme1737
1779F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001780
Martin Waitzba483d52005-06-17 13:20:59 -07001781DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001782P: Randy Dunlap
1783M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001784S: Maintained
1785
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001786DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001787P: Shaohua Li
1788M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001789L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001791F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001792
Joe Perches7d2c86b2009-04-07 20:59:01 -07001793DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001794P: Randy Dunlap
1795M: rdunlap@xenotime.net
1796L: linux-doc@vger.kernel.org
1797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001798F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800DOUBLETALK DRIVER
1801P: James R. Van Zandt
1802M: jrv@vanzandt.mv.com
1803L: blinux-list@redhat.com
1804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001805F: drivers/char/dtlk.c
1806F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001808DPT_I2O SCSI RAID DRIVER
1809P: Adaptec OEM Raid Solutions
1810M: aacraid@adaptec.com
1811L: linux-scsi@vger.kernel.org
1812W: http://www.adaptec.com/
1813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001814F: drivers/scsi/dpt*
1815F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817DRIVER CORE, KOBJECTS, AND SYSFS
1818P: Greg Kroah-Hartman
1819M: gregkh@suse.de
1820L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001821T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001823F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001824F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001825F: fs/sysfs/
1826F: include/linux/kobj*
1827F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829DRM DRIVERS
1830P: David Airlie
1831M: airlied@linux.ie
1832L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001833T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001835F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001838P: Francois Romieu
1839M: romieu@fr.zoreil.com
1840L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001842F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001844DZ DECSTATION DZ11 SERIAL DRIVER
1845P: Maciej W. Rozycki
1846M: macro@linux-mips.org
1847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001848F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850EATA-DMA SCSI DRIVER
1851P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001852M: mike@i-Connect.Net
1853L: linux-eata@i-connect.net
1854L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001856F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858EATA ISA/EISA/PCI SCSI DRIVER
1859P: Dario Ballabio
1860M: ballabio_dario@emc.com
1861L: linux-scsi@vger.kernel.org
1862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001863F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865EATA-PIO SCSI DRIVER
1866P: Michael Neuffer
1867M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001868L: linux-eata@i-connect.net
1869L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001871F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873EBTABLES
1874P: Bart De Schuymer
1875M: bart.de.schuymer@pandora.be
1876L: ebtables-user@lists.sourceforge.net
1877L: ebtables-devel@lists.sourceforge.net
1878W: http://ebtables.sourceforge.net/
1879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001880F: include/linux/netfilter_bridge/ebt_*.h
1881F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Michael Halcrow237fead2006-10-04 02:16:22 -07001883ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001884P: Tyler Hicks
1885M: tyhicks@linux.vnet.ibm.com
1886M: Dustin Kirkland
1887P: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001888L: ecryptfs-devel@lists.launchpad.net
1889W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001891F: Documentation/filesystems/ecryptfs.txt
1892F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001893
Alan Coxda9bb1d2006-01-18 17:44:13 -08001894EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001895P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001896M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001897L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001898W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001899S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001900F: Documentation/edac.txt
1901F: drivers/edac/edac_*
1902F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001903
1904EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001905P: Mark Gross
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001906P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001907M: mark.gross@intel.com
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001908M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001909L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001910W: bluesmoke.sourceforge.net
1911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001912F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001913
1914EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001915P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001916M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001917L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001918W: bluesmoke.sourceforge.net
1919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001920F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001921
Douglas Thompson6bc78402007-07-19 01:50:12 -07001922EDAC-I82443BXGX
1923P: Tim Small
1924M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001925L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001926W: bluesmoke.sourceforge.net
1927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001928F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001929
1930EDAC-I3000
1931P: Jason Uhlenkott
1932M: juhlenko@akamai.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001933L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001934W: bluesmoke.sourceforge.net
1935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001936F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001937
1938EDAC-I5000
1939P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001940M: dougthompson@xmission.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001941L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001942W: bluesmoke.sourceforge.net
1943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001944F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001945
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001946EDAC-I5400
1947P: Mauro Carvalho Chehab
1948M: mchehab@redhat.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001949L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001950W: bluesmoke.sourceforge.net
1951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001952F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001953
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001954EDAC-I82975X
1955P: Ranganathan Desikan
1956P: Arvind R.
1957M: rdesikan@jetzbroadband.com
1958M: arvind@acarlab.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001959L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001960W: bluesmoke.sourceforge.net
1961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001962F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001963
1964EDAC-PASEMI
1965P: Egor Martovetsky
1966M: egor@pasemi.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001967L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001968W: bluesmoke.sourceforge.net
1969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001970F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001971
Dave Peterson0e438e32006-03-26 01:38:55 -08001972EDAC-R82600
1973P: Tim Small
1974M: tim@buttersideup.com
Jean Delvare7b102d02009-04-13 14:40:02 -07001975L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001976W: bluesmoke.sourceforge.net
1977S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001978F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08001979
Eric Coopere59f8792008-03-13 12:55:46 +01001980EEEPC LAPTOP EXTRAS DRIVER
1981P: Corentin Chary
1982M: corentincj@iksaif.net
1983L: acpi4asus-user@lists.sourceforge.net
1984W: http://sourceforge.net/projects/acpi4asus
1985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01001987
Josh Triplett0bee8d22006-07-30 03:03:58 -07001988EFS FILESYSTEM
1989W: http://aeschi.ch.eu.org/efs/
1990S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001991F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07001992
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001993EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07001994P: Hoang-Nam Nguyen
1995M: hnguyen@de.ibm.com
1996P: Christoph Raisch
1997M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07001998L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07001999S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002000F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002001
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002002EMBEDDED LINUX
2003P: Paul Gortmaker
2004M: paul.gortmaker@windriver.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002005P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002006M: dwmw2@infradead.org
2007L: linux-embedded@vger.kernel.org
2008S: Maintained
2009
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002010EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002011P: James Smart
2012M: james.smart@emulex.com
2013L: linux-scsi@vger.kernel.org
2014W: http://sourceforge.net/projects/lpfcxxxx
2015S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002016F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018EPSON 1355 FRAMEBUFFER DRIVER
2019P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002020M: ch@murgatroid.com
2021P: Christopher Hoover
2022M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002024F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002026EPSON S1D13XXX FRAMEBUFFER DRIVER
2027P: Kristoffer Ericson
2028M: kristoffer.ericson@gmail.com
2029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002030F: drivers/video/s1d13xxxfb.c
2031F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033ETHEREXPRESS-16 NETWORK DRIVER
2034P: Philip Blundell
2035M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002036L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
2040ETHERNET BRIDGE
2041P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002042M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002043L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002044W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002046F: include/linux/netfilter_bridge/
2047F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049ETHERTEAM 16I DRIVER
2050P: Mika Kuoppala
2051M: miku@iki.fi
2052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002053F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002056L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002058F: Documentation/filesystems/ext2.txt
2059F: fs/ext2/
2060F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002063P: Stephen Tweedie
2064M: sct@redhat.com
2065P: Andrew Morton
2066M: akpm@linux-foundation.org
2067P: Andreas Dilger
2068M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002069L: linux-ext4@vger.kernel.org
2070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002071F: Documentation/filesystems/ext3.txt
2072F: fs/ext3/
2073F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002074
2075EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002076P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002077M: tytso@mit.edu
2078P: Andreas Dilger
2079M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002080L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002081W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002083F: Documentation/filesystems/ext4.txt
2084F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Jean Delvaree53004e2006-01-09 23:26:14 +01002086F71805F HARDWARE MONITORING DRIVER
2087P: Jean Delvare
2088M: khali@linux-fr.org
2089L: lm-sensors@lm-sensors.org
2090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002091F: Documentation/hwmon/f71805f
2092F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094FARSYNC SYNCHRONOUS DRIVER
2095P: Kevin Curtis
2096M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097W: http://www.farsite.co.uk/
2098S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002099F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Akinobu Mitac5408b82007-04-23 14:41:20 -07002101FAULT INJECTION SUPPORT
2102P: Akinobu Mita
2103M: akinobu.mita@gmail.com
2104S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002105F: Documentation/fault-injection/
2106F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002107
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002108FILE LOCKING (flock() and fcntl()/lockf())
2109P: Matthew Wilcox
2110M: matthew@wil.cx
2111L: linux-fsdevel@vger.kernel.org
2112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002113F: include/linux/fcntl.h
2114F: include/linux/fs.h
2115F: fs/fcntl.c
2116F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002117
2118FILESYSTEMS (VFS and infrastructure)
2119P: Alexander Viro
2120M: viro@zeniv.linux.org.uk
2121L: linux-fsdevel@vger.kernel.org
2122S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002123F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002124
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002125FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2126P: Riku Voipio
2127M: riku.vipio@iki.fi
2128L: lm-sensors@lm-sensors.org
2129S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002130F: drivers/hwmon/f75375s.c
2131F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002132
Joe Perches7d2c86b2009-04-07 20:59:01 -07002133FIREWIRE SUBSYSTEM
2134P: Kristian Hoegsberg
2135M: krh@redhat.com
2136P: Stefan Richter
2137M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002138L: linux1394-devel@lists.sourceforge.net
2139W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002140T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002142F: drivers/firewire/
2143F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002144
2145FIRMWARE LOADER (request_firmware)
2146L: linux-kernel@vger.kernel.org
2147S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002148F: Documentation/firmware_class/
2149F: drivers/base/firmware*.c
2150F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002151
2152FPU EMULATOR
2153P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002154M: billm@melbpc.org.au
2155W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002157F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002158
2159FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2160P: Mike McLagan
2161M: mike.mclagan@linux.org
2162L: netdev@vger.kernel.org
2163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002164F: drivers/net/wan/dlci.c
2165F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167FRAMEBUFFER LAYER
2168P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002169M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002170L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171W: http://linux-fbdev.sourceforge.net/
2172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002173F: Documentation/fb/
2174F: drivers/video/fb*
2175F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Zhang Wei173acc72008-03-01 07:42:48 -07002177FREESCALE DMA DRIVER
Zhang Wei76b0c7882008-05-13 14:44:59 -07002178P: Li Yang
2179M: leoli@freescale.com
2180P: Zhang Wei
2181M: zw@zh-kernel.org
Zhang Wei173acc72008-03-01 07:42:48 -07002182L: linuxppc-embedded@ozlabs.org
2183L: linux-kernel@vger.kernel.org
2184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002185F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002186
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002187FREESCALE I2C CPM DRIVER
2188P: Jochen Friedrich
2189M: jochen@scram.de
2190L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002191L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002193F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002194
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002195FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2196P: Sascha Hauer
2197M: kernel@pengutronix.de
2198L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2199L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002201F: arch/arm/plat-mxc/include/mach/imxfb.h
2202F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002203
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002204FREESCALE SOC FS_ENET DRIVER
2205P: Pantelis Antoniou
2206M: pantelis.antoniou@gmail.com
2207P: Vitaly Bordug
2208M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002209L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002210L: netdev@vger.kernel.org
2211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/net/fs_enet/
2213F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002214
Timur Tabid9e9d822008-04-24 08:45:26 +10002215FREESCALE QUICC ENGINE LIBRARY
2216P: Timur Tabi
2217M: timur@freescale.com
2218L: linuxppc-dev@ozlabs.org
2219S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002220F: arch/powerpc/sysdev/qe_lib/
2221F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002222
Li Yanga7205b32007-04-23 10:38:18 -07002223FREESCALE HIGHSPEED USB DEVICE DRIVER
2224P: Li Yang
2225M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002226L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002227L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002229F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002230
Li Yangbeaf53b2007-05-25 13:54:02 +08002231FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2232P: Li Yang
2233M: leoli@freescale.com
2234L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002235L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002237F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002238
Timur Tabid9e9d822008-04-24 08:45:26 +10002239FREESCALE QUICC ENGINE UCC UART DRIVER
2240P: Timur Tabi
2241M: timur@freescale.com
2242L: linuxppc-dev@ozlabs.org
2243S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002244F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002245
2246FREESCALE SOC SOUND DRIVERS
2247P: Timur Tabi
2248M: timur@freescale.com
2249L: alsa-devel@alsa-project.org
2250L: linuxppc-dev@ozlabs.org
2251S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002252F: sound/soc/fsl/fsl*
2253F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255FREEVXFS FILESYSTEM
2256P: Christoph Hellwig
2257M: hch@infradead.org
2258W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002260F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Pavel Machek71038f52009-01-15 13:51:02 -08002262FREEZER
2263P: Pavel Machek
2264M: pavel@suse.cz
2265P: Rafael J. Wysocki
2266M: rjw@sisk.pl
2267L: linux-pm@lists.linux-foundation.org
2268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002269F: Documentation/power/freezing-of-tasks.txt
2270F: include/linux/freezer.h
2271F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002272
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002273FTRACE
2274P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002275M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002277F: Documentation/ftrace.txt
2278F: arch/*/*/*/ftrace.h
2279F: arch/*/kernel/ftrace.c
2280F: include/*/ftrace.h
2281F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002282
David Howells5ab7ffe2007-04-10 15:10:45 +01002283FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284P: David Howells
2285M: dhowells@redhat.com
2286S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002287F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Jonathan Woithe20b93732008-06-11 10:14:56 +09302289FUJITSU LAPTOP EXTRAS
2290P: Jonathan Woithe
2291M: jwoithe@physics.adelaide.edu.au
2292L: linux-acpi@vger.kernel.org
2293S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002294F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302295
Miklos Szeredi04578f12005-09-09 13:10:22 -07002296FUSE: FILESYSTEM IN USERSPACE
2297P: Miklos Szeredi
2298M: miklos@szeredi.hu
2299L: fuse-devel@lists.sourceforge.net
2300W: http://fuse.sourceforge.net/
2301S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002302F: fs/fuse/
2303F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2306P: Rik Faith
2307M: faith@cs.unc.edu
2308L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002309S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002310F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312GDT SCSI DISK ARRAY CONTROLLER DRIVER
2313P: Achim Leubner
2314M: achim_leubner@adaptec.com
2315L: linux-scsi@vger.kernel.org
2316W: http://www.icp-vortex.com/
2317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002318F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002320GENERIC GPIO I2C DRIVER
2321P: Haavard Skinnemoen
2322M: hskinnemoen@atmel.com
2323S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002324F: drivers/i2c/busses/i2c-gpio.c
2325F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002326
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002327GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328P: Krzysztof Halasa
2329M: khc@pm.waw.pl
2330W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002332F: drivers/net/wan/c101.c
2333F: drivers/net/wan/hd6457*
2334F: drivers/net/wan/hdlc*
2335F: drivers/net/wan/n2.c
2336F: drivers/net/wan/pc300too.c
2337F: drivers/net/wan/pci200syn.c
2338F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002340GFS2 FILE SYSTEM
2341P: Steven Whitehouse
2342M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002343L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002344W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002345T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2346T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002347S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002348F: Documentation/filesystems/gfs2*.txt
2349F: fs/gfs2/
2350F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002351
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002352GIGASET ISDN DRIVERS
2353P: Hansjoerg Lipp
2354M: hjlipp@web.de
2355P: Tilman Schmidt
2356M: tilman@imap.cc
2357L: gigaset307x-common@lists.sourceforge.net
2358W: http://gigaset307x.sourceforge.net/
2359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: Documentation/isdn/README.gigaset
2361F: drivers/isdn/gigaset/
2362F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002363
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002364HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002365P: Frank Seidel
2366M: frank@f-seidel.de
2367L: lm-sensors@lm-sensors.org
2368W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002370F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002371
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002372HYPERVISOR VIRTUAL CONSOLE DRIVER
2373L: linuxppc-dev@ozlabs.org
2374L: linux-kernel@vger.kernel.org
2375S: Odd Fixes
2376F: drivers/char/hvc_*
2377
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002378GSPCA FINEPIX SUBDRIVER
2379P: Frank Zago
2380M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002381L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002382T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002384F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002385
2386GSPCA M5602 SUBDRIVER
2387P: Erik Andren
2388M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002389L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002390T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002392F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002393
2394GSPCA PAC207 SONIXB SUBDRIVER
2395P: Hans de Goede
2396M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002397L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002398T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002399S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002400F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002401
2402GSPCA T613 SUBDRIVER
2403P: Leandro Costantino
2404M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002405L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002406T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002408F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002409
2410GSPCA USB WEBCAM DRIVER
2411P: Jean-Francois Moine
2412M: moinejf@free.fr
2413W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002414L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002415T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002417F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002418
Jean Delvare5b543962005-08-15 19:51:02 +02002419HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002420L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002421W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002422S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002423F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002424
Michael Buesch844dd052006-06-26 00:24:59 -07002425HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002426S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002427F: Documentation/hw_random.txt
2428F: drivers/char/hw_random/
2429F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431HARMONY SOUND DRIVER
2432P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002433M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002434L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002436F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438HAYES ESP SERIAL DRIVER
2439P: Andrew J. Robinson
2440M: arobinso@nyx.net
2441L: linux-kernel@vger.kernel.org
2442W: http://www.nyx.net/~arobinso
2443S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002444F: Documentation/serial/hayes-esp.txt
2445F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446
2447HEWLETT-PACKARD SMART2 RAID DRIVER
2448P: Chirag Kantharia
2449M: chirag.kantharia@hp.com
2450L: iss_storagedev@hp.com
2451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002452F: Documentation/blockdev/cpqarray.txt
2453F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002454
2455HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2456P: Mike Miller
2457M: mike.miller@hp.com
2458L: iss_storagedev@hp.com
2459S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002460F: Documentation/blockdev/cciss.txt
2461F: drivers/block/cciss*
2462F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464HFS FILESYSTEM
2465P: Roman Zippel
2466M: zippel@linux-m68k.org
2467L: linux-kernel@vger.kernel.org
2468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002469F: Documentation/filesystems/hfs.txt
2470F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472HGA FRAMEBUFFER DRIVER
2473P: Ferenc Bakonyi
2474M: fero@drama.obuda.kando.hu
2475L: linux-nvidia@lists.surfsouth.com
2476W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2477S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002478F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002480HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002481P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002482M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002483P: Rafael J. Wysocki
2484M: rjw@sisk.pl
2485L: linux-pm@lists.linux-foundation.org
2486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002487F: arch/x86/power/
2488F: drivers/base/power/
2489F: kernel/power/
2490F: include/linux/suspend.h
2491F: include/linux/freezer.h
2492F: include/linux/pm.h
2493F: include/asm-*/suspend*.h
2494F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002495
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002496HID CORE LAYER
2497P: Jiri Kosina
2498M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002499L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002500T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002502F: drivers/hid/
2503F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002504
Ingo Molnar38bed542007-02-22 09:09:34 +01002505HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2506P: Thomas Gleixner
2507M: tglx@linutronix.de
2508L: linux-kernel@vger.kernel.org
2509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: Documentation/timers/
2511F: kernel/hrtimer.c
2512F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514HIGH-SPEED SCC DRIVER FOR AX.25
2515P: Klaus Kudielka
2516M: klaus.kudielka@ieee.org
2517L: linux-hams@vger.kernel.org
2518W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002520F: drivers/net/hamradio/dmascc.c
2521F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002523HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2524P: HighPoint Linux Team
2525M: linux@highpoint-tech.com
2526W: http://www.highpoint-tech.com
2527S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002528F: Documentation/scsi/hptiop.txt
2529F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002530
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531HIPPI
2532P: Jes Sorensen
2533M: jes@trained-monkey.org
2534L: linux-hippi@sunsite.dk
2535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002536F: include/linux/hippidevice.h
2537F: include/linux/if_hippi.h
2538F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Jouni Malinenff1d2762005-05-12 22:54:16 -04002540HOST AP DRIVER
2541P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002542M: j@w1.fi
2543L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002544L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002545W: http://hostap.epitest.fi/
2546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002547F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002548
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002549HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2550P: Carlos Corbacho
2551M: carlos@strangeworlds.co.uk
2552S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002553F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002554
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002555HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2556P: Jaroslav Kysela
2557M: perex@perex.cz
2558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002559F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002560
Joe Perches7d2c86b2009-04-07 20:59:01 -07002561HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002562P: Clemens Ladisch
2563M: clemens@ladisch.de
2564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/timers/hpet.txt
2566F: drivers/char/hpet.c
2567F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002568
2569HPET: i386
2570P: Venkatesh Pallipadi (Venki)
2571M: venkatesh.pallipadi@intel.com
2572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002573F: arch/x86/kernel/hpet.c
2574F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002575
2576HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002577P: Vojtech Pavlik
2578M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002579S: Maintained
2580
Joe Perches7d2c86b2009-04-07 20:59:01 -07002581HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002582P: Bob Picco
2583M: bob.picco@hp.com
2584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002585F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587HPFS FILESYSTEM
2588P: Mikulas Patocka
2589M: mikulas@artax.karlin.mff.cuni.cz
2590W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002592F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Joe Perches7d2c86b2009-04-07 20:59:01 -07002594HSO 3G MODEM DRIVER
Jan Dumon510f32b2009-04-13 14:39:34 -07002595P: Jan Dumon
2596M: j.dumon@option.com
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002597W: http://www.pharscape.org
2598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002599F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002600
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002601HTCPEN TOUCHSCREEN DRIVER
2602P: Pau Oliva Fora
2603M: pof@eslack.org
2604L: linux-input@vger.kernel.org
2605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002606F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608HUGETLB FILESYSTEM
2609P: William Irwin
2610M: wli@holomorphy.com
2611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002612F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002614I2C/SMBUS STUB DRIVER
2615P: Mark M. Hoffman
2616M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002617L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002619F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002620
Jean Delvare5b543962005-08-15 19:51:02 +02002621I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002622P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002624P: Ben Dooks (embedded platforms)
2625M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002626L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002627W: http://i2c.wiki.kernel.org/
2628T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002630F: Documentation/i2c/
2631F: drivers/i2c/
2632F: include/linux/i2c.h
2633F: include/linux/i2c-dev.h
2634F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Till Harbaume8c76ee2007-05-01 23:26:35 +02002636I2C-TINY-USB DRIVER
2637P: Till Harbaum
2638M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002639L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002640W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002642F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002645P: H. Peter Anvin
2646M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647L: Linux-Kernel@vger.kernel.org
2648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002649F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652P: H. Peter Anvin
2653M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002654T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655S: Maintained
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657IA64 (Itanium) PLATFORM
2658P: Tony Luck
2659M: tony.luck@intel.com
2660L: linux-ia64@vger.kernel.org
2661W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002662T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002664F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666IBM MCA SCSI SUBSYSTEM DRIVER
2667P: Michael Lang
2668M: langa2@kph.uni-mainz.de
2669W: http://www.uni-mainz.de/~langm000/linux.html
2670S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002671F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673IBM Power Linux RAID adapter
2674P: Brian King
2675M: brking@us.ibm.com
2676S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002677F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678
2679IBM ServeRAID RAID DRIVER
2680P: Jack Hammer
2681P: Dave Jeffery
2682M: ipslinux@adaptec.com
2683W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002684S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002685F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002687IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002689M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002691T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002693F: Documentation/ide/
2694F: drivers/ide/
2695F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002697IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002698P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002699M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002700L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002701S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002702F: Documentation/cdrom/ide-cd
2703F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Andy Henroid27471fd2008-10-09 11:45:22 -07002705IDLE-I7300
2706P: Andy Henroid
2707M: andrew.d.henroid@intel.com
2708L: linux-pm@lists.linux-foundation.org
2709S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002710F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002711
Joe Perches7d2c86b2009-04-07 20:59:01 -07002712IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002714M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002715P: Stefan Richter
2716M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717L: linux1394-devel@lists.sourceforge.net
2718W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002719T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002721F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Joe Perches7d2c86b2009-04-07 20:59:01 -07002723IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724P: Dan Dennedy
2725M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002726P: Stefan Richter
2727M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002729S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002730F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002731
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002732INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2733P: Mimi Zohar
2734M: zohar@us.ibm.com
2735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002736F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002739L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002740S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002741F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743INFINIBAND SUBSYSTEM
2744P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002745M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002747M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002749M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002750L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002752T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002754F: Documentation/infiniband/
2755F: drivers/infiniband/
2756F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Robert Lovec9f04f52005-07-15 12:21:07 -04002758INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01002759P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002760M: john@johnmccutchan.com
Cal Peake18b36c712006-12-12 20:18:16 +01002761P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002762M: rlove@rlove.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002763L: linux-kernel@vger.kernel.org
2764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002765F: Documentation/filesystems/inotify.txt
2766F: fs/notify/inotify/
2767F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002768
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002769INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2770P: Dmitry Torokhov
2771M: dmitry.torokhov@gmail.com
2772M: dtor@mail.ru
2773L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002774T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002776F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002777
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002778INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002779P: Sylvain Meyer
2780M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002781L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002783F: Documentation/fb/intelfb.txt
2784F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002785
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002787P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002788M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002789L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002790S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002791F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302793INTEL MENLOW THERMAL DRIVER
2794P: Sujith Thomas
2795M: sujith.thomas@intel.com
2796L: linux-acpi@vger.kernel.org
2797W: http://www.lesswatts.org/projects/acpi/
2798S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002799F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801INTEL IA32 MICROCODE UPDATE SUPPORT
2802P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002803M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002805F: arch/x86/kernel/microcode_core.c
2806F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002808INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002809P: Maciej Sosnowski
2810M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002811L: linux-kernel@vger.kernel.org
2812S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002813F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002814
David Woodhouse6c8909b2008-10-18 16:12:17 +01002815INTEL IOMMU (VT-d)
2816P: David Woodhouse
2817M: dwmw2@infradead.org
2818L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002819T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002820S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002821F: drivers/pci/intel-iommu.c
2822F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002823
Dan Williamsb3e5f262007-08-07 10:26:35 -07002824INTEL IOP-ADMA DMA DRIVER
2825P: Dan Williams
2826M: dan.j.williams@intel.com
2827L: linux-kernel@vger.kernel.org
2828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002829F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002830
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002831INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2832P: Krzysztof Halasa
2833M: khc@pm.waw.pl
2834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002835F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2836F: arch/arm/mach-ixp4xx/include/mach/npe.h
2837F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2838F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2839F: drivers/net/arm/ixp4xx_eth.c
2840F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002841
Michael Buesch844dd052006-06-26 00:24:59 -07002842INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2843P: Deepak Saxena
2844M: dsaxena@plexity.net
2845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002846F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002847
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002848INTEL IXP2000 ETHERNET DRIVER
2849P: Lennert Buytenhek
2850M: kernel@wantstofly.org
2851L: netdev@vger.kernel.org
2852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002853F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002854
Auke Kokd94e6fe2008-03-03 14:37:47 -08002855INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002856P: Jeff Kirsher
2857M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002858P: Jesse Brandeburg
2859M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002860P: Bruce Allan
2861M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002862P: PJ Waskiewicz
2863M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002864P: John Ronciak
2865M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002866L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002867W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002869F: drivers/net/e100.c
2870F: drivers/net/e1000/
2871F: drivers/net/e1000e/
2872F: drivers/net/igb/
2873F: drivers/net/ixgb/
2874F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
James Ketrenos826d2ab2005-11-07 18:56:59 -06002876INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002877P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002878M: yi.zhu@intel.com
2879P: James Ketrenos
2880M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002881P: Reinette Chatre
2882M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002883L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002884L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002885W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002886W: http://ipw2100.sourceforge.net
2887S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002888F: Documentation/networking/README.ipw2100
2889F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002890
2891INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002892P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002893M: yi.zhu@intel.com
2894P: James Ketrenos
2895M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002896P: Reinette Chatre
2897M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002898L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002899L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002900W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002901W: http://ipw2200.sourceforge.net
2902S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002903F: Documentation/networking/README.ipw2200
2904F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002905
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002906INTEL WIRELESS WIMAX CONNECTION 2400
2907P: Inaky Perez-Gonzalez
2908M: inaky.perez-gonzalez@intel.com
2909M: linux-wimax@intel.com
2910L: wimax@linuxwimax.org
2911S: Supported
2912W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002913F: Documentation/wimax/README.i2400m
2914F: drivers/net/wimax/i2400m/
2915F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002916
Zhu Yib481de92007-09-25 17:54:57 -07002917INTEL WIRELESS WIFI LINK (iwlwifi)
2918P: Zhu Yi
2919M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002920P: Reinette Chatre
2921M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07002922L: linux-wireless@vger.kernel.org
2923L: ipw3945-devel@lists.sourceforge.net
2924W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002925T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002926S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002927F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002928
Ralf Baechlecb109a02007-08-30 23:56:30 -07002929IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930P: Ralf Baechle
2931M: ralf@linux-mips.org
2932L: linux-mips@linux-mips.org
2933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002934F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Ralf Baechlecb109a02007-08-30 23:56:30 -07002936IOC3 SERIAL DRIVER
2937P: Pat Gefre
2938M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08002939L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07002940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002941F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07002942
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002943IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944P: Juanjo Ciarlante
2945M: jjciarla@raiz.uncu.edu.ar
2946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002947F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Francois Romieu1202d6f2007-09-17 17:13:55 -07002949IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
2950P: Francois Romieu
2951M: romieu@fr.zoreil.com
2952P: Sorbica Shieh
2953M: sorbica@icplus.com.tw
2954P: Jesse Huang
2955M: jesse@icplus.com.tw
2956L: netdev@vger.kernel.org
2957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002958F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002959
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002960IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08002961P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07002962M: infinipath@qlogic.com
2963L: general@lists.openfabrics.org
2964T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002965S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002966F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002967
Corey Minyard4409ebe2006-04-20 02:43:12 -07002968IPMI SUBSYSTEM
2969P: Corey Minyard
2970M: minyard@acm.org
2971L: openipmi-developer@lists.sourceforge.net
2972W: http://openipmi.sourceforge.net/
2973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002974F: Documentation/IPMI.txt
2975F: drivers/char/ipmi/
2976F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002977
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002978IPS SCSI RAID DRIVER
2979P: Adaptec OEM Raid Solutions
2980M: aacraid@adaptec.com
2981L: linux-scsi@vger.kernel.org
2982W: http://www.adaptec.com/
2983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002984F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002985
2986IPVS
2987P: Wensong Zhang
2988M: wensong@linux-vs.org
2989P: Simon Horman
2990M: horms@verge.net.au
2991P: Julian Anastasov
2992M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07002993L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002994L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002996F: Documentation/networking/ipvs-sysctl.txt
2997F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Randy Dunlape7839f22008-10-12 16:11:45 -07002999IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01003000P: Jiri Kosina
3001M: jkosina@suse.cz
3002P: David Sterba
3003M: dsterba@suse.cz
3004S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003005T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003006F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003007
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003008IPX NETWORK LAYER
3009P: Arnaldo Carvalho de Melo
3010M: acme@ghostprotocols.net
3011L: netdev@vger.kernel.org
3012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003013F: include/linux/ipx.h
3014F: include/net/ipx.h
3015F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003018P: Samuel Ortiz
3019M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003020L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003022S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003023F: Documentation/networking/irda.txt
3024F: drivers/net/irda/
3025F: include/net/irda/
3026F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003028ISAPNP
3029P: Jaroslav Kysela
3030M: perex@perex.cz
3031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003032F: Documentation/isapnp.txt
3033F: drivers/pnp/isapnp/
3034F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003035
Mike Christie14816b1e2007-11-28 16:22:06 -08003036ISCSI
3037P: Mike Christie
3038M: michaelc@cs.wisc.edu
3039L: open-iscsi@googlegroups.com
3040W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003041T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003043F: drivers/scsi/*iscsi*
3044F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046ISDN SUBSYSTEM
3047P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003048M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003049L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003051T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003053F: Documentation/isdn/
3054F: drivers/isdn/
3055F: include/linux/isdn.h
3056F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058ISDN SUBSYSTEM (Eicon active card driver)
3059P: Armin Schindler
3060M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003061L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062W: http://www.melware.de
3063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003064F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Hans Verkuil91821ff2007-12-02 09:35:33 -03003066IVTV VIDEO4LINUX DRIVER
3067P: Hans Verkuil
3068M: hverkuil@xs4all.nl
3069L: ivtv-devel@ivtvdriver.org
3070L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003071L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003072T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003073W: http://www.ivtvdriver.org
3074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003075F: Documentation/video4linux/*.ivtv
3076F: drivers/media/video/ivtv/
3077F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003078
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003079JFS FILESYSTEM
3080P: Dave Kleikamp
3081M: shaggy@austin.ibm.com
3082L: jfs-discussion@lists.sourceforge.net
3083W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003084T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003085S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003086F: Documentation/filesystems/jfs.txt
3087F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003088
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003089JME NETWORK DRIVER
3090P: Guo-Fu Tseng
3091M: cooldavid@cooldavid.org
3092L: netdev@vger.kernel.org
3093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003095
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3097P: David Woodhouse
3098M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003099L: linux-mtd@lists.infradead.org
3100W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003102F: fs/jffs2/
3103F: include/linux/jffs2.h
3104F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Josh Triplettde456d32006-07-30 03:04:00 -07003106JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003107P: Stephen Tweedie
3108M: sct@redhat.com
3109P: Andrew Morton
3110M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003111L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003113F: fs/jbd*/
3114F: include/linux/ext*jbd*.h
3115F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003116
Rudolf Marek4660cb32006-10-08 22:01:26 +02003117K8TEMP HARDWARE MONITORING DRIVER
3118P: Rudolf Marek
3119M: r.marek@assembler.cz
3120L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003122F: Documentation/hwmon/k8temp
3123F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125KCONFIG
3126P: Roman Zippel
3127M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003128L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003130F: Documentation/kbuild/kconfig-language.txt
3131F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Vivek Goyalea6c2082006-05-20 14:59:55 -07003133KDUMP
3134P: Vivek Goyal
Vivek Goyal4200b66c2007-12-01 12:16:30 -08003135M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003136P: Haren Myneni
3137M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003138L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003139L: linux-kernel@vger.kernel.org
3140W: http://lse.sourceforge.net/kdump/
3141S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003142F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144KERNEL AUTOMOUNTER (AUTOFS)
3145P: H. Peter Anvin
3146M: hpa@zytor.com
3147L: autofs@linux.kernel.org
3148S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003149F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151KERNEL AUTOMOUNTER v4 (AUTOFS4)
3152P: Ian Kent
3153M: raven@themaw.net
3154L: autofs@linux.kernel.org
3155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157
Joe Perches7d2c86b2009-04-07 20:59:01 -07003158KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159P: Sam Ravnborg
3160M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003161T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3162T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003163L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003165F: Documentation/kbuild/
3166F: Makefile
3167F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168
3169KERNEL JANITORS
3170P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003171L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173S: Maintained
3174
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003175KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003176P: J. Bruce Fields
3177M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003179M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003180L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003183F: fs/nfsd/
3184F: include/linux/nfsd/
3185F: fs/lockd/
3186F: fs/nfs_common/
3187F: net/sunrpc/
3188F: include/linux/lockd/
3189F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Avi Kivity426d62e2006-12-13 00:34:03 -08003191KERNEL VIRTUAL MACHINE (KVM)
3192P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003193M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003194L: kvm@vger.kernel.org
3195W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003197F: Documentation/*/kvm.txt
3198F: arch/*/kvm/
3199F: arch/*/include/asm/kvm*
3200F: include/linux/kvm*
3201F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003202
Joerg Roedelad8003d2008-09-10 20:01:07 +02003203KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3204P: Joerg Roedel
3205M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003206L: kvm@vger.kernel.org
3207W: http://kvm.qumranet.com
3208S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003209F: arch/x86/include/asm/svm.h
3210F: arch/x86/kvm/kvm_svm.h
3211F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003212
Hollis Blanchard513014b2008-04-16 23:28:08 -05003213KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3214P: Hollis Blanchard
3215M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003216L: kvm-ppc@vger.kernel.org
3217W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003219F: arch/powerpc/include/asm/kvm*
3220F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003221
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003222KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003223P: Xiantao Zhang
3224M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003225L: kvm-ia64@vger.kernel.org
3226W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003227S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003228F: Documentation/ia64/kvm.txt
3229F: arch/ia64/include/asm/kvm*
3230F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003231
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003232KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3233P: Carsten Otte
3234M: cotte@de.ibm.com
3235P: Christian Borntraeger
3236M: borntraeger@de.ibm.com
3237M: linux390@de.ibm.com
3238L: linux-s390@vger.kernel.org
3239W: http://www.ibm.com/developerworks/linux/linux390/
3240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003241F: Documentation/s390/kvm.txt
3242F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003243F: arch/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003244
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003245KEXEC
3246P: Eric Biederman
3247M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003248W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003249L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07003250L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003252F: include/linux/kexec.h
3253F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003254
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003255KGDB
3256P: Jason Wessel
3257M: jason.wessel@windriver.com
3258L: kgdb-bugreport@lists.sourceforge.net
3259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003260F: Documentation/DocBook/kgdb.tmpl
3261F: drivers/misc/kgdbts.c
3262F: drivers/serial/kgdboc.c
3263F: include/linux/kgdb.h
3264F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003265
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003266KMEMTRACE
3267P: Eduard - Gabriel Munteanu
3268M: eduard.munteanu@linux360.ro
3269L: linux-kernel@vger.kernel.org
3270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: Documentation/vm/kmemtrace.txt
3272F: include/trace/kmemtrace.h
3273F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003274
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003275KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003276P: Ananth N Mavinakayanahalli
3277M: ananth@in.ibm.com
3278P: Anil S Keshavamurthy
3279M: anil.s.keshavamurthy@intel.com
3280P: David S. Miller
3281M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003282P: Masami Hiramatsu
3283M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003284L: linux-kernel@vger.kernel.org
3285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003286F: Documentation/kprobes.txt
3287F: include/linux/kprobes.h
3288F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003289
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003290KS0108 LCD CONTROLLER DRIVER
3291P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003292M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003293L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07003294W: http://miguelojeda.es/auxdisplay.htm
3295W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003297F: Documentation/auxdisplay/ks0108
3298F: drivers/auxdisplay/ks0108.c
3299F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003303S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003304F: Documentation/networking/lapb-module.txt
3305F: include/*/lapb.h
3306F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
3308LASI 53c700 driver for PARISC
3309P: James E.J. Bottomley
3310M: James.Bottomley@HansenPartnership.com
3311L: linux-scsi@vger.kernel.org
3312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003313F: Documentation/scsi/53c700.txt
3314F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Richard Purdie263de9b2006-05-15 09:44:16 -07003316LED SUBSYSTEM
3317P: Richard Purdie
3318M: rpurdie@rpsys.net
3319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003320F: drivers/leds/
3321F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323LEGO USB Tower driver
3324P: Juergen Stuber
3325M: starblue@users.sourceforge.net
3326L: legousb-devel@lists.sourceforge.net
3327W: http://legousb.sourceforge.net/
3328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003329F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Rusty Russell568a17f2007-10-25 14:12:24 +10003331LGUEST
3332P: Rusty Russell
3333M: rusty@rustcorp.com.au
3334L: lguest@ozlabs.org
3335W: http://lguest.ozlabs.org/
3336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003337F: Documentation/lguest/
3338F: arch/x86/lguest/
3339F: drivers/lguest/
3340F: include/linux/lguest*.h
3341F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343LINUX FOR IBM pSERIES (RS/6000)
3344P: Paul Mackerras
3345M: paulus@au.ibm.com
3346W: http://www.ibm.com/linux/ltc/projects/ppc
3347S: Supported
3348
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003349LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003350P: Benjamin Herrenschmidt
3351M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003352P: Paul Mackerras
3353M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354W: http://www.penguinppc.org/
3355L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003356T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357S: Supported
3358
3359LINUX FOR POWER MACINTOSH
3360P: Benjamin Herrenschmidt
3361M: benh@kernel.crashing.org
3362W: http://www.penguinppc.org/
3363L: linuxppc-dev@ozlabs.org
3364S: Maintained
3365
Grant Likely77a76362008-07-12 12:11:43 -06003366LINUX FOR POWERPC EMBEDDED MPC5XXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367P: Sylvain Munaut
3368M: tnt@246tNt.com
Grant Likelye1eea9f2007-10-09 14:45:26 -06003369P: Grant Likely
3370M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372S: Maintained
3373
3374LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003375P: Josh Boyer
3376M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377P: Matt Porter
3378M: mporter@kernel.crashing.org
3379W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003380L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003381T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382S: Maintained
3383
Grant Likely260c02a2007-10-02 12:15:34 +10003384LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3385P: Grant Likely
3386M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003387W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003388L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389S: Maintained
3390
Tom Rinie93adf12005-07-26 12:49:53 -07003391LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003392P: Vitaly Bordug
3393M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003394P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003395M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003396W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003397L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003398S: Maintained
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003401P: Kumar Gala
3402M: galak@kernel.crashing.org
3403W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003404L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003405S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Olof Johanssonab06ff32006-09-06 14:44:54 -05003407LINUX FOR POWERPC PA SEMI PWRFICIENT
3408P: Olof Johansson
3409M: olof@lixom.net
3410W: http://www.pasemi.com/
3411L: linuxppc-dev@ozlabs.org
3412S: Supported
3413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414LINUX SECURITY MODULE (LSM) FRAMEWORK
3415P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003416M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003417L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003418T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419S: Supported
3420
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003421LLC (802.2)
3422P: Arnaldo Carvalho de Melo
3423M: acme@ghostprotocols.net
3424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003425F: include/linux/llc.h
3426F: include/net/llc*
3427F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003428
Pavel Machek455fbdd2008-11-12 13:27:02 -08003429LIS3LV02D ACCELEROMETER DRIVER
3430P: Eric Piel
3431M: eric.piel@tremplin-utc.net
3432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003433F: Documentation/hwmon/lis3lv02d
3434F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436LM83 HARDWARE MONITOR DRIVER
3437P: Jean Delvare
3438M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003439L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003441F: Documentation/hwmon/lm83
3442F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
3444LM90 HARDWARE MONITOR DRIVER
3445P: Jean Delvare
3446M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003447L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003449F: Documentation/hwmon/lm90
3450F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003452LOCKDEP AND LOCKSTAT
3453P: Peter Zijlstra
3454M: peterz@infradead.org
3455P: Ingo Molnar
3456M: mingo@redhat.com
3457L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003458T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003460F: Documentation/lockdep*.txt
3461F: Documentation/lockstat.txt
3462F: include/linux/lockdep.h
3463F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003464
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003465LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466P: Richard Russon (FlatCap)
3467M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003468L: linux-ntfs-dev@lists.sourceforge.net
3469W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003471F: Documentation/ldm.txt
3472F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003474LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3475P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003476M: Eric.Moore@lsi.com
3477M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003478L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003479L: linux-scsi@vger.kernel.org
3480W: http://www.lsilogic.com/support
3481S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003482F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003483
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3485P: Matthew Wilcox
3486M: matthew@wil.cx
3487L: linux-scsi@vger.kernel.org
3488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003489F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
Mike Frysinger81365c32008-10-29 14:01:12 -07003491LTP (Linux Test Project)
3492P: Subrata Modak
3493M: subrata@linux.vnet.ibm.com
3494P: Mike Frysinger
3495M: vapier@gentoo.org
3496L: ltp-list@lists.sourceforge.net (subscribers-only)
3497W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003498T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003499S: Maintained
3500
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003501M32R ARCHITECTURE
3502P: Hirokazu Takata
3503M: takata@linux-m32r.org
3504L: linux-m32r@ml.linux-m32r.org
3505L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3506W: http://www.linux-m32r.org/
3507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003508F: arch/m32r/
3509F: include/asm-m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003510
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511M68K ARCHITECTURE
3512P: Geert Uytterhoeven
3513M: geert@linux-m68k.org
3514P: Roman Zippel
3515M: zippel@linux-m68k.org
3516L: linux-m68k@lists.linux-m68k.org
3517W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003518T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003520F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003521F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
3523M68K ON APPLE MACINTOSH
3524P: Joshua Thompson
3525M: funaho@jurai.org
3526W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003527L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003529F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
3531M68K ON HP9000/300
3532P: Philip Blundell
3533M: philb@gnu.org
3534W: http://www.tazenda.demon.co.uk/phil/linux-hp
3535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003536F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Jiri Benc64a327a2007-05-05 11:47:08 -07003538MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003539P: Johannes Berg
3540M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003541L: linux-wireless@vger.kernel.org
3542W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003543T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003545F: Documentation/networking/mac80211-injection.txt
3546F: include/net/mac80211.h
3547F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003548
Stefano Brivio1036d862007-12-23 04:46:27 +01003549MAC80211 PID RATE CONTROL
3550P: Stefano Brivio
3551M: stefano.brivio@polimi.it
3552P: Mattias Nissler
3553M: mattias.nissler@gmx.de
3554L: linux-wireless@vger.kernel.org
3555W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003556T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003558F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003559
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003560MACVLAN DRIVER
3561P: Patrick McHardy
3562M: kaber@trash.net
3563L: netdev@vger.kernel.org
3564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003565F: drivers/net/macvlan.c
3566F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003567
Michael Kerriskfaf16682005-07-31 22:34:47 -07003568MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003569P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003570M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003571W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003572L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003573S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003574
Stefano Brivio74cda162007-11-19 20:27:46 +01003575MARVELL LIBERTAS WIRELESS DRIVER
3576P: Dan Williams
3577M: dcbw@redhat.com
3578L: libertas-dev@lists.infradead.org
3579S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003580F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003581
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003582MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003583P: Lennert Buytenhek
3584M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003585L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003586S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003587F: drivers/net/mv643xx_eth.*
3588F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
Pierre Ossman2a695672009-03-16 19:52:26 +01003590MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3591P: Nicolas Pitre
3592M: nico@cam.org
3593L: linux-kernel@vger.kernel.org
3594S: Maintained
3595
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003596MARVELL YUKON / SYSKONNECT DRIVER
3597P: Mirko Lindner
3598M: mlindner@syskonnect.de
3599P: Ralph Roesler
3600M: rroesler@syskonnect.de
3601W: http://www.syskonnect.com
3602S: Supported
3603
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604MATROX FRAMEBUFFER DRIVER
3605P: Petr Vandrovec
3606M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003607L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003609F: drivers/video/matrox/matroxfb_*
3610F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003612MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3613P: Hans J. Koch
3614M: hjk@linutronix.de
3615L: lm-sensors@lm-sensors.org
3616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: Documentation/hwmon/max6650
3618F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003619
Joe Perches127c49a2009-04-08 08:34:04 -07003620MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3621P: Mauro Carvalho Chehab
3622M: mchehab@infradead.org
3623P: LinuxTV.org Project
3624L: linux-media@vger.kernel.org
3625W: http://linuxtv.org
3626T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3627S: Maintained
3628F: Documentation/dvb/
3629F: Documentation/video4linux/
3630F: drivers/media/
3631F: include/media/
3632F: include/linux/dvb/
3633F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003634
3635MEGARAID SCSI DRIVERS
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003636P: Neela Syam Kolli
Sumant Patrobdd0d7572007-05-10 07:22:35 -07003637M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003638L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003639W: http://megaraid.lsilogic.com
3640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003641F: Documentation/scsi/megaraid.txt
3642F: drivers/scsi/megaraid.*
3643F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003644
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645MEMORY MANAGEMENT
3646L: linux-mm@kvack.org
3647L: linux-kernel@vger.kernel.org
3648W: http://www.linux-mm.org
3649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: include/linux/mm.h
3651F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003652
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003653MEMORY RESOURCE CONTROLLER
3654P: Balbir Singh
3655M: balbir@linux.vnet.ibm.com
3656P: Pavel Emelyanov
3657M: xemul@openvz.org
3658P: KAMEZAWA Hiroyuki
3659M: kamezawa.hiroyu@jp.fujitsu.com
3660L: linux-mm@kvack.org
3661L: linux-kernel@vger.kernel.org
3662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003663F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665MEMORY TECHNOLOGY DEVICES (MTD)
3666P: David Woodhouse
3667M: dwmw2@infradead.org
3668W: http://www.linux-mtd.infradead.org/
3669L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003670T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003672F: drivers/mtd/
3673F: include/linux/mtd/
3674F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Michal Simekc6375b02009-03-27 14:25:52 +01003676MICROBLAZE ARCHITECTURE
3677P: Michal Simek
3678M: monstr@monstr.eu
3679L: microblaze-uclinux@itee.uq.edu.au
3680W: http://www.monstr.eu/fdt/
3681T: git git://git.monstr.eu/linux-2.6-microblaze.git
3682S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003683F: arch/microblaze/
Michal Simekc6375b02009-03-27 14:25:52 +01003684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685MICROTEK X6 SCANNER
3686P: Oliver Neukum
3687M: oliver@neukum.name
3688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
3691MIPS
3692P: Ralf Baechle
3693M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003694W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003696T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003698F: Documentation/mips/
3699F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
3701MISCELLANEOUS MCA-SUPPORT
3702P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003703M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704L: linux-kernel@vger.kernel.org
3705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: Documentation/ia64/mca.txt
3707F: Documentation/mca.txt
3708F: drivers/mca/
3709F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710
3711MODULE SUPPORT
3712P: Rusty Russell
3713M: rusty@rustcorp.com.au
3714L: linux-kernel@vger.kernel.org
3715S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003716F: include/linux/module.h
3717F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718
3719MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3720P: Stelian Pop
3721M: stelian@popies.net
3722W: http://popies.net/meye/
3723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003724F: Documentation/video4linux/meye.txt
3725F: drivers/media/video/meye.*
3726F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Pavel Pisac58ff042007-05-16 01:10:41 +02003728MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3729P: Pavel Pisa
3730M: ppisa@pikron.com
3731L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003733F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003734
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735MOUSE AND MISC DEVICES [GENERAL]
3736P: Alessandro Rubini
3737M: rubini@ipvvis.unipv.it
3738L: linux-kernel@vger.kernel.org
3739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003740F: drivers/input/mouse/
3741F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742
Jiri Slabyb9705b62008-04-30 00:53:48 -07003743MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003744P: Jiri Slaby
3745M: jirislaby@gmail.com
3746L: linux-kernel@vger.kernel.org
3747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003748F: Documentation/serial/moxa-smartio
3749F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003750
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003751MSI LAPTOP SUPPORT
3752P: Lennart Poettering
3753M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003754W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003755W: http://0pointer.de/lennart/tchibo.html
3756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003757F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003758
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003759MULTIFUNCTION DEVICES (MFD)
3760P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003761M: sameo@linux.intel.com
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003762L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003763T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003764S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003765F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003766
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003767MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003768P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003769M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003770L: linux-kernel@vger.kernel.org
3771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003772F: drivers/mmc/
3773F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003774
David Brownell15a05802007-08-08 09:12:54 -07003775MULTIMEDIA CARD (MMC) ETC. OVER SPI
3776P: David Brownell
3777M: dbrownell@users.sourceforge.net
3778L: linux-kernel@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003779S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003780F: drivers/mmc/host/mmc_spi.c
3781F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783MULTISOUND SOUND DRIVER
3784P: Andrew Veliath
3785M: andrewtv@usa.net
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: Documentation/sound/oss/MultiSound
3788F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Jiri Slabyd7354102006-12-08 02:38:35 -08003790MULTITECH MULTIPORT CARD (ISICOM)
3791P: Jiri Slaby
3792M: jirislaby@gmail.com
3793L: linux-kernel@vger.kernel.org
3794S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003795F: drivers/char/isicom.c
3796F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003797
Felipe Balbi550a7372008-07-24 12:27:36 +03003798MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003799P: Felipe Balbi
3800M: felipe.balbi@nokia.com
3801L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003802T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003804F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003805
Brice Goglin2d3cf582008-05-17 12:45:36 +02003806MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3807P: Andrew Gallatin
3808M: gallatin@myri.com
3809P: Brice Goglin
3810M: brice@myri.com
3811L: netdev@vger.kernel.org
3812W: http://www.myri.com/scs/download-Myri10GE.html
3813S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003814F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003817P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818M: thockin@hockin.org
3819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822NCP FILESYSTEM
3823P: Petr Vandrovec
3824M: vandrove@vc.cvut.cz
3825L: linware@sh.cvut.cz
3826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003827F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
3829NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3830P: James E.J. Bottomley
3831M: James.Bottomley@HansenPartnership.com
3832L: linux-scsi@vger.kernel.org
3833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003834F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003836NETEFFECT IWARP RNIC DRIVER (IW_NES)
3837P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003838M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003839P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003840M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003841L: general@lists.openfabrics.org
3842W: http://www.neteffect.com
3843S: Supported
3844F: drivers/infiniband/hw/nes/
3845
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003846NETEM NETWORK EMULATOR
3847P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003848M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003849L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003852
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003853NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003854P: Ramkrishna Vepa
3855M: ram.vepa@neterion.com
3856P: Rastapur Santosh
3857M: santosh.rastapur@neterion.com
3858P: Sivakumar Subramani
3859M: sivakumar.subramani@neterion.com
3860P: Sreenivasa Honnur
3861M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003862P: Anil Murthy
3863M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003864L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003865W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3866W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003868F: Documentation/networking/s2io.txt
3869F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003870
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871NETFILTER/IPTABLES/IPCHAINS
3872P: Rusty Russell
3873P: Marc Boucher
3874P: James Morris
3875P: Harald Welte
3876P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07003877P: Patrick McHardy
3878M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07003879L: netfilter-devel@vger.kernel.org
3880L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003881L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882W: http://www.netfilter.org/
3883W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003885F: include/linux/netfilter*
3886F: include/linux/netfilter/
3887F: include/net/netfilter/
3888F: net/*/netfilter.c
3889F: net/*/netfilter/
3890F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Paul Moore4cc67732006-09-25 15:57:13 -07003892NETLABEL
3893P: Paul Moore
3894M: paul.moore@hp.com
3895W: http://netlabel.sf.net
3896L: netdev@vger.kernel.org
3897S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003898F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003899F: include/net/netlabel.h
3900F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003901
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902NETROM NETWORK LAYER
3903P: Ralf Baechle
3904M: ralf@linux-mips.org
3905L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003906W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003908F: include/linux/netrom.h
3909F: include/net/netrom.h
3910F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003912NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913P: Paul Clements
3914M: Paul.Clements@steeleye.com
3915S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003916F: Documentation/blockdev/nbd.txt
3917F: drivers/block/nbd.c
3918F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919
3920NETWORK DEVICE DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921P: Jeff Garzik
3922M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003923L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003924T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003926F: drivers/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928NETWORKING [GENERAL]
3929P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07003930M: netdev@vger.kernel.org
3931L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08003932W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003934F: net/
3935F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
3937NETWORKING [IPv4/IPv6]
3938P: David S. Miller
3939M: davem@davemloft.net
3940P: Alexey Kuznetsov
3941M: kuznet@ms2.inr.ac.ru
3942P: Pekka Savola (ipv6)
3943M: pekkas@netcore.fi
3944P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003945M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946P: Hideaki YOSHIFUJI
3947M: yoshfuji@linux-ipv6.org
3948P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07003949M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003950L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003951T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003953F: net/ipv4/
3954F: net/ipv6/
3955F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
James Morris10e2ff12007-08-25 14:41:28 -07003957NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
3958P: Paul Moore
3959M: paul.moore@hp.com
3960L: netdev@vger.kernel.org
3961S: Maintained
3962
John W. Linville29f8f632006-01-18 14:52:48 -08003963NETWORKING [WIRELESS]
3964P: John W. Linville
3965M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003966L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003967T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003969F: net/wireless/
3970F: include/net/ieee80211*
3971F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08003972
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003973NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08003974P: Dhananjay Phadke
3975M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003976L: netdev@vger.kernel.org
3977W: http://www.netxen.com
3978S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003979F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003980
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003981NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05003983M: Trond.Myklebust@netapp.com
3984L: linux-nfs@vger.kernel.org
3985W: http://client.linux-nfs.org
3986T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003988F: fs/lockd/
3989F: fs/nfs/
3990F: fs/nfs_common/
3991F: net/sunrpc/
3992F: include/linux/lockd/
3993F: include/linux/nfs*
3994F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
3996NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07003997P: Jan-Pascal van Best
3998M: janpascal@vanbest.org
3999P: Andreas Mohr
4000M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07004001L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004003F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004005NILFS2 FILESYSTEM
4006P: KONISHI Ryusuke
4007M: konishi.ryusuke@lab.ntt.co.jp
4008L: users@nilfs.org
4009W: http://www.nilfs.org/en/
4010S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004011F: Documentation/filesystems/nilfs2.txt
4012F: fs/nilfs2/
4013F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4016P: YOKOTA Hiroshi
4017M: yokota@netlab.is.tsukuba.ac.jp
4018W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004020F: Documentation/scsi/NinjaSCSI.txt
4021F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
4023NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4024P: GOTO Masanori
4025M: gotom@debian.or.jp
4026P: YOKOTA Hiroshi
4027M: yokota@netlab.is.tsukuba.ac.jp
4028W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004030F: Documentation/scsi/NinjaSCSI.txt
4031F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033NTFS FILESYSTEM
4034P: Anton Altaparmakov
4035M: aia21@cantab.net
4036L: linux-ntfs-dev@lists.sourceforge.net
4037L: linux-kernel@vger.kernel.org
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004038W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004039T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004041F: Documentation/filesystems/ntfs.txt
4042F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004044NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004045P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004046M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004047L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004049F: drivers/video/riva/
4050F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Bob Copeland0ad122d2008-07-25 19:45:18 -07004052OMFS FILESYSTEM
4053P: Bob Copeland
4054M: me@bobcopeland.com
4055L: linux-karma-devel@lists.sourceforge.net
4056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004057F: Documentation/filesystems/omfs.txt
4058F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004059
Harald Weltec1986ee2005-11-13 16:06:29 -08004060OMNIKEY CARDMAN 4000 DRIVER
4061P: Harald Welte
4062M: laforge@gnumonks.org
4063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004064F: drivers/char/pcmcia/cm4000_cs.c
4065F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004066
Harald Welte77c44ab2005-11-13 16:06:26 -08004067OMNIKEY CARDMAN 4040 DRIVER
4068P: Harald Welte
4069M: laforge@gnumonks.org
4070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004071F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004072
Jonathan Corbet77d51402007-03-22 19:44:17 -03004073OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004074P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004075M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004076L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004077T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004078S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004079F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004080
Thomas Gleixner431bca72007-05-02 09:31:35 +02004081ONENAND FLASH DRIVER
4082P: Kyungmin Park
4083M: kyungmin.park@samsung.com
4084L: linux-mtd@lists.infradead.org
4085S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004086F: drivers/mtd/onenand/
4087F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004088
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089ONSTREAM SCSI TAPE DRIVER
4090P: Willem Riede
4091M: osst@riede.org
4092L: osst-users@lists.sourceforge.net
4093L: linux-scsi@vger.kernel.org
4094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004095F: drivers/scsi/osst*
4096F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004098OPENCORES I2C BUS DRIVER
4099P: Peter Korsgaard
4100M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004101L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004103F: Documentation/i2c/busses/i2c-ocores
4104F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004107P: Robert Richter
4108M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109L: oprofile-list@lists.sf.net
4110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004111F: arch/*/oprofile/
4112F: drivers/oprofile/
4113F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004115ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4116P: Mark Fasheh
4117M: mfasheh@suse.com
4118P: Joel Becker
4119M: joel.becker@oracle.com
4120L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4121W: http://oss.oracle.com/projects/ocfs2/
4122T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2.git
4123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004124F: Documentation/filesystems/ocfs2.txt
4125F: Documentation/filesystems/dlmfs.txt
4126F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128ORINOCO DRIVER
4129P: Pavel Roskin
4130M: proski@gnu.org
4131P: David Gibson
4132M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004133L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004134L: orinoco-users@lists.sourceforge.net
4135L: orinoco-devel@lists.sourceforge.net
4136W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004138F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Boaz Harrosh68274792009-01-25 17:24:14 +02004140OSD LIBRARY
4141P: Boaz Harrosh
4142M: bharrosh@panasas.com
4143P: Benny Halevy
4144M: bhalevy@panasas.com
4145L: osd-dev@open-osd.org
4146W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004147T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004148S: Maintained
4149
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004150P54 WIRELESS DRIVER
4151P: Michael Wu
4152M: flamingice@sourmilk.net
4153L: linux-wireless@vger.kernel.org
4154W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004155T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004157F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004158
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004159PA SEMI ETHERNET DRIVER
4160P: Olof Johansson
4161M: olof@lixom.net
4162L: netdev@vger.kernel.org
4163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004164F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004165
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004166PA SEMI SMBUS DRIVER
4167P: Olof Johansson
4168M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004169L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004171F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004172
Harald Welte709ee532008-09-23 17:46:57 +02004173PANASONIC LAPTOP ACPI EXTRAS DRIVER
4174P: Harald Welte
4175M: laforge@gnumonks.org
4176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004178
David Howells4fa97182008-10-13 10:42:44 +01004179PANASONIC MN10300/AM33 PORT
4180P: David Howells
4181M: dhowells@redhat.com
4182P: Koichi Yasutake
4183M: yasutake.koichi@jp.panasonic.com
4184L: linux-am33-list@redhat.com (moderated for non-subscribers)
4185W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004187F: Documentation/mn10300/
4188F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004189
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004191L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004192S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/parport/
4194F: include/linux/parport*.h
4195F: drivers/char/ppdev.c
4196F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004198PARAVIRT_OPS INTERFACE
4199P: Jeremy Fitzhardinge
4200M: jeremy@xensource.com
4201P: Chris Wright
4202M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004203P: Alok Kataria
4204M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004205P: Rusty Russell
4206M: rusty@rustcorp.com.au
4207L: virtualization@lists.osdl.org
4208L: linux-kernel@vger.kernel.org
4209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004210F: Documentation/ia64/paravirt_ops.txt
4211F: arch/*/kernel/paravirt*
4212F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004213
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4215P: Tim Waugh
4216M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004217L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218W: http://www.torque.net/linux-pp.html
4219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004220F: Documentation/blockdev/paride.txt
4221F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
4223PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004224P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004225M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004226P: Helge Deller
4227M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004228L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004230T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004232F: arch/parisc/
4233F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Jim Cromie1662d322006-10-06 00:43:59 -07004235PC87360 HARDWARE MONITORING DRIVER
4236P: Jim Cromie
4237M: jim.cromie@gmail.com
4238L: lm-sensors@lm-sensors.org
4239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004240F: Documentation/hwmon/pc87360
4241F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004242
4243PC8736x GPIO DRIVER
4244P: Jim Cromie
4245M: jim.cromie@gmail.com
4246S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004247F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004248
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004249PCA9532 LED DRIVER
4250P: Riku Voipio
4251M: riku.voipio@iki.fi
4252S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004253F: drivers/leds/leds-pca9532.c
4254F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004255
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004256PCI ERROR RECOVERY
4257P: Linas Vepstas
4258M: linas@austin.ibm.com
4259L: linux-kernel@vger.kernel.org
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004260L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004261S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004262F: Documentation/PCI/pci-error-recovery.txt
4263F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004266P: Jesse Barnes
4267M: jbarnes@virtuousgeek.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268L: linux-kernel@vger.kernel.org
Jesse Barnes29054742008-05-03 08:35:49 -07004269L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004270T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004272F: Documentation/PCI/
4273F: drivers/pci/
4274F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004276PCIE HOTPLUG DRIVER
4277P: Kristen Carlson Accardi
4278M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004279L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004280S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004281F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004284P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004285L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004286W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004287T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004289F: Documentation/pcmcia/
4290F: drivers/pcmcia/
4291F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
4293PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004294P: Don Fry
4295M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004296L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004298F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004300PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004301P: Balbir Singh
4302M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004303L: linux-kernel@vger.kernel.org
4304S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004305F: include/linux/delayacct.h
4306F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004307
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004308PERSONALITY HANDLING
4309P: Christoph Hellwig
4310M: hch@infradead.org
4311L: linux-abi-devel@lists.sourceforge.net
4312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004313F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004314
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004316P: Joern Engel
4317M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318L: linux-mtd@lists.infradead.org
4319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004320F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
Peter Osterlund249a6772005-09-27 21:45:30 -07004322PKTCDVD DRIVER
4323P: Peter Osterlund
4324M: petero2@telia.com
4325L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07004326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004327F: drivers/block/pktcdvd.c
4328F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004331P: Thomas Gleixner
4332M: tglx@linutronix.de
Hormsf1c3ddf2006-01-15 02:18:28 +01004333L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004335F: fs/timerfd.c
4336F: include/linux/timer*
4337F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Anton Vorontsov3be86142007-07-15 04:43:36 +04004339POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4340P: Anton Vorontsov
4341M: cbou@mail.ru
4342P: David Woodhouse
4343M: dwmw2@infradead.org
4344L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004345T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004347F: include/linux/power_supply.h
4348F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004349
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350PNP SUPPORT
4351P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004352M: abelay@mit.edu
4353P: Bjorn Helgaas
4354M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004356F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
Vitaly Wool999445d2007-01-04 13:07:03 +01004358PNXxxxx I2C DRIVER
4359P: Vitaly Wool
4360M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004361L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004364
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365PPP PROTOCOL DRIVERS AND COMPRESSORS
4366P: Paul Mackerras
4367M: paulus@samba.org
4368L: linux-ppp@vger.kernel.org
4369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
4372PPP OVER ATM (RFC 2364)
4373P: Mitchell Blank Jr
4374M: mitch@sfgoth.com
4375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004376F: net/atm/pppoatm.c
4377F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
4379PPP OVER ETHERNET
4380P: Michal Ostrowski
Chris Wright5e70b7f32008-06-09 16:07:28 -07004381M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004383F: drivers/net/pppoe.c
4384F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
James Chapmana6d23702007-06-27 15:53:17 -07004386PPP OVER L2TP
4387P: James Chapman
4388M: jchapman@katalix.com
4389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: drivers/net/pppol2tp.c
4391F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393PREEMPTIBLE KERNEL
4394P: Robert Love
4395M: rml@tech9.net
4396L: linux-kernel@vger.kernel.org
4397L: kpreempt-tech@lists.sourceforge.net
4398W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4399S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004400F: Documentation/preempt-locking.txt
4401F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
4403PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004404P: Luis R. Rodriguez
4405M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004406L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407W: http://prism54.org
4408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
4411PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4412P: Peter Denison
4413M: promise@pnd-pc.demon.co.uk
4414W: http://www.pnd-pc.demon.co.uk/promise/
4415S: Maintained
4416
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004417PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4418P: Mikael Pettersson
4419M: mikpe@it.uu.se
4420L: linux-ide@vger.kernel.org
4421S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004422F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004423
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004424PS3 NETWORK SUPPORT
4425P: Masakazu Mokuno
4426M: mokuno@sm.sony.co.jp
4427L: netdev@vger.kernel.org
4428L: cbe-oss-dev@ozlabs.org
4429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004430F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004431
Geoff Levandf58a9d12006-11-23 00:46:51 +01004432PS3 PLATFORM SUPPORT
4433P: Geoff Levand
4434M: geoffrey.levand@am.sony.com
4435L: linuxppc-dev@ozlabs.org
4436L: cbe-oss-dev@ozlabs.org
4437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004438F: arch/powerpc/boot/ps3*
4439F: arch/powerpc/include/asm/lv1call.h
4440F: arch/powerpc/include/asm/ps3*.h
4441F: arch/powerpc/platforms/ps3/
4442F: drivers/*/ps3*
4443F: drivers/ps3/
4444F: drivers/usb/host/*ps3.c
Geoff Levandf58a9d12006-11-23 00:46:51 +01004445
Jim Pariscffb4add2009-01-06 11:32:10 +00004446PS3VRAM DRIVER
4447P: Jim Paris
4448M: jim@jtan.com
4449L: cbe-oss-dev@ozlabs.org
4450S: Maintained
4451
Michael Krufky83202042006-07-03 00:24:18 -07004452PVRUSB2 VIDEO4LINUX DRIVER
4453P: Mike Isely
4454M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004455L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004456L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004457W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004458T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004460F: Documentation/video4linux/README.pvrusb2
4461F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004462
Eric Miao30ec2612008-06-12 15:21:41 -07004463PXA2xx/PXA3xx SUPPORT
4464P: Eric Miao
4465M: eric.miao@marvell.com
4466P: Russell King
4467M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004468L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004470F: arch/arm/mach-pxa/
4471F: drivers/pcmcia/pxa2xx*
4472F: drivers/spi/pxa2xx*
4473F: drivers/usb/gadget/pxa2*
4474F: include/sound/pxa2xx-lib.h
4475F: sound/soc/pxa/pxa2xx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004477PXA168 SUPPORT
4478P: Eric Miao
4479M: eric.miao@marvell.com
4480P: Jason Chagas
4481M: jason.chagas@marvell.com
4482L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004483T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004484S: Supported
4485
Eric Miao5fa82eb2009-03-20 12:52:24 +08004486PXA910 SUPPORT
4487P: Eric Miao
4488M: eric.miao@marvell.com
4489L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004490T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao5fa82eb2009-03-20 12:52:24 +08004491S: Supported
4492
Pierre Ossman272f1332007-05-14 21:25:26 +02004493PXA MMCI DRIVER
4494S: Orphan
4495
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004496PXA RTC DRIVER
4497P: Robert Jarzmik
4498M: robert.jarzmik@free.fr
4499L: rtc-linux@googlegroups.com
4500S: Maintained
4501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502QLOGIC QLA2XXX FC-SCSI DRIVER
4503P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004504M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505L: linux-scsi@vger.kernel.org
4506S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004507F: Documentation/scsi/LICENSE.qla2xxx
4508F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509
Ron Mercer5a4faa872006-07-25 00:40:21 -07004510QLOGIC QLA3XXX NETWORK DRIVER
4511P: Ron Mercer
4512M: linux-driver@qlogic.com
4513L: netdev@vger.kernel.org
4514S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004515F: Documentation/networking/LICENSE.qla3xxx
4516F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004517
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004518QLOGIC QLGE 10Gb ETHERNET DRIVER
4519P: Ron Mercer
4520M: linux-driver@qlogic.com
4521M: ron.mercer@qlogic.com
4522L: netdev@vger.kernel.org
4523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004524F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004525
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526QNX4 FILESYSTEM
4527P: Anders Larsen
4528M: al@alarsen.net
4529L: linux-kernel@vger.kernel.org
4530W: http://www.alarsen.net/linux/qnx4fs/
4531S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004532F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004533F: include/linux/qnx4_fs.h
4534F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535
4536RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004537P: Benjamin Herrenschmidt
4538M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004539L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004541F: drivers/video/aty/radeon*
4542F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543
4544RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004545P: Paul Mackerras
4546M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004547L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004549F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Randy Dunlape7839f22008-10-12 16:11:45 -07004551RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004552P: rt2x00 project
4553L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004554L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004555W: http://rt2x00.serialmonkey.com/
4556S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004557T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004558F: drivers/net/wireless/rt2x00/
4559
Nick Piggin9db55792008-02-08 04:19:49 -08004560RAMDISK RAM BLOCK DEVICE DRIVER
4561P: Nick Piggin
4562M: npiggin@suse.de
4563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004564F: Documentation/blockdev/ramdisk.txt
4565F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004566
Matt Mackall9e95ce22005-04-16 15:25:56 -07004567RANDOM NUMBER DRIVER
4568P: Matt Mackall
4569M: mpm@selenic.com
4570S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004571F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004572
Matt Porter394b7012005-11-07 01:00:15 -08004573RAPIDIO SUBSYSTEM
4574P: Matt Porter
4575M: mporter@kernel.crashing.org
4576L: linux-kernel@vger.kernel.org
4577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004578F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004579
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004580RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4581P: Corey Thomas
4582M: coreythomas@charter.net
4583L: linux-wireless@vger.kernel.org
4584S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004585F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004586
4587RCUTORTURE MODULE
4588P: Josh Triplett
4589M: josh@freedesktop.org
4590L: linux-kernel@vger.kernel.org
4591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004592F: Documentation/RCU/torture.txt
4593F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004594
Florian Fainellic1f766b2008-02-06 22:39:44 +01004595RDC R-321X SoC
4596P: Florian Fainelli
4597M: florian.fainelli@telecomint.eu
4598L: linux-kernel@vger.kernel.org
4599S: Maintained
4600
Florian Fainellidb17f392007-12-19 11:30:30 +01004601RDC R6040 FAST ETHERNET DRIVER
4602P: Florian Fainelli
4603M: florian.fainelli@telecomint.eu
4604L: netdev@vger.kernel.org
4605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004606F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004607
Andy Grovera09ed662009-02-24 15:30:41 +00004608RDS - RELIABLE DATAGRAM SOCKETS
4609P: Andy Grover
4610M: andy.grover@oracle.com
4611L: rds-devel@oss.oracle.com
4612S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004613F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004614
Josh Triplett595182b2006-10-04 02:17:21 -07004615READ-COPY UPDATE (RCU)
4616P: Dipankar Sarma
4617M: dipankar@in.ibm.com
4618W: http://www.rdrop.com/users/paulmck/rclock/
4619L: linux-kernel@vger.kernel.org
4620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004621F: Documentation/RCU/rcu.txt
4622F: Documentation/RCU/rcuref.txt
4623F: include/linux/rcupdate.h
4624F: include/linux/srcu.h
4625F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004626
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627REAL TIME CLOCK DRIVER
4628P: Paul Gortmaker
4629M: p_gortmaker@yahoo.com
4630L: linux-kernel@vger.kernel.org
4631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004632F: Documentation/rtc.txt
4633F: drivers/rtc/
4634F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004636REAL TIME CLOCK (RTC) SUBSYSTEM
4637P: Alessandro Zummo
4638M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004639L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004641F: Documentation/rtc.txt
4642F: drivers/rtc/
4643F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004644
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004646L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004648F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Ivo van Doorne08976452008-04-12 19:23:55 +02004650RFKILL
4651P: Ivo van Doorn
4652M: IvDoorn@gmail.com
4653L: netdev@vger.kernel.org
4654S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004655F Documentation/rfkill.txt
4656F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004657
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004658RISCOM8 DRIVER
4659S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004660F: Documentation/serial/riscom8.txt
4661F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004662
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663ROCKETPORT DRIVER
4664P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665W: http://www.comtrol.com
4666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004667F: Documentation/serial/rocket.txt
4668F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
4670ROSE NETWORK LAYER
4671P: Ralf Baechle
4672M: ralf@linux-mips.org
4673L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004674W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004676F: include/linux/rose.h
4677F: include/net/rose.h
4678F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
Larry Finger59840482008-11-12 17:13:09 -06004680RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004681P: John W. Linville
4682M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004683L: linux-wireless@vger.kernel.org
4684W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004685T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004687F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004688
Larry Finger59840482008-11-12 17:13:09 -06004689RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004690P: Herton Ronaldo Krzesinski
4691M: herton@mandriva.com.br
4692P: Hin-Tak Leung
4693M: htl10@users.sourceforge.net
4694P: Larry Finger
4695M: Larry.Finger@lwfinger.net
4696L: linux-wireless@vger.kernel.org
4697W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004698T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004700F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004701
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004702S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004703P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004704M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004705L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004706S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004707F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004708
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709S390
4710P: Martin Schwidefsky
4711M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004712P: Heiko Carstens
4713M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004715L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004716W: http://www.ibm.com/developerworks/linux/linux390/
4717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004718F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004719
4720S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004721P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004722M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004723P: Frank Blaschka
4724M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004725M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004726L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004727W: http://www.ibm.com/developerworks/linux/linux390/
4728S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004729F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004730
Felix Beckfeed9b62009-03-26 15:24:23 +01004731S390 ZCRYPT DRIVER
4732P: Felix Beck
4733M: felix.beck@de.ibm.com
4734P: Ralph Wuerthner
4735M: ralph.wuerthner@de.ibm.com
4736M: linux390@de.ibm.com
4737L: linux-s390@vger.kernel.org
4738S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004739F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004740
Heiko Carstens5238da42006-02-11 17:56:01 -08004741S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004742P: Christof Schmitt
4743M: christof.schmitt@de.ibm.com
4744P: Martin Peschke
4745M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004746M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004747L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004748W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004750F: Documentation/s390/zfcpdump.txt
4751F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
Ursula Braundd96df22007-09-19 13:09:02 +02004753S390 IUCV NETWORK LAYER
4754P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004755M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004756M: linux390@de.ibm.com
4757L: linux-s390@vger.kernel.org
4758W: http://www.ibm.com/developerworks/linux/linux390/
4759S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004760F: drivers/s390/net/*iucv*
4761F: include/net/iucv/
4762F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004763
Ben Dooks4dde7f72008-06-30 22:40:38 +01004764S3C24XX SD/MMC Driver
4765P: Ben Dooks
4766M: ben-linux@fluff.org
4767L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4768L: linux-kernel@vger.kernel.org
4769S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004770F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004771
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772SAA7146 VIDEO4LINUX-2 DRIVER
4773P: Michael Hunold
4774M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004775L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004776T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777W: http://www.mihu.de/linux/saa7146
4778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004779F: drivers/media/common/saa7146*
4780F: drivers/media/video/*7146*
4781F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783SC1200 WDT DRIVER
4784P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004785M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004787F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
4789SCHEDULER
4790P: Ingo Molnar
4791M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02004792P: Peter Zijlstra
4793M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794L: linux-kernel@vger.kernel.org
4795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004796F: kernel/sched*
4797F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799SCSI CDROM DRIVER
4800P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02004801M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802L: linux-scsi@vger.kernel.org
4803W: http://www.kernel.dk
4804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806
4807SCSI SG DRIVER
4808P: Doug Gilbert
4809M: dgilbert@interlog.com
4810L: linux-scsi@vger.kernel.org
4811W: http://www.torque.net/sg
4812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004813F: drivers/scsi/sg.c
4814F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
4816SCSI SUBSYSTEM
4817P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05004818M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004820T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4821T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4822T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004824F: drivers/scsi/
4825F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
4827SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02004828P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829M: Kai.Makisara@kolumbus.fi
4830L: linux-scsi@vger.kernel.org
4831S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004832F: Documentation/scsi/st.txt
4833F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
4835SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004836P: Vlad Yasevich
4837M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01004838P: Sridhar Samudrala
4839M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07004840L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004841W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004843F: Documentation/networking/sctp.txt
4844F: include/linux/sctp.h
4845F: include/net/sctp/
4846F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
4848SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07004849P: Jim Cromie
4850M: jim.cromie@gmail.com
4851S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004852F: Documentation/i2c/busses/scx200_acb
4853F: arch/x86/kernel/scx200_32.c
4854F: drivers/watchdog/scx200_wdt.c
4855F: drivers/i2c/busses/scx200*
4856F: drivers/mtd/maps/scx200_docflash.c
4857F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004858
4859SCx200 GPIO DRIVER
4860P: Jim Cromie
4861M: jim.cromie@gmail.com
4862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004863F: drivers/char/scx200_gpio.c
4864F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004865
4866SCx200 HRT CLOCKSOURCE DRIVER
4867P: Jim Cromie
4868M: jim.cromie@gmail.com
4869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004870F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Sascha Sommer6a369132008-07-15 14:21:29 +02004872SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
4873P: Sascha Sommer
4874M: saschasommer@freenet.de
4875L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004877F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004878
Randy Dunlape7839f22008-10-12 16:11:45 -07004879SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004880P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02004881M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01004882L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004883S: Maintained
4884
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004885SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
4886P: Anton Vorontsov
4887M: avorontsov@ru.mvista.com
4888L: linuxppc-dev@ozlabs.org
4889L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004891F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892
James Morris8711cca2008-12-04 03:19:45 +11004893SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11004894P: James Morris
4895M: jmorris@namei.org
4896L: linux-kernel@vger.kernel.org
4897L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07004898T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004899W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004900S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004901F: security/
James Morris8711cca2008-12-04 03:19:45 +11004902
Linus Torvalds1da177e2005-04-16 15:20:36 -07004903SECURITY CONTACT
4904P: Security Officers
4905M: security@kernel.org
4906S: Supported
4907
4908SELINUX SECURITY MODULE
4909P: Stephen Smalley
4910M: sds@tycho.nsa.gov
4911P: James Morris
4912M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05004913P: Eric Paris
4914M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915L: linux-kernel@vger.kernel.org (kernel issues)
Joe Perches7d2c86b2009-04-07 20:59:01 -07004916L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004917W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004918T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004920F: include/linux/selinux*
4921F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
Jiri Slabycef2cf02007-05-08 00:31:45 -07004923SENSABLE PHANTOM
4924P: Jiri Slaby
4925M: jirislaby@gmail.com
4926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004927F: drivers/misc/phantom.c
4928F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004929
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004930SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931P: Jeff Garzik
4932M: jgarzik@pobox.com
4933L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004934T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004936F: drivers/ata/
4937F: include/linux/ata.h
4938F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004940SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
4941P: Sathya Perla
4942M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07004943P: Subbu Seetharaman
4944M: subbus@serverengines.com
4945L: netdev@vger.kernel.org
4946W: http://www.serverengines.com
4947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004948F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004949
Ben Hutchings8ceee662008-04-27 12:55:59 +01004950SFC NETWORK DRIVER
4951P: Steve Hodgson
4952P: Ben Hutchings
4953P: Robert Stonehouse
4954M: linux-net-drivers@solarflare.com
4955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004957
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004958SGI GRU DRIVER
4959P: Jack Steiner
4960M: steiner@sgi.com
4961S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004962F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004963
4964SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
4965P: Pat Gefre
4966M: pfg@sgi.com
4967L: linux-ia64@vger.kernel.org
4968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004969F: Documentation/ia64/serial.txt
4970F: drivers/serial/ioc?_serial.c
4971F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973SGI VISUAL WORKSTATION 320 AND 540
4974P: Andrey Panin
4975M: pazke@donpac.ru
4976L: linux-visws-devel@lists.sf.net
4977W: http://linux-visws.sf.net
4978S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004979F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Jack Steiner75312612008-08-15 00:40:42 -07004981SGI XP/XPC/XPNET DRIVER
Robin Holta06bba42009-04-13 14:40:17 -07004982P: Robin Holt
4983M: holt@sgi.com
Jack Steiner75312612008-08-15 00:40:42 -07004984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004985F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004986
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004987SHARP LH SUPPORT (LH7952X & LH7A40X)
4988P: Marc Singer
4989M: elf@buici.com
4990W: http://projects.buici.com/arm
4991L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004993F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4994F: arch/arm/mach-lh7a40x/
4995F: drivers/serial/serial_lh7a40x.c
4996F: drivers/usb/gadget/lh7a40*
4997F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004998
4999SHPC HOTPLUG DRIVER
5000P: Kristen Carlson Accardi
5001M: kristen.c.accardi@intel.com
5002L: linux-pci@vger.kernel.org
5003S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005004F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005005
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006SIMTEC EB110ATX (Chalice CATS)
5007P: Ben Dooks
5008P: Vincent Sanders
5009M: support@simtec.co.uk
5010W: http://www.simtec.co.uk/products/EB110ATX/
5011S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005012F: arch/arm/mach-ebsa110/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
5014SIMTEC EB2410ITX (BAST)
5015P: Ben Dooks
5016P: Vincent Sanders
5017M: support@simtec.co.uk
5018W: http://www.simtec.co.uk/products/EB2410ITX/
5019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005020F: arch/arm/mach-s3c2410/
5021F: drivers/*/*s3c2410*
5022F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Francois Romieu92aab3c2005-07-30 13:11:18 +02005024SIS 190 ETHERNET DRIVER
5025P: Francois Romieu
5026M: romieu@fr.zoreil.com
5027L: netdev@vger.kernel.org
5028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005029F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031SIS 900/7016 FAST ETHERNET DRIVER
5032P: Daniele Venzano
5033M: venza@brownhat.org
5034W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005035L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005037F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005039SIS 96X I2C/SMBUS DRIVER
5040P: Mark M. Hoffman
5041M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005042L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005043S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005044F: Documentation/i2c/busses/i2c-sis96x
5045F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005046
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047SIS FRAMEBUFFER DRIVER
5048P: Thomas Winischhofer
5049M: thomas@winischhofer.net
5050W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005052F: Documentation/fb/sisfb.txt
5053F: drivers/video/sis/
5054F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055
5056SIS USB2VGA DRIVER
5057P: Thomas Winischhofer
5058M: thomas@winischhofer.net
5059W: http://www.winischhofer.at/linuxsisusbvga.shtml
5060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005061F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005063SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5064P: Stephen Hemminger
5065M: shemminger@linux-foundation.org
5066L: netdev@vger.kernel.org
5067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: drivers/net/skge.*
5069F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005070
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005071SLAB ALLOCATOR
5072P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005073M: cl@linux-foundation.org
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005074P: Pekka Enberg
5075M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005076P: Matt Mackall
5077M: mpm@selenic.com
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005078L: linux-mm@kvack.org
5079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005080F: include/linux/sl?b*.h
5081F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005082
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083SMC91x ETHERNET DRIVER
5084P: Nicolas Pitre
5085M: nico@cam.org
5086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005087F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005089SMSC47B397 HARDWARE MONITOR DRIVER
5090P: Mark M. Hoffman
5091M: mhoffman@lightlink.com
5092L: lm-sensors@lm-sensors.org
5093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005094F: Documentation/hwmon/smsc47b397
5095F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005096
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005097SMSC911x ETHERNET DRIVER
5098P: Steve Glendinning
5099M: steve.glendinning@smsc.com
5100L: netdev@vger.kernel.org
5101S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005102F: include/linux/smsc911x.h
5103F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005104
Steve Glendinning2cb37722008-12-11 20:54:30 -08005105SMSC9420 PCI ETHERNET DRIVER
5106P: Steve Glendinning
5107M: steve.glendinning@smsc.com
5108L: netdev@vger.kernel.org
5109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005110F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005111
Ben Nizetteb54f2862008-03-13 22:27:30 +11005112SMX UIO Interface
5113P: Ben Nizette
5114M: bn@niasdigital.com
5115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005116F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005117
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005118SN-IA64 (Itanium) SUB-PLATFORM
5119P: Jes Sorensen
5120M: jes@sgi.com
5121L: linux-altix@sgi.com
5122L: linux-ia64@vger.kernel.org
5123W: http://www.sgi.com/altix
5124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005125F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005126
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005127SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005128P: Guennadi Liakhovetski
5129M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005130L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005131T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005133F: include/media/v4l2*
5134F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005135
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005136SOEKRIS NET48XX LED SUPPORT
5137P: Chris Boot
5138M: bootc@bootc.net
5139S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005140F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005141
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005144M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005146S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005147F: drivers/md/
5148F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150SONIC NETWORK DRIVER
5151P: Thomas Bogendoerfer
5152M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005153L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005155F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
Michael Buesch61e115a2007-09-18 15:12:50 -04005157SONICS SILICON BACKPLANE DRIVER (SSB)
5158P: Michael Buesch
5159M: mb@bu3sch.de
5160L: netdev@vger.kernel.org
5161S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005162F: drivers/ssb/
5163F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005164
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005166P: Mattia Dongili
5167M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005168L: linux-acpi@vger.kernel.org
5169W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005171F: Documentation/laptops/sony-laptop.txt
5172F: drivers/char/sonypi.c
5173F: drivers/platform/x86/sony-laptop.c
5174F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175
Alex Dubovbaf85322008-02-09 10:20:54 -08005176SONY MEMORYSTICK CARD SUPPORT
5177P: Alex Dubov
5178M: oakad@yahoo.com
5179L: linux-kernel@vger.kernel.org
5180W: http://tifmxx.berlios.de/
5181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005182F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005183
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184SOUND
5185P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005186M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005187P: Takashi Iwai
5188M: tiwai@suse.de
Takashi Iwai82622042007-04-16 12:32:52 +02005189L: alsa-devel@alsa-project.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005191F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
Mark Brownbd903bd2008-11-19 19:16:05 +00005193SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005194P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005195M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005196P: Mark Brown
5197M: broonie@opensource.wolfsonmicro.com
Joe Perches54e58812009-04-07 21:08:10 -07005198T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Takashi Iwai82622042007-04-16 12:32:52 +02005199L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005200W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005201S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005202F: sound/soc/
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005203
Sam Ravnborg473321f2009-01-04 15:47:49 -08005204SPARC + UltraSPARC (sparc/sparc64)
5205P: David S. Miller
5206M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005208T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5209T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005211F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212
5213SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5214P: Roger Wolff
5215M: R.E.Wolff@BitWizard.nl
Joe Perches7d2c86b2009-04-07 20:59:01 -07005216L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005218F: Documentation/serial/specialix.txt
5219F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005221SPI SUBSYSTEM
5222P: David Brownell
5223M: dbrownell@users.sourceforge.net
5224L: spi-devel-general@lists.sourceforge.net
5225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005226F: Documentation/spi/
5227F: drivers/spi/
5228F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005229
Jim Lewis2752e402006-09-29 02:01:19 -07005230SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005231P: Ishizaki Kou
5232M: kou.ishizaki@toshiba.co.jp
5233P: Jens Osterkamp
5234M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005235L: netdev@vger.kernel.org
5236S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005237F: Documentation/networking/spider_net.txt
5238F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005239
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005240SPU FILE SYSTEM
5241P: Jeremy Kerr
5242M: jk@ozlabs.org
5243L: linuxppc-dev@ozlabs.org
5244L: cbe-oss-dev@ozlabs.org
5245W: http://www.ibm.com/developerworks/power/cell/
5246S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005247F: Documentation/filesystems/spufs.txt
5248F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005249
Phillip Lougherfc555842009-01-05 08:46:29 +00005250SQUASHFS FILE SYSTEM
5251P: Phillip Lougher
5252M: phillip@lougher.demon.co.uk
5253L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5254W: http://squashfs.org.uk
5255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005256F: Documentation/filesystems/squashfs.txt
5257F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005258
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259SRM (Alpha) environment access
5260P: Jan-Benedict Glaw
5261M: jbglaw@lug-owl.de
5262L: linux-kernel@vger.kernel.org
5263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005264F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265
Linus Torvalds26e9a392008-10-17 09:50:12 -07005266STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005267P: Greg Kroah-Hartman
5268M: greg@kroah.com
5269P: Chris Wright
5270M: chrisw@sous-sol.org
5271L: stable@kernel.org
5272S: Maintained
5273
Linus Torvalds26e9a392008-10-17 09:50:12 -07005274STAGING SUBSYSTEM
5275P: Greg Kroah-Hartman
5276M: gregkh@suse.de
5277L: linux-kernel@vger.kernel.org
5278T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005281
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282STARFIRE/DURALAN NETWORK DRIVER
5283P: Ion Badulescu
5284M: ionut@cs.columbia.edu
5285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005286F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
5288STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5289W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005290S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005291F: drivers/net/wireless/strip.c
5292F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
5294STRADIS MPEG-2 DECODER DRIVER
5295P: Nathan Laredo
5296M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297W: http://www.stradis.com/
5298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005299F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005301SUN3/3X
5302P: Sam Creasey
5303M: sammy@sammy.net
5304W: http://sammy.net/sun3/
5305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005306F: arch/m68k/kernel/*sun3*
5307F: arch/m68k/sun3*/
5308F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005309
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005310SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311P: Paul Mundt
5312M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005313L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005315T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005316S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005317F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005318F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005319F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005321SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005322P: Len Brown
5323M: len.brown@intel.com
5324P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005325M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005326P: Rafael J. Wysocki
5327M: rjw@sisk.pl
5328L: linux-pm@lists.linux-foundation.org
5329S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005330F: Documentation/power/
5331F: arch/x86/kernel/acpi/
5332F: drivers/base/power/
5333F: kernel/power/
5334F: include/linux/suspend.h
5335F: include/linux/freezer.h
5336F: include/linux/pm.h
5337F: include/asm-*/suspend.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338
5339SVGA HANDLING
5340P: Martin Mares
5341M: mj@ucw.cz
5342L: linux-video@atrey.karlin.mff.cuni.cz
5343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005344F: Documentation/svga.txt
5345F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346
5347SYSV FILESYSTEM
5348P: Christoph Hellwig
5349M: hch@infradead.org
5350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005351F: Documentation/filesystems/sysv-fs.txt
5352F: fs/sysv/
5353F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354
Alan Cox4e688522008-04-30 00:52:11 -07005355TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005356P: Balbir Singh
5357M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005358L: linux-kernel@vger.kernel.org
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: Documentation/accounting/taskstats*
5361F: include/linux/taskstats*
5362F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005363
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005364TC CLASSIFIER
5365P: Jamal Hadi Salim
5366M: hadi@cyberus.ca
5367L: netdev@vger.kernel.org
5368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005369F: include/linux/pkt_cls.h
5370F: include/net/pkt_cls.h
5371F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005372
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005373TCP LOW PRIORITY MODULE
5374P: Wong Hoi Sing, Edison
5375M: hswong3i@gmail.com
5376P: Hung Hing Lun, Mike
5377M: hlhung3i@gmail.com
5378W: http://tcp-lp-mod.sourceforge.net/
5379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005380F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005381
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005382TEHUTI ETHERNET DRIVER
5383P: Alexander Indenbaum
5384M: baum@tehutinetworks.net
5385P: Andy Gospodarek
5386M: andy@greyhouse.net
5387L: netdev@vger.kernel.org
5388S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005389F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005390
Alan Cox4e688522008-04-30 00:52:11 -07005391Telecom Clock Driver for MCPL0010
5392P: Mark Gross
5393M: mark.gross@intel.com
5394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005395F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005396
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005397TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005398P: Chris Zankel
5399M: chris@zankel.net
5400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005401F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005402
5403THINKPAD ACPI EXTRAS DRIVER
5404P: Henrique de Moraes Holschuh
5405M: ibm-acpi@hmh.eng.br
5406L: ibm-acpi-devel@lists.sourceforge.net
5407W: http://ibm-acpi.sourceforge.net
5408W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005409T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005412
Alex Dubov4020f2d2006-10-04 02:15:37 -07005413TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005414P: Alex Dubov
5415M: oakad@yahoo.com
5416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005417F: drivers/misc/tifm*
5418F: drivers/mmc/host/tifm_sd.c
5419F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005420
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005421TI OMAP MMC INTERFACE DRIVER
5422P: Carlos Aguiar, Anderson Briglia and Syed Khasim
Dirk Behmeb6a7e4c2007-12-15 07:47:46 +01005423M: linux-omap@vger.kernel.org
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005424W: http://linux.omap.com
5425W: http://www.muru.com/linux/omap/
5426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: drivers/mmc/host/omap.c
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005428
Michael Buesch844dd052006-06-26 00:24:59 -07005429TI OMAP RANDOM NUMBER GENERATOR SUPPORT
5430P: Deepak Saxena
5431M: dsaxena@plexity.net
5432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005433F: drivers/char/hw_random/omap-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005434
Per Lidene86eaa32006-01-12 16:45:18 +01005435TIPC NETWORK LAYER
5436P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005437M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005438P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005439M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005440P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005441M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005442L: tipc-discussion@lists.sourceforge.net
5443W: http://tipc.sourceforge.net/
5444W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005445T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005447F: include/linux/tipc*.h
5448F: include/net/tipc/
5449F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005450
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451TLAN NETWORK DRIVER
5452P: Samuel Chessman
5453M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005454L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455W: http://sourceforge.net/projects/tlan/
5456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005457F: Documentation/networking/tlan.txt
5458F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005460TOMOYO SECURITY MODULE
5461P: Kentaro Takeda
5462M: takedakn@nttdata.co.jp
5463P: Tetsuo Handa
5464M: penguin-kernel@I-love.SAKURA.ne.jp
5465L: linux-kernel@vger.kernel.org (kernel issues)
5466L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5467L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5468L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5469W: http://tomoyo.sourceforge.jp/
5470T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5471S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005472F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005475S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005476F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477
5478TOSHIBA SMM DRIVER
5479P: Jonathan Buzzard
5480M: jonathan@buzzard.org.uk
5481L: tlinux-users@tce.toshiba-dme.co.jp
5482W: http://www.buzzard.org.uk/toshiba/
5483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005484F: drivers/char/toshiba.c
5485F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
Pierre Ossmand719f902009-03-24 21:06:09 +01005487TMIO MMC DRIVER
5488P: Ian Molton
5489M: ian@mnementh.co.uk
5490S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005491F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005492
Alan Cox4e688522008-04-30 00:52:11 -07005493TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005494P: Debora Velarde
5495M: debora@linux.vnet.ibm.com
5496P: Rajiv Andrade
5497M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005498W: http://tpmdd.sourceforge.net
5499P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005500M: m.selhorst@sirrix.com
5501W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005502L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005504F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005505
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005507P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005508M: trivial@kernel.org
5509L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005510T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511S: Maintained
5512
Alan Cox4e688522008-04-30 00:52:11 -07005513TTY LAYER
5514P: Alan Cox
5515M: alan@lxorguk.ukuu.org.uk
5516L: linux-kernel@vger.kernel.org
5517S: Maintained
5518
Grant Grundler740db6d2008-02-17 11:53:49 -07005519TULIP NETWORK DRIVERS
5520P: Grant Grundler
5521M: grundler@parisc-linux.org
5522P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005523M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005524L: netdev@vger.kernel.org
5525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005526F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
5528TUN/TAP driver
5529P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005530M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531L: vtun@office.satix.net
5532W: http://vtun.sourceforge.net/tun
5533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005534F: Documentation/networking/tuntap.txt
5535F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005537TURBOCHANNEL SUBSYSTEM
5538P: Maciej W. Rozycki
5539M: macro@linux-mips.org
5540S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005541F: drivers/tc/
5542F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005543
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544U14-34F SCSI DRIVER
5545P: Dario Ballabio
5546M: ballabio_dario@emc.com
5547L: linux-scsi@vger.kernel.org
5548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005549F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005551UBI FILE SYSTEM (UBIFS)
5552P: Artem Bityutskiy
5553M: dedekind@infradead.org
5554P: Adrian Hunter
5555M: ext-adrian.hunter@nokia.com
5556L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005557T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005558W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5559S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005560F: Documentation/filesystems/ubifs.txt
5561F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005562
Alan Coxcc2020e2008-05-19 14:21:51 +01005563UCLINUX (AND M68KNOMMU)
5564P: Greg Ungerer
5565M: gerg@uclinux.org
5566W: http://www.uclinux.org/
5567L: uclinux-dev@uclinux.org (subscribers-only)
5568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005570
Alan Coxcc2020e2008-05-19 14:21:51 +01005571UCLINUX FOR RENESAS H8/300
5572P: Yoshinori Sato
5573M: ysato@users.sourceforge.jp
5574W: http://uclinux-h8.sourceforge.jp/
5575S: Supported
5576
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005578P: Jan Kara
5579M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580W: http://linux-udf.sourceforge.net
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: Documentation/filesystems/udf.txt
5583F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
Alan Coxcc2020e2008-05-19 14:21:51 +01005585UFS FILESYSTEM
5586P: Evgeniy Dushistov
5587M: dushistov@mail.ru
5588L: linux-kernel@vger.kernel.org
5589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: Documentation/filesystems/ufs.txt
5591F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005592
David Vrabel18332a82008-09-17 16:34:44 +01005593ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5594P: David Vrabel
5595M: david.vrabel@csr.com
5596L: linux-usb@vger.kernel.org
5597S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005598F: drivers/uwb/*
5599F: include/linux/uwb.h
5600F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005601
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602UNIFORM CDROM DRIVER
5603P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005604M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605L: linux-kernel@vger.kernel.org
5606W: http://www.kernel.dk
5607S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005608F: Documentation/cdrom/
5609F: drivers/cdrom/cdrom.c
5610F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005612UNSORTED BLOCK IMAGES (UBI)
5613P: Artem Bityutskiy
5614M: dedekind@infradead.org
5615W: http://www.linux-mtd.infradead.org/
5616L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005617T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005618S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005619F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005620F: include/linux/mtd/ubi.h
5621F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005622
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623USB ACM DRIVER
5624P: Oliver Neukum
5625M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005626L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005628F: Documentation/usb/acm.txt
5629F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630
5631USB BLOCK DRIVER (UB ub)
5632P: Pete Zaitcev
5633M: zaitcev@redhat.com
5634L: linux-kernel@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005635L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005637F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639USB CDC ETHERNET DRIVER
5640P: Greg Kroah-Hartman
5641M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005642L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643S: Maintained
5644W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005645F: drivers/net/usb/cdc_*.c
5646F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005648USB CYPRESS C67X00 DRIVER
5649P: Peter Korsgaard
5650M: jacmet@sunsite.dk
5651L: linux-usb@vger.kernel.org
5652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005653F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005654
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005655USB DAVICOM DM9601 DRIVER
5656P: Peter Korsgaard
5657M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005658L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005659W: http://www.linux-usb.org/usbnet
5660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005661F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005662
Alan Coxcc2020e2008-05-19 14:21:51 +01005663USB DIAMOND RIO500 DRIVER
5664P: Cesar Miquel
5665M: miquel@df.uba.ar
5666L: rio500-users@lists.sourceforge.net
5667W: http://rio500.sourceforge.net
5668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005669F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005670
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671USB EHCI DRIVER
5672P: David Brownell
5673M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005674L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005675S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005676F: Documentation/usb/ehci.txt
5677F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678
Luca Risolia7ce08c92006-01-11 02:06:59 +00005679USB ET61X[12]51 DRIVER
5680P: Luca Risolia
5681M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005682L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005683L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005684T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005685W: http://www.linux-projects.org
5686S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005687F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005688
David Brownell69ae9e32006-11-14 02:03:31 -08005689USB GADGET/PERIPHERAL SUBSYSTEM
5690P: David Brownell
5691M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005692L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005693W: http://www.linux-usb.org/gadget
5694S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005695F: drivers/usb/gadget/
5696F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005697
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005698USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266fd2007-01-15 09:56:21 +01005699P: Jiri Kosina
5700M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005701L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005702T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: Documentation/usb/hiddev.txt
5705F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706
Olav Kongas959eea22005-11-03 17:38:14 +02005707USB ISP116X DRIVER
5708P: Olav Kongas
5709M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005710L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005712F: drivers/usb/host/isp116x*
5713F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005714
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715USB KAWASAKI LSI DRIVER
5716P: Oliver Neukum
5717M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005718L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005720F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721
5722USB MASS STORAGE DRIVER
5723P: Matthew Dharm
5724M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005725L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005726L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727S: Maintained
5728W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005729F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
5731USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005732P: David Brownell
5733M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005734L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005735S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005736F: Documentation/usb/ohci.txt
5737F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Matthias Urlichsba460e42005-07-14 00:33:47 -07005739USB OPTION-CARD DRIVER
5740P: Matthias Urlichs
5741M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005742L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005744F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005745
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746USB OV511 DRIVER
5747P: Mark McClelland
5748M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005749L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750W: http://alpha.dyndns.org/ov511/
5751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005752F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
5754USB PEGASUS DRIVER
5755P: Petko Manolov
5756M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005757L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005758L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759W: http://pegasus2.sourceforge.net/
5760S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005761F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005763USB PRINTER DRIVER (usblp)
5764P: Pete Zaitcev
5765M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005766L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005767S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769
5770USB RTL8150 DRIVER
5771P: Petko Manolov
5772M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005773L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005774L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775W: http://pegasus2.sourceforge.net/
5776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005777F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005778
5779USB SE401 DRIVER
5780P: Jeroen Vreeken
5781M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005782L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783W: http://www.chello.nl/~j.vreeken/se401/
5784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005785F: Documentation/video4linux/se401.txt
5786F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787
Alan Cox4e688522008-04-30 00:52:11 -07005788USB SERIAL BELKIN F5U103 DRIVER
5789P: William Greathouse
5790M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005791L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005792S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005793F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005794
5795USB SERIAL CYPRESS M8 DRIVER
5796P: Lonnie Mendez
5797M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005798L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005799S: Maintained
5800W: http://geocities.com/i0xox0i
5801W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005802F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005803
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804USB SERIAL CYBERJACK DRIVER
5805P: Matthias Bruestle and Harald Welte
5806M: support@reiner-sct.com
5807W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005809F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
5811USB SERIAL DIGI ACCELEPORT DRIVER
5812P: Peter Berger and Al Borchers
5813M: pberger@brimson.com
5814M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005815L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005817F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818
5819USB SERIAL DRIVER
5820P: Greg Kroah-Hartman
5821M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005822L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005824F: Documentation/usb/usb-serial.txt
5825F: drivers/usb/serial/generic.c
5826F: drivers/usb/serial/usb-serial.c
5827F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828
Linus Torvalds1da177e2005-04-16 15:20:36 -07005829USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
5830P: Gary Brubaker
5831M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005832L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005834F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835
5836USB SERIAL KEYSPAN DRIVER
5837P: Greg Kroah-Hartman
5838M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005839L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840W: http://www.kroah.com/linux/
5841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005842F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843
5844USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04005845P: Support Department
5846M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005847L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848W: http://www.connecttech.com
5849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005850F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005851
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005852USB SMSC95XX ETHERNET DRIVER
5853P: Steve Glendinning
5854M: steve.glendinning@smsc.com
5855L: netdev@vger.kernel.org
5856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005857F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005858
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005859USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860P: Luca Risolia
5861M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005862L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005863L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005864T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865W: http://www.linux-projects.org
5866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: Documentation/video4linux/sn9c102.txt
5868F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
5870USB SUBSYSTEM
5871P: Greg Kroah-Hartman
5872M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005873L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005875T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005877F: Documentation/usb/
5878F: drivers/net/usb/
5879F: drivers/usb/
5880F: include/linux/usb.h
5881F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
5883USB UHCI DRIVER
5884P: Alan Stern
5885M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02005886L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005888F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889
David Brownell69ae9e32006-11-14 02:03:31 -08005890USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891P: David Brownell
5892M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02005893L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005894W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005896F: drivers/net/usb/usbnet.c
5897F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005899USB VIDEO CLASS
5900P: Laurent Pinchart
5901M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03005902L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005903L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005904T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005905W: http://linux-uvc.berlios.de
5906S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005907F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005908
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909USB W996[87]CF DRIVER
5910P: Luca Risolia
5911M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005912L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005913L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005914T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005915W: http://www.linux-projects.org
5916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005917F: Documentation/video4linux/w9968cf.txt
5918F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005920USB WIRELESS RNDIS DRIVER (rndis_wlan)
5921P: Jussi Kivilinna
5922M: jussi.kivilinna@mbnet.fi
5923L: linux-wireless@vger.kernel.org
5924S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005925F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005926
Luca Risolia60f78052006-02-06 16:29:35 +00005927USB ZC0301 DRIVER
5928P: Luca Risolia
5929M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005930L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005931L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005932T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005933W: http://www.linux-projects.org
5934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005935F: Documentation/video4linux/zc0301.txt
5936F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005937
Linus Torvalds1da177e2005-04-16 15:20:36 -07005938USB ZD1201 DRIVER
5939P: Jeroen Vreeken
5940M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005941L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942W: http://linux-lc100020.sourceforge.net
5943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005944F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005946USB ZR364XX DRIVER
5947P: Antoine Jacquet
5948M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005949L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005950L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005951T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005952W: http://royale.zerezo.com/zr364xx/
5953S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005954F: Documentation/video4linux/zr364xx.txt
5955F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005956
Randy Dunlape7839f22008-10-12 16:11:45 -07005957USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08005959M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005960L: user-mode-linux-devel@lists.sourceforge.net
5961L: user-mode-linux-user@lists.sourceforge.net
5962W: http://user-mode-linux.sourceforge.net
5963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: Documentation/uml/
5965F: arch/um/
5966F: fs/hostfs/
5967F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005968
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005969USERSPACE I/O (UIO)
5970P: Hans J. Koch
5971M: hjk@linutronix.de
5972P: Greg Kroah-Hartman
5973M: gregkh@suse.de
5974L: linux-kernel@vger.kernel.org
5975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005976F: Documentation/DocBook/uio-howto.tmpl
5977F: drivers/uio/
5978F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005979
Karel Zakf899b0a2008-05-23 13:04:21 -07005980UTIL-LINUX-NG PACKAGE
5981P: Karel Zak
5982M: kzak@redhat.com
5983L: util-linux-ng@vger.kernel.org
5984W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005985T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005986S: Maintained
5987
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005988UVESAFB DRIVER
5989P: Michal Januszewski
5990M: spock@gentoo.org
5991L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5992W: http://dev.gentoo.org/~spock/projects/uvesafb/
5993S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005994F: Documentation/fb/uvesafb.txt
5995F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005996
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005997VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998P: OGAWA Hirofumi
5999M: hirofumi@mail.parknet.co.jp
6000L: linux-kernel@vger.kernel.org
6001S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006002F: Documentation/filesystems/vfat.txt
6003F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005VIA RHINE NETWORK DRIVER
6006P: Roger Luethi
6007M: rl@hellgate.ch
6008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006009F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010
Jean Delvare32c0a522005-09-22 21:47:58 +02006011VIAPRO SMBUS DRIVER
6012P: Jean Delvare
6013M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01006014L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006016F: Documentation/i2c/busses/i2c-viapro
6017F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006018
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006019VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
6020P: Joseph Chan
6021M: JosephChan@via.com.tw
6022P: Scott Fang
6023M: ScottFang@viatech.com.cn
6024L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006026F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006027
Francois Romieu01f20732007-01-26 00:57:17 -08006028VIA VELOCITY NETWORK DRIVER
6029P: Francois Romieu
6030M: romieu@fr.zoreil.com
6031L: netdev@vger.kernel.org
6032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006033F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Patrick McHardybe7f8272007-10-23 20:26:36 -07006035VLAN (802.1Q)
6036P: Patrick McHardy
6037M: kaber@trash.net
6038L: netdev@vger.kernel.org
6039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: drivers/net/macvlan.c
6041F: include/linux/if_*vlan.h
6042F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006043
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006044VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6045P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006046M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006047P: Mark Brown
6048M: broonie@opensource.wolfsonmicro.com
6049W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006050W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006051T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006053F: drivers/regulator/
6054F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006055
Juerg Haefligerab413192006-09-24 20:54:04 +02006056VT1211 HARDWARE MONITOR DRIVER
6057P: Juerg Haefliger
6058M: juergh@gmail.com
6059L: lm-sensors@lm-sensors.org
6060S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006061F: Documentation/hwmon/vt1211
6062F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006063
Roger Lucas1de9e372005-11-26 20:20:05 +01006064VT8231 HARDWARE MONITOR DRIVER
6065P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006066M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006067L: lm-sensors@lm-sensors.org
6068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006069F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006070
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071W1 DALLAS'S 1-WIRE BUS
6072P: Evgeniy Polyakov
6073M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006075F: Documentation/w1/
6076F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
Charles Spirakis13927072006-07-05 18:05:15 +02006078W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006079P: Marc Hulsman
6080M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006081L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006083F: Documentation/hwmon/w83791d
6084F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006085
Rudolf Marek61db0112006-12-12 18:18:30 +01006086W83793 HARDWARE MONITORING DRIVER
6087P: Rudolf Marek
6088M: r.marek@assembler.cz
6089L: lm-sensors@lm-sensors.org
6090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006091F: Documentation/hwmon/w83793
6092F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006093
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094W83L51xD SD/MMC CARD INTERFACE DRIVER
6095P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006096M: pierre@ossman.eu
Pierre Ossmanfac88992007-01-27 13:18:26 +01006097L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006099F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006101WATCHDOG DEVICE DRIVERS
6102P: Wim Van Sebroeck
6103M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006104T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006106F: Documentation/watchdog/
6107F: drivers/watchdog/
6108F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006109
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6111P: Jean Tourrilhes
6112M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006113L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/networking/wavelan.txt
6117F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118
6119WD7000 SCSI DRIVER
6120P: Miroslav Zagorac
6121M: zaga@fly.cc.fer.hr
6122L: linux-scsi@vger.kernel.org
6123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006124F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006126WIMAX STACK
6127P: Inaky Perez-Gonzalez
6128M: inaky.perez-gonzalez@intel.com
6129M: linux-wimax@intel.com
6130L: wimax@linuxwimax.org
6131S: Supported
6132W: http://linuxwimax.org
6133
David Vrabel18332a82008-09-17 16:34:44 +01006134WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6135P: David Vrabel
6136M: david.vrabel@csr.com
6137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: include/linux/wlp.h
6139F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006140
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006141WISTRON LAPTOP BUTTON DRIVER
6142P: Miloslav Trmac
6143M: mitr@volny.cz
6144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006145F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006146
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147WL3501 WIRELESS PCMCIA CARD DRIVER
6148P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006149M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006150L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006151W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006153F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Mark Brownfebf1df2008-04-02 00:51:09 -04006155WM97XX TOUCHSCREEN DRIVERS
6156P: Mark Brown
6157M: broonie@opensource.wolfsonmicro.com
6158P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006159M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006160L: linux-input@vger.kernel.org
6161T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6162W: http://opensource.wolfsonmicro.com/node/7
6163S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006164F: drivers/input/touchscreen/*wm97*
6165F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006166
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167X.25 NETWORK LAYER
6168P: Henner Eisen
6169M: eis@baty.hanse.de
6170L: linux-x25@vger.kernel.org
6171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006172F: Documentation/networking/x25*
6173F: include/net/x25*
6174F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006176X86 ARCHITECTURE (32-BIT AND 64-BIT)
6177P: Thomas Gleixner
6178M: tglx@linutronix.de
6179P: Ingo Molnar
6180M: mingo@redhat.com
6181P: H. Peter Anvin
6182M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006183M: x86@kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006184L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006185T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006187F: Documentation/x86/
6188F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006189
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006190XEN HYPERVISOR INTERFACE
6191P: Jeremy Fitzhardinge
6192M: jeremy@xensource.com
6193P: Chris Wright
6194M: chrisw@sous-sol.org
6195L: virtualization@lists.osdl.org
6196L: xen-devel@lists.xensource.com
6197S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006198F: arch/x86/xen/
6199F: drivers/*/xen-*front.c
6200F: drivers/xen/
6201F: arch/x86/include/asm/xen/
6202F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006203
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204XFS FILESYSTEM
6205P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006206P: Felix Blyakher
6207M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006209L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006211T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006213F: Documentation/filesystems/xfs.txt
6214F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006216XILINX SYSTEMACE DRIVER
6217P: Grant Likely
6218M: grant.likely@secretlab.ca
6219W: http://www.secretlab.ca/
6220L: linux-kernel@vger.kernel.org
6221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006222F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006223
Peter Korsgaard238b8722006-12-06 20:35:17 -08006224XILINX UARTLITE SERIAL DRIVER
6225P: Peter Korsgaard
6226M: jacmet@sunsite.dk
6227L: linux-serial@vger.kernel.org
6228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006229F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006230
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231YAM DRIVER FOR AX.25
6232P: Jean-Paul Roubelat
6233M: jpr@f6fbb.org
6234L: linux-hams@vger.kernel.org
6235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006236F: drivers/net/hamradio/yam*
6237F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006238
Henkaf64a5e2005-10-12 15:02:56 +02006239YEALINK PHONE DRIVER
6240P: Henk Vergonet
6241M: Henk.Vergonet@gmail.com
6242L: usbb2k-api-dev@nongnu.org
6243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006244F: Documentation/input/yealink.txt
6245F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006246
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247Z8530 DRIVER FOR AX.25
6248P: Joerg Reuter
6249M: jreuter@yaina.de
6250W: http://yaina.de/jreuter/
6251W: http://www.qsl.net/dl1bke/
6252L: linux-hams@vger.kernel.org
6253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006254F: Documentation/networking/z8530drv.txt
6255F: drivers/net/hamradio/*scc.c
6256F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006258ZD1211RW WIRELESS DRIVER
6259P: Daniel Drake
6260M: dsd@gentoo.org
6261P: Ulrich Kunitz
6262M: kune@deine-taler.de
6263W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006264L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006265L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006267F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006268
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006270L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006271L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006273T: Mercurial http://linuxtv.org/hg/v4l-dvb
6274S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006275F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006277ZS DECSTATION Z85C30 SERIAL DRIVER
6278P: Maciej W. Rozycki
6279M: macro@linux-mips.org
6280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006281F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006282
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283THE REST
6284P: Linus Torvalds
Joe Perchescfe81f72009-04-07 21:09:58 -07006285T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286S: Buried alive in reporters