blob: f37a1e0dcd1879b75bb988b5d8c3c0045b78ed82 [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
464M: andeas.herrmann3@amd.com
465L: 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*
1365F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10001366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367CIRRUS LOGIC CS4280/CS461x SOUNDDRIVER
1368P: Cirrus Logic Corporation (kernel 2.2 driver)
1369M: Cirrus Logic Corporation, Thomas Woller <twoller@crystal.cirrus.com>
1370P: Nils Faerber (port to kernel 2.4)
1371M: Nils Faerber <nils@kernelconcepts.de>
1372S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001373F: Documentation/input/cs461x.txt
1374F: sound/pci/cs46xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376CODA FILE SYSTEM
1377P: Jan Harkes
1378M: jaharkes@cs.cmu.edu
1379M: coda@cs.cmu.edu
1380L: codalist@coda.cs.cmu.edu
1381W: http://www.coda.cs.cmu.edu/
1382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001383F: Documentation/filesystems/coda.txt
1384F: fs/coda/
1385F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001387COMMON INTERNET FILE SYSTEM (CIFS)
1388P: Steve French
1389M: sfrench@samba.org
1390L: linux-cifs-client@lists.samba.org
1391L: samba-technical@lists.samba.org
1392W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001393T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001395F: Documentation/filesystems/cifs.txt
1396F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398COMPACTPCI HOTPLUG CORE
1399P: Scott Murray
1400M: scottm@somanetworks.com
1401M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001402L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001404F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
1407P: Scott Murray
1408M: scottm@somanetworks.com
1409M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001410L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001412F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414COMPACTPCI HOTPLUG GENERIC DRIVER
1415P: Scott Murray
1416M: scottm@somanetworks.com
1417M: scott@spiteful.org
Jesse Barnes64dab202008-06-10 14:20:03 -07001418L: linux-pci@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001420F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001422COMPAL LAPTOP SUPPORT
1423P: Cezary Jackiewicz
1424M: cezary.jackiewicz@gmail.com
1425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001426F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428COMPUTONE INTELLIPORT MULTIPORT CARD
1429P: Michael H. Warfield
Adrian Bunk07d46de2005-06-25 14:59:13 -07001430M: mhw@wittsend.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001433F: Documentation/serial/computone.txt
1434F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Simon Arlott949be0f2007-03-06 02:47:46 -08001436CONEXANT ACCESSRUNNER USB DRIVER
1437P: Simon Arlott
1438M: cxacru@fire.lp0.eu
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001439L: accessrunner-general@lists.sourceforge.net
1440W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001442F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001443
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001444CONFIGFS
1445P: Joel Becker
1446M: joel.becker@oracle.com
1447L: linux-kernel@vger.kernel.org
1448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001449F: fs/configfs/
1450F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001451
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001452CONTROL GROUPS (CGROUPS)
1453P: Paul Menage
1454M: menage@google.com
KOSAKI Motohiro01c4a422009-02-11 13:04:35 -08001455P: Li Zefan
1456M: lizf@cn.fujitsu.com
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001457L: containers@lists.linux-foundation.org
1458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001459F: include/linux/cgroup*
1460F: kernel/cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001461
Rudolf Marekbebe4672007-05-08 17:22:02 +02001462CORETEMP HARDWARE MONITORING DRIVER
1463P: Rudolf Marek
1464M: r.marek@assembler.cz
1465L: lm-sensors@lm-sensors.org
1466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001467F: Documentation/hwmon/coretemp
1468F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470COSA/SRP SYNC SERIAL DRIVER
1471P: Jan "Yenya" Kasprzak
1472M: kas@fi.muni.cz
1473W: http://www.fi.muni.cz/~kas/cosa/
1474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001475F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477CPU FREQUENCY DRIVERS
1478P: Dave Jones
Dave Jonesf4432c52008-10-20 13:31:45 -04001479M: davej@redhat.com
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001480L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001482T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001484F: arch/x86/kernel/cpu/cpufreq/
1485F: drivers/cpufreq/
1486F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488CPUID/MSR DRIVER
1489P: H. Peter Anvin
1490M: hpa@zytor.com
1491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001492F: arch/x86/kernel/cpuid.c
1493F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Paul Jacksoned90fb42005-09-27 21:45:37 -07001495CPUSETS
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001496P: Paul Menage
Paul Jackson6bffd7b2008-05-01 04:34:21 -07001497M: menage@google.com
Paul Jacksoned90fb42005-09-27 21:45:37 -07001498L: linux-kernel@vger.kernel.org
1499W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001500W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001502F: Documentation/cgroups/cpusets.txt
1503F: include/linux/cpuset.h
1504F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001507W: http://sourceforge.net/projects/cramfs/
1508S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001509F: Documentation/filesystems/cramfs.txt
1510F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512CRIS PORT
1513P: Mikael Starvik
1514M: starvik@axis.com
Jesper Nilsson0b07aa62008-01-25 13:22:29 +01001515P: Jesper Nilsson
1516M: jesper.nilsson@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517L: dev-etrax@axis.com
1518W: http://developer.axis.com
1519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522CRYPTO API
1523P: Herbert Xu
1524M: herbert@gondor.apana.org.au
1525P: David S. Miller
1526M: davem@davemloft.net
1527L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001528T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001530F: Documentation/crypto/
1531F: arch/*/crypto/
1532F: crypto/
1533F: drivers/crypto/
1534F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Neil Horman5b07bd52009-02-05 16:03:04 +11001536CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
1537P: Neil Horman
1538M: nhorman@tuxdriver.com
1539L: linux-crypto@vger.kernel.org
1540S: Maintained
1541
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001542CS5535 Audio ALSA driver
1543P: Jaya Kumar
1544M: jayakumar.alsa@gmail.com
1545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001546F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001547
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001548CX18 VIDEO4LINUX DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07001549P: Hans Verkuil
1550M: hverkuil@xs4all.nl
1551P: Andy Walls
1552M: awalls@radix.net
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001553L: ivtv-devel@ivtvdriver.org
1554L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001555L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001556T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001557W: http://linuxtv.org
1558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001559F: Documentation/video4linux/cx18.txt
1560F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001561
Steve Wisee5ec3782008-05-20 14:06:33 -07001562CXGB3 ETHERNET DRIVER (CXGB3)
1563P: Divy Le Ray
1564M: divy@chelsio.com
1565L: netdev@vger.kernel.org
1566W: http://www.chelsio.com
1567S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001568F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001569
1570CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
1571P: Steve Wise
1572M: swise@chelsio.com
1573L: general@lists.openfabrics.org
1574W: http://www.openfabrics.org
1575S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001576F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578CYBERPRO FB DRIVER
1579P: Russell King
1580M: rmk@arm.linux.org.uk
1581W: http://www.arm.linux.org.uk/
1582S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001583F: drivers/video/cyber2000fb.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585CYCLADES 2X SYNC CARD DRIVER
1586P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001587M: acme@ghostprotocols.net
1588W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001590F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001594S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001595F: drivers/char/cyclades.c
1596F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001600S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001601F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603DAMA SLAVE for AX.25
1604P: Joerg Reuter
1605M: jreuter@yaina.de
1606W: http://yaina.de/jreuter/
1607W: http://www.qsl.net/dl1bke/
1608L: linux-hams@vger.kernel.org
1609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001610F: net/ax25/af_ax25.c
1611F: net/ax25/ax25_dev.c
1612F: net/ax25/ax25_ds_*
1613F: net/ax25/ax25_in.c
1614F: net/ax25/ax25_out.c
1615F: net/ax25/ax25_timer.c
1616F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001618DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
1619P: Tobias Ringstrom
1620M: tori@unhappy.mine.nu
1621L: netdev@vger.kernel.org
1622S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001623F: Documentation/networking/dmfe.txt
1624F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001625
1626DC390/AM53C974 SCSI driver
1627P: Kurt Garloff
1628M: garloff@suse.de
1629W: http://www.garloff.de/kurt/linux/dc390/
1630P: Guennadi Liakhovetski
1631M: g.liakhovetski@gmx.de
1632S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001633F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635DC395x SCSI driver
1636P: Oliver Neukum
1637M: oliver@neukum.name
1638P: Ali Akcaagac
1639M: aliakc@web.de
1640P: Jamie Lenehan
1641M: lenehan@twibble.org
1642W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001643L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644L: http://lists.twibble.org/mailman/listinfo/dc395x/
1645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001646F: Documentation/scsi/dc395x.txt
1647F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001649DCCP PROTOCOL
1650P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001651M: acme@ghostprotocols.net
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001652L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001653W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001655F: include/linux/dccp.h
1656F: include/linux/tfrc.h
1657F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659DECnet NETWORK LAYER
Christine Caulfield8943f262008-02-14 19:31:31 -08001660P: Christine Caulfield
1661M: christine.caulfield@googlemail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662W: http://linux-decnet.sourceforge.net
1663L: linux-decnet-user@lists.sourceforge.net
1664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001665F: Documentation/networking/decnet.txt
1666F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668DEFXX FDDI NETWORK DRIVER
1669P: Maciej W. Rozycki
1670M: macro@linux-mips.org
1671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001672F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001674DELL LAPTOP DRIVER
1675P: Matthew Garrett
1676M: mjg59@srcf.ucam.org
1677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001678F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680DELL LAPTOP SMM DRIVER
1681P: Massimo Dal Zotto
1682M: dz@debian.org
1683W: http://www.debian.org/~dz/i8k/
1684S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001685F: drivers/char/i8k.c
1686F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Doug Warzecha90563ec2005-09-06 15:17:15 -07001688DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
1689P: Doug Warzecha
1690M: Douglas_Warzecha@dell.com
1691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001692F: Documentation/dcdbas.txt
1693F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001694
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001695DELL WMI EXTRAS DRIVER
1696P: Matthew Garrett
1697M: mjg59@srcf.ucam.org
1698S: Maintained
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700DEVICE NUMBER REGISTRY
1701P: Torben Mathiasen
1702M: device@lanana.org
1703W: http://lanana.org/docs/device-list/index.html
1704L: linux-kernel@vger.kernel.org
1705S: Maintained
1706
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001707DEVICE-MAPPER (LVM)
1708P: Alasdair Kergon
1709L: dm-devel@redhat.com
1710W: http://sources.redhat.com/dm
1711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001712F: Documentation/device-mapper/
1713F: drivers/md/dm*
1714F: include/linux/device-mapper.h
1715F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717DIGI INTL. EPCA DRIVER
1718P: Digi International, Inc
1719M: Eng.Linux@digi.com
1720L: Eng.Linux@digi.com
1721W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001722S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001723F: Documentation/serial/digiepca.txt
1724F: drivers/char/epca*
1725F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Randy Dunlape7839f22008-10-12 16:11:45 -07001727DIRECTORY NOTIFICATION (DNOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728P: Stephen Rothwell
1729M: sfr@canb.auug.org.au
1730L: linux-kernel@vger.kernel.org
1731S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001732F: Documentation/filesystems/dnotify.txt
1733F: fs/notify/dnotify/
1734F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736DISK GEOMETRY AND PARTITION HANDLING
1737P: Andries Brouwer
1738M: aeb@cwi.nl
1739W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1740W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1741W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1742S: Maintained
1743
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001744DISKQUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745P: Jan Kara
1746M: jack@suse.cz
1747L: linux-kernel@vger.kernel.org
1748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001749F: Documentation/filesystems/quota.txt
1750F: fs/quota/
1751F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Randy Dunlape7839f22008-10-12 16:11:45 -07001753DISTRIBUTED LOCK MANAGER (DLM)
Christine Caulfield8943f262008-02-14 19:31:31 -08001754P: Christine Caulfield
1755M: ccaulfie@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001756P: David Teigland
1757M: teigland@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04001758L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001759W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001760T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001762F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001763
Dan Williamsb3e5f262007-08-07 10:26:35 -07001764DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01001765P: Maciej Sosnowski
1766M: maciej.sosnowski@intel.com
Dan Williamsb3e5f262007-08-07 10:26:35 -07001767P: Dan Williams
1768M: dan.j.williams@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001769L: linux-kernel@vger.kernel.org
Dan Williamsb3e5f262007-08-07 10:26:35 -07001770S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/dma/
1772F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001773
Juerg Haefligerb8250372007-06-09 10:11:16 -04001774DME1737 HARDWARE MONITOR DRIVER
1775P: Juerg Haefliger
1776M: juergh@gmail.com
1777L: lm-sensors@lm-sensors.org
1778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001779F: Documentation/hwmon/dme1737
1780F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001781
Martin Waitzba483d52005-06-17 13:20:59 -07001782DOCBOOK FOR DOCUMENTATION
Randy Dunlap0f40efb2006-07-03 00:24:15 -07001783P: Randy Dunlap
1784M: rdunlap@xenotime.net
Martin Waitzba483d52005-06-17 13:20:59 -07001785S: Maintained
1786
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001787DOCKING STATION DRIVER
Len Brownc5d191b2008-09-24 02:53:25 -04001788P: Shaohua Li
1789M: shaohua.li@intel.com
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001790L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001792F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001793
Joe Perches7d2c86b2009-04-07 20:59:01 -07001794DOCUMENTATION
Jean Delvare795fb7e2008-09-20 12:33:08 +02001795P: Randy Dunlap
1796M: rdunlap@xenotime.net
1797L: linux-doc@vger.kernel.org
1798S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001799F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801DOUBLETALK DRIVER
1802P: James R. Van Zandt
1803M: jrv@vanzandt.mv.com
1804L: blinux-list@redhat.com
1805S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001806F: drivers/char/dtlk.c
1807F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001809DPT_I2O SCSI RAID DRIVER
1810P: Adaptec OEM Raid Solutions
1811M: aacraid@adaptec.com
1812L: linux-scsi@vger.kernel.org
1813W: http://www.adaptec.com/
1814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001815F: drivers/scsi/dpt*
1816F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818DRIVER CORE, KOBJECTS, AND SYSFS
1819P: Greg Kroah-Hartman
1820M: gregkh@suse.de
1821L: linux-kernel@vger.kernel.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08001822T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001824F: Documentation/kobject.txt
1825F: drivers/base/core.c
1826F: fs/sysfs/
1827F: include/linux/kobj*
1828F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830DRM DRIVERS
1831P: David Airlie
1832M: airlied@linux.ie
1833L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001834T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001836F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838DSCC4 DRIVER
Francois Romieu01f20732007-01-26 00:57:17 -08001839P: Francois Romieu
1840M: romieu@fr.zoreil.com
1841L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001843F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001845DZ DECSTATION DZ11 SERIAL DRIVER
1846P: Maciej W. Rozycki
1847M: macro@linux-mips.org
1848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001849F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851EATA-DMA SCSI DRIVER
1852P: Michael Neuffer
Joe Perches7d2c86b2009-04-07 20:59:01 -07001853M: mike@i-Connect.Net
1854L: linux-eata@i-connect.net
1855L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859EATA ISA/EISA/PCI SCSI DRIVER
1860P: Dario Ballabio
1861M: ballabio_dario@emc.com
1862L: linux-scsi@vger.kernel.org
1863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001864F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866EATA-PIO SCSI DRIVER
1867P: Michael Neuffer
1868M: mike@i-Connect.Net
Joe Perches7d2c86b2009-04-07 20:59:01 -07001869L: linux-eata@i-connect.net
1870L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001872F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
1874EBTABLES
1875P: Bart De Schuymer
1876M: bart.de.schuymer@pandora.be
1877L: ebtables-user@lists.sourceforge.net
1878L: ebtables-devel@lists.sourceforge.net
1879W: http://ebtables.sourceforge.net/
1880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001881F: include/linux/netfilter_bridge/ebt_*.h
1882F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Michael Halcrow237fead2006-10-04 02:16:22 -07001884ECRYPT FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07001885P: Tyler Hicks
1886M: tyhicks@linux.vnet.ibm.com
1887M: Dustin Kirkland
1888P: kirkland@canonical.com
Michael Halcrow6dc75162008-12-15 13:54:17 -08001889L: ecryptfs-devel@lists.launchpad.net
1890W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001892F: Documentation/filesystems/ecryptfs.txt
1893F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001894
Alan Coxda9bb1d2006-01-18 17:44:13 -08001895EDAC-CORE
Dave Peterson0e438e32006-03-26 01:38:55 -08001896P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001897M: dougthompson@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001898L: bluesmoke-devel@lists.sourceforge.net
1899W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001901F: Documentation/edac.txt
1902F: drivers/edac/edac_*
1903F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001904
1905EDAC-E752X
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001906P: Mark Gross
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001907P: Doug Thompson
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001908M: mark.gross@intel.com
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001909M: dougthompson@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001910L: bluesmoke-devel@lists.sourceforge.net
1911W: bluesmoke.sourceforge.net
1912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001914
1915EDAC-E7XXX
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001916P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001917M: dougthompson@xmission.com
Dave Peterson0e438e32006-03-26 01:38:55 -08001918L: bluesmoke-devel@lists.sourceforge.net
1919W: bluesmoke.sourceforge.net
1920S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001921F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001922
Douglas Thompson6bc78402007-07-19 01:50:12 -07001923EDAC-I82443BXGX
1924P: Tim Small
1925M: tim@buttersideup.com
1926L: bluesmoke-devel@lists.sourceforge.net
1927W: bluesmoke.sourceforge.net
1928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001929F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001930
1931EDAC-I3000
1932P: Jason Uhlenkott
1933M: juhlenko@akamai.com
1934L: bluesmoke-devel@lists.sourceforge.net
1935W: bluesmoke.sourceforge.net
1936S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001937F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001938
1939EDAC-I5000
1940P: Doug Thompson
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001941M: dougthompson@xmission.com
1942L: bluesmoke-devel@lists.sourceforge.net
1943W: bluesmoke.sourceforge.net
1944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001945F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001946
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001947EDAC-I5400
1948P: Mauro Carvalho Chehab
1949M: mchehab@redhat.com
1950L: bluesmoke-devel@lists.sourceforge.net
1951W: bluesmoke.sourceforge.net
1952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001953F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08001954
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001955EDAC-I82975X
1956P: Ranganathan Desikan
1957P: Arvind R.
1958M: rdesikan@jetzbroadband.com
1959M: arvind@acarlab.com
1960L: bluesmoke-devel@lists.sourceforge.net
1961W: bluesmoke.sourceforge.net
1962S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001963F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07001964
1965EDAC-PASEMI
1966P: Egor Martovetsky
1967M: egor@pasemi.com
Douglas Thompson6bc78402007-07-19 01:50:12 -07001968L: bluesmoke-devel@lists.sourceforge.net
1969W: bluesmoke.sourceforge.net
1970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001971F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001972
Dave Peterson0e438e32006-03-26 01:38:55 -08001973EDAC-R82600
1974P: Tim Small
1975M: tim@buttersideup.com
1976L: bluesmoke-devel@lists.sourceforge.net
1977W: bluesmoke.sourceforge.net
1978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001979F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08001980
Eric Coopere59f8792008-03-13 12:55:46 +01001981EEEPC LAPTOP EXTRAS DRIVER
1982P: Corentin Chary
1983M: corentincj@iksaif.net
1984L: acpi4asus-user@lists.sourceforge.net
1985W: http://sourceforge.net/projects/acpi4asus
1986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01001988
Josh Triplett0bee8d22006-07-30 03:03:58 -07001989EFS FILESYSTEM
1990W: http://aeschi.ch.eu.org/efs/
1991S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001992F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07001993
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001994EHCA (IBM GX bus InfiniBand adapter) DRIVER
Heiko J Schickfab97222006-09-22 15:22:22 -07001995P: Hoang-Nam Nguyen
1996M: hnguyen@de.ibm.com
1997P: Christoph Raisch
1998M: raisch@de.ibm.com
Roland Dreier78526822007-07-09 20:12:26 -07001999L: general@lists.openfabrics.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002000S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002001F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002002
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002003EMBEDDED LINUX
2004P: Paul Gortmaker
2005M: paul.gortmaker@windriver.com
Uwe Kleine-Königa46add72008-09-09 00:11:39 +02002006P: David Woodhouse
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002007M: dwmw2@infradead.org
2008L: linux-embedded@vger.kernel.org
2009S: Maintained
2010
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002011EMULEX LPFC FC SCSI DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002012P: James Smart
2013M: james.smart@emulex.com
2014L: linux-scsi@vger.kernel.org
2015W: http://sourceforge.net/projects/lpfcxxxx
2016S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002017F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019EPSON 1355 FRAMEBUFFER DRIVER
2020P: Christopher Hoover
Joe Perches7d2c86b2009-04-07 20:59:01 -07002021M: ch@murgatroid.com
2022P: Christopher Hoover
2023M: ch@hpl.hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002025F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002027EPSON S1D13XXX FRAMEBUFFER DRIVER
2028P: Kristoffer Ericson
2029M: kristoffer.ericson@gmail.com
2030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/video/s1d13xxxfb.c
2032F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034ETHEREXPRESS-16 NETWORK DRIVER
2035P: Philip Blundell
2036M: philb@gnu.org
Ralf Baechle979b6c12005-06-13 14:30:40 -07002037L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002039F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041ETHERNET BRIDGE
2042P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08002043M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07002044L: bridge@lists.linux-foundation.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002045W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002047F: include/linux/netfilter_bridge/
2048F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050ETHERTEAM 16I DRIVER
2051P: Mika Kuoppala
2052M: miku@iki.fi
2053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002054F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
2056EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002057L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002059F: Documentation/filesystems/ext2.txt
2060F: fs/ext2/
2061F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063EXT3 FILE SYSTEM
Joe Perches7d2c86b2009-04-07 20:59:01 -07002064P: Stephen Tweedie
2065M: sct@redhat.com
2066P: Andrew Morton
2067M: akpm@linux-foundation.org
2068P: Andreas Dilger
2069M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002070L: linux-ext4@vger.kernel.org
2071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002072F: Documentation/filesystems/ext3.txt
2073F: fs/ext3/
2074F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002075
2076EXT4 FILE SYSTEM
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002077P: Theodore Ts'o
Joe Perches7d2c86b2009-04-07 20:59:01 -07002078M: tytso@mit.edu
2079P: Andreas Dilger
2080M: adilger@sun.com
Erik Mouw72be2cc2006-12-06 20:40:49 -08002081L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002082W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002084F: Documentation/filesystems/ext4.txt
2085F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Jean Delvaree53004e2006-01-09 23:26:14 +01002087F71805F HARDWARE MONITORING DRIVER
2088P: Jean Delvare
2089M: khali@linux-fr.org
2090L: lm-sensors@lm-sensors.org
2091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002092F: Documentation/hwmon/f71805f
2093F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095FARSYNC SYNCHRONOUS DRIVER
2096P: Kevin Curtis
2097M: kevin.curtis@farsite.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098W: http://www.farsite.co.uk/
2099S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002100F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Akinobu Mitac5408b82007-04-23 14:41:20 -07002102FAULT INJECTION SUPPORT
2103P: Akinobu Mita
2104M: akinobu.mita@gmail.com
2105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002106F: Documentation/fault-injection/
2107F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002108
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002109FILE LOCKING (flock() and fcntl()/lockf())
2110P: Matthew Wilcox
2111M: matthew@wil.cx
2112L: linux-fsdevel@vger.kernel.org
2113S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002114F: include/linux/fcntl.h
2115F: include/linux/fs.h
2116F: fs/fcntl.c
2117F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002118
2119FILESYSTEMS (VFS and infrastructure)
2120P: Alexander Viro
2121M: viro@zeniv.linux.org.uk
2122L: linux-fsdevel@vger.kernel.org
2123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002124F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002125
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002126FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
2127P: Riku Voipio
2128M: riku.vipio@iki.fi
2129L: lm-sensors@lm-sensors.org
2130S: Maintained
2131
Joe Perches7d2c86b2009-04-07 20:59:01 -07002132FIREWIRE SUBSYSTEM
2133P: Kristian Hoegsberg
2134M: krh@redhat.com
2135P: Stefan Richter
2136M: stefanr@s5r6.in-berlin.de
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002137L: linux1394-devel@lists.sourceforge.net
2138W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002139T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: drivers/firewire/
2142F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002143
2144FIRMWARE LOADER (request_firmware)
2145L: linux-kernel@vger.kernel.org
2146S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002147F: Documentation/firmware_class/
2148F: drivers/base/firmware*.c
2149F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002150
2151FPU EMULATOR
2152P: Bill Metzenthen
Joe Perchese7699802009-04-07 21:12:18 -07002153M: billm@melbpc.org.au
2154W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002156F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002157
2158FRAME RELAY DLCI/FRAD (Sangoma drivers too)
2159P: Mike McLagan
2160M: mike.mclagan@linux.org
2161L: netdev@vger.kernel.org
2162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002163F: drivers/net/wan/dlci.c
2164F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166FRAMEBUFFER LAYER
2167P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002168M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002169L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170W: http://linux-fbdev.sourceforge.net/
2171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: Documentation/fb/
2173F: drivers/video/fb*
2174F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Zhang Wei173acc72008-03-01 07:42:48 -07002176FREESCALE DMA DRIVER
Zhang Wei76b0c7882008-05-13 14:44:59 -07002177P: Li Yang
2178M: leoli@freescale.com
2179P: Zhang Wei
2180M: zw@zh-kernel.org
Zhang Wei173acc72008-03-01 07:42:48 -07002181L: linuxppc-embedded@ozlabs.org
2182L: linux-kernel@vger.kernel.org
2183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002185
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002186FREESCALE I2C CPM DRIVER
2187P: Jochen Friedrich
2188M: jochen@scram.de
2189L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002190L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002193
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002194FREESCALE IMX / MXC FRAMEBUFFER DRIVER
2195P: Sascha Hauer
2196M: kernel@pengutronix.de
2197L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
2198L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
2199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: arch/arm/plat-mxc/include/mach/imxfb.h
2201F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002202
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002203FREESCALE SOC FS_ENET DRIVER
2204P: Pantelis Antoniou
2205M: pantelis.antoniou@gmail.com
2206P: Vitaly Bordug
2207M: vbordug@ru.mvista.com
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002208L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002209L: netdev@vger.kernel.org
2210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/net/fs_enet/
2212F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002213
Timur Tabid9e9d822008-04-24 08:45:26 +10002214FREESCALE QUICC ENGINE LIBRARY
2215P: Timur Tabi
2216M: timur@freescale.com
2217L: linuxppc-dev@ozlabs.org
2218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002219F: arch/powerpc/sysdev/qe_lib/
2220F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002221
Li Yanga7205b32007-04-23 10:38:18 -07002222FREESCALE HIGHSPEED USB DEVICE DRIVER
2223P: Li Yang
2224M: leoli@freescale.com
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002225L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002226L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002227S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002228F: drivers/usb/gadget/fsl_usb2_udc.c
Li Yanga7205b32007-04-23 10:38:18 -07002229
Li Yangbeaf53b2007-05-25 13:54:02 +08002230FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
2231P: Li Yang
2232M: leoli@freescale.com
2233L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002234L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002236F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002237
Timur Tabid9e9d822008-04-24 08:45:26 +10002238FREESCALE QUICC ENGINE UCC UART DRIVER
2239P: Timur Tabi
2240M: timur@freescale.com
2241L: linuxppc-dev@ozlabs.org
2242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002243F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002244
2245FREESCALE SOC SOUND DRIVERS
2246P: Timur Tabi
2247M: timur@freescale.com
2248L: alsa-devel@alsa-project.org
2249L: linuxppc-dev@ozlabs.org
2250S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002251F: sound/soc/fsl/
Timur Tabid9e9d822008-04-24 08:45:26 +10002252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253FREEVXFS FILESYSTEM
2254P: Christoph Hellwig
2255M: hch@infradead.org
2256W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002258F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Pavel Machek71038f52009-01-15 13:51:02 -08002260FREEZER
2261P: Pavel Machek
2262M: pavel@suse.cz
2263P: Rafael J. Wysocki
2264M: rjw@sisk.pl
2265L: linux-pm@lists.linux-foundation.org
2266S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002267F: Documentation/power/freezing-of-tasks.txt
2268F: include/linux/freezer.h
2269F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002270
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002271FTRACE
2272P: Steven Rostedt
Steven Rostedt8e324c12008-11-19 15:36:43 -08002273M: rostedt@goodmis.org
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: Documentation/ftrace.txt
2276F: arch/*/*/*/ftrace.h
2277F: arch/*/kernel/ftrace.c
2278F: include/*/ftrace.h
2279F: kernel/trace/
Steven Rostedtde3b69d2008-07-15 13:28:14 -04002280
David Howells5ab7ffe2007-04-10 15:10:45 +01002281FUJITSU FR-V (FRV) PORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282P: David Howells
2283M: dhowells@redhat.com
2284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002285F: arch/frv/
2286F: include/asm-frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Jonathan Woithe20b93732008-06-11 10:14:56 +09302288FUJITSU LAPTOP EXTRAS
2289P: Jonathan Woithe
2290M: jwoithe@physics.adelaide.edu.au
2291L: linux-acpi@vger.kernel.org
2292S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002293F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302294
Miklos Szeredi04578f12005-09-09 13:10:22 -07002295FUSE: FILESYSTEM IN USERSPACE
2296P: Miklos Szeredi
2297M: miklos@szeredi.hu
2298L: fuse-devel@lists.sourceforge.net
2299W: http://fuse.sourceforge.net/
2300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002301F: fs/fuse/
2302F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
2305P: Rik Faith
2306M: faith@cs.unc.edu
2307L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002308S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002309F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311GDT SCSI DISK ARRAY CONTROLLER DRIVER
2312P: Achim Leubner
2313M: achim_leubner@adaptec.com
2314L: linux-scsi@vger.kernel.org
2315W: http://www.icp-vortex.com/
2316S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002317F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002319GENERIC GPIO I2C DRIVER
2320P: Haavard Skinnemoen
2321M: hskinnemoen@atmel.com
2322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002323F: drivers/i2c/busses/i2c-gpio.c
2324F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002325
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002326GENERIC HDLC (WAN) DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327P: Krzysztof Halasa
2328M: khc@pm.waw.pl
2329W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002331F: drivers/net/wan/c101.c
2332F: drivers/net/wan/hd6457*
2333F: drivers/net/wan/hdlc*
2334F: drivers/net/wan/n2.c
2335F: drivers/net/wan/pc300too.c
2336F: drivers/net/wan/pci200syn.c
2337F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002339GFS2 FILE SYSTEM
2340P: Steven Whitehouse
2341M: swhiteho@redhat.com
David Teiglanda4644182006-06-22 15:29:57 -04002342L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002343W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002344T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2345T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002347F: Documentation/filesystems/gfs2*.txt
2348F: fs/gfs2/
2349F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002350
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002351GIGASET ISDN DRIVERS
2352P: Hansjoerg Lipp
2353M: hjlipp@web.de
2354P: Tilman Schmidt
2355M: tilman@imap.cc
2356L: gigaset307x-common@lists.sourceforge.net
2357W: http://gigaset307x.sourceforge.net/
2358S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002359F: Documentation/isdn/README.gigaset
2360F: drivers/isdn/gigaset/
2361F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002362
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002363HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Frank Seidel211e3e02009-02-17 19:59:54 +01002364P: Frank Seidel
2365M: frank@f-seidel.de
2366L: lm-sensors@lm-sensors.org
2367W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002369F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002370
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002371HYPERVISOR VIRTUAL CONSOLE DRIVER
2372L: linuxppc-dev@ozlabs.org
2373L: linux-kernel@vger.kernel.org
2374S: Odd Fixes
2375F: drivers/char/hvc_*
2376
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002377GSPCA FINEPIX SUBDRIVER
2378P: Frank Zago
2379M: frank@zago.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002380L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002381T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002384
2385GSPCA M5602 SUBDRIVER
2386P: Erik Andren
2387M: erik.andren@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002388L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002389T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002392
2393GSPCA PAC207 SONIXB SUBDRIVER
2394P: Hans de Goede
2395M: hdegoede@redhat.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002396L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002397T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002399F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002400
2401GSPCA T613 SUBDRIVER
2402P: Leandro Costantino
2403M: lcostantino@gmail.com
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002404L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002405T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002407F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002408
2409GSPCA USB WEBCAM DRIVER
2410P: Jean-Francois Moine
2411M: moinejf@free.fr
2412W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002413L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002414T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002416F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002417
Jean Delvare5b543962005-08-15 19:51:02 +02002418HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002419L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002420W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002421S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002422F: drivers/hwmon/
Jean Delvare5b543962005-08-15 19:51:02 +02002423
Michael Buesch844dd052006-06-26 00:24:59 -07002424HARDWARE RANDOM NUMBER GENERATOR CORE
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002425S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002426F: Documentation/hw_random.txt
2427F: drivers/char/hw_random/
2428F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430HARMONY SOUND DRIVER
2431P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04002432M: kyle@mcmartin.ca
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002433L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002435F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437HAYES ESP SERIAL DRIVER
2438P: Andrew J. Robinson
2439M: arobinso@nyx.net
2440L: linux-kernel@vger.kernel.org
2441W: http://www.nyx.net/~arobinso
2442S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002443F: Documentation/serial/hayes-esp.txt
2444F: drivers/char/esp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002446HEWLETT-PACKARD SMART2 RAID DRIVER
2447P: Chirag Kantharia
2448M: chirag.kantharia@hp.com
2449L: iss_storagedev@hp.com
2450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002451F: Documentation/blockdev/cpqarray.txt
2452F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002453
2454HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
2455P: Mike Miller
2456M: mike.miller@hp.com
2457L: iss_storagedev@hp.com
2458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002459F: Documentation/blockdev/cciss.txt
2460F: drivers/block/cciss*
2461F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463HFS FILESYSTEM
2464P: Roman Zippel
2465M: zippel@linux-m68k.org
2466L: linux-kernel@vger.kernel.org
2467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002468F: Documentation/filesystems/hfs.txt
2469F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471HGA FRAMEBUFFER DRIVER
2472P: Ferenc Bakonyi
2473M: fero@drama.obuda.kando.hu
2474L: linux-nvidia@lists.surfsouth.com
2475W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002477F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002479HIBERNATION (aka Software Suspend, aka swsusp)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002480P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08002481M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002482P: Rafael J. Wysocki
2483M: rjw@sisk.pl
2484L: linux-pm@lists.linux-foundation.org
2485S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002486F: arch/x86/power/
2487F: drivers/base/power/
2488F: kernel/power/
2489F: include/linux/suspend.h
2490F: include/linux/freezer.h
2491F: include/linux/pm.h
2492F: include/asm-*/suspend*.h
2493F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002494
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002495HID CORE LAYER
2496P: Jiri Kosina
2497M: jkosina@suse.cz
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002498L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002499T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002501F: drivers/hid/
2502F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002503
Ingo Molnar38bed542007-02-22 09:09:34 +01002504HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
2505P: Thomas Gleixner
2506M: tglx@linutronix.de
2507L: linux-kernel@vger.kernel.org
2508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002509F: Documentation/timers/
2510F: kernel/hrtimer.c
2511F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513HIGH-SPEED SCC DRIVER FOR AX.25
2514P: Klaus Kudielka
2515M: klaus.kudielka@ieee.org
2516L: linux-hams@vger.kernel.org
2517W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002519F: drivers/net/hamradio/dmascc.c
2520F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002522HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
2523P: HighPoint Linux Team
2524M: linux@highpoint-tech.com
2525W: http://www.highpoint-tech.com
2526S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002527F: Documentation/scsi/hptiop.txt
2528F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530HIPPI
2531P: Jes Sorensen
2532M: jes@trained-monkey.org
2533L: linux-hippi@sunsite.dk
2534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: include/linux/hippidevice.h
2536F: include/linux/if_hippi.h
2537F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Jouni Malinenff1d2762005-05-12 22:54:16 -04002539HOST AP DRIVER
2540P: Jouni Malinen
Jouni Malinen85d32e72007-03-24 17:15:30 -07002541M: j@w1.fi
2542L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002543L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002544W: http://hostap.epitest.fi/
2545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002546F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002547
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002548HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
2549P: Carlos Corbacho
2550M: carlos@strangeworlds.co.uk
2551S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002552F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002553
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002554HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
2555P: Jaroslav Kysela
2556M: perex@perex.cz
2557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002558F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002559
Joe Perches7d2c86b2009-04-07 20:59:01 -07002560HPET: High Precision Event Timers driver
Bob Piccob9b03322005-11-07 00:59:19 -08002561P: Clemens Ladisch
2562M: clemens@ladisch.de
2563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002564F: Documentation/timers/hpet.txt
2565F: drivers/char/hpet.c
2566F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002567
2568HPET: i386
2569P: Venkatesh Pallipadi (Venki)
2570M: venkatesh.pallipadi@intel.com
2571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002572F: arch/x86/kernel/hpet.c
2573F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002574
2575HPET: x86_64
Andi Kleen8bd09832007-10-13 01:01:08 +02002576P: Vojtech Pavlik
2577M: vojtech@suse.cz
Bob Piccob9b03322005-11-07 00:59:19 -08002578S: Maintained
2579
Joe Perches7d2c86b2009-04-07 20:59:01 -07002580HPET: ACPI
Bob Piccob9b03322005-11-07 00:59:19 -08002581P: Bob Picco
2582M: bob.picco@hp.com
2583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002584F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586HPFS FILESYSTEM
2587P: Mikulas Patocka
2588M: mikulas@artax.karlin.mff.cuni.cz
2589W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2590S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002591F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Joe Perches7d2c86b2009-04-07 20:59:01 -07002593HSO 3G MODEM DRIVER
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002594P: Denis Joseph Barrow
2595M: d.barow@option.com
2596W: http://www.pharscape.org
2597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002598F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002599
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002600HTCPEN TOUCHSCREEN DRIVER
2601P: Pau Oliva Fora
2602M: pof@eslack.org
2603L: linux-input@vger.kernel.org
2604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002605F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002606
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607HUGETLB FILESYSTEM
2608P: William Irwin
2609M: wli@holomorphy.com
2610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002611F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002613I2C/SMBUS STUB DRIVER
2614P: Mark M. Hoffman
2615M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01002616L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002618F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002619
Jean Delvare5b543962005-08-15 19:51:02 +02002620I2C SUBSYSTEM
Jean Delvare710cf7e2008-05-18 20:49:40 +02002621P: Jean Delvare (PC drivers, core)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622M: khali@linux-fr.org
Jean Delvare710cf7e2008-05-18 20:49:40 +02002623P: Ben Dooks (embedded platforms)
2624M: ben-linux@fluff.org
Jean Delvare846557d2008-10-30 15:55:47 +01002625L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002626W: http://i2c.wiki.kernel.org/
2627T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002629F: Documentation/i2c/
2630F: drivers/i2c/
2631F: include/linux/i2c.h
2632F: include/linux/i2c-dev.h
2633F: include/linux/i2c-id.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
Till Harbaume8c76ee2007-05-01 23:26:35 +02002635I2C-TINY-USB DRIVER
2636P: Till Harbaum
2637M: till@harbaum.org
Jean Delvare846557d2008-10-30 15:55:47 +01002638L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002639W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002641F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643i386 BOOT CODE
H. Peter Anvin7f1291f2007-07-11 12:18:26 -07002644P: H. Peter Anvin
2645M: hpa@zytor.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646L: Linux-Kernel@vger.kernel.org
2647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002648F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651P: H. Peter Anvin
2652M: hpa@zytor.com
Joe Perches54e58812009-04-07 21:08:10 -07002653T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654S: Maintained
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656IA64 (Itanium) PLATFORM
2657P: Tony Luck
2658M: tony.luck@intel.com
2659L: linux-ia64@vger.kernel.org
2660W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002661T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002663F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665IBM MCA SCSI SUBSYSTEM DRIVER
2666P: Michael Lang
2667M: langa2@kph.uni-mainz.de
2668W: http://www.uni-mainz.de/~langm000/linux.html
2669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002670F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672IBM Power Linux RAID adapter
2673P: Brian King
2674M: brking@us.ibm.com
2675S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002676F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678IBM ServeRAID RAID DRIVER
2679P: Jack Hammer
2680P: Dave Jeffery
2681M: ipslinux@adaptec.com
2682W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002683S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002684F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002686IDE SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687P: Bartlomiej Zolnierkiewicz
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002688M: bzolnier@gmail.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689L: linux-ide@vger.kernel.org
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002690T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002692F: Documentation/ide/
2693F: drivers/ide/
2694F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002696IDE/ATAPI DRIVERS
Borislav Petkovc404c192007-12-24 15:23:44 +01002697P: Borislav Petkov
Borislav Petkovef709162008-02-19 01:41:25 +01002698M: petkovbb@gmail.com
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002699L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002700S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002701F: Documentation/cdrom/ide-cd
2702F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Andy Henroid27471fd2008-10-09 11:45:22 -07002704IDLE-I7300
2705P: Andy Henroid
2706M: andrew.d.henroid@intel.com
2707L: linux-pm@lists.linux-foundation.org
2708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002710
Joe Perches7d2c86b2009-04-07 20:59:01 -07002711IEEE 1394 SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712P: Ben Collins
Stefan Richterf51a5a92007-04-23 14:41:10 -07002713M: ben.collins@ubuntu.com
Stefan Richter87730d02006-09-16 12:24:00 +02002714P: Stefan Richter
2715M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716L: linux1394-devel@lists.sourceforge.net
2717W: http://www.linux1394.org/
Joe Perches54e58812009-04-07 21:08:10 -07002718T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002720F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Joe Perches7d2c86b2009-04-07 20:59:01 -07002722IEEE 1394 RAW I/O DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723P: Dan Dennedy
2724M: dan@dennedy.org
Stefan Richterf51a5a92007-04-23 14:41:10 -07002725P: Stefan Richter
2726M: stefanr@s5r6.in-berlin.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727L: linux1394-devel@lists.sourceforge.net
Jody McIntyre105d7b32005-09-30 11:59:04 -07002728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002729F: drivers/ieee1394/raw1394*
Jody McIntyre105d7b32005-09-30 11:59:04 -07002730
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002731INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
2732P: Mimi Zohar
2733M: zohar@us.ibm.com
2734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002735F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002738L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Paul Mundt843393d2007-11-19 13:11:04 +09002739S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002740F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742INFINIBAND SUBSYSTEM
2743P: Roland Dreier
Roland Dreier21c121c2005-06-27 14:36:47 -07002744M: rolandd@cisco.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745P: Sean Hefty
Sean Heftyed96f24702008-01-02 12:00:24 -08002746M: sean.hefty@intel.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747P: Hal Rosenstock
Jean Delvare795fb7e2008-09-20 12:33:08 +02002748M: hal.rosenstock@gmail.com
Randy Dunlap40b0bb12009-02-04 15:12:13 -08002749L: general@lists.openfabrics.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002751T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002753F: Documentation/infiniband/
2754F: drivers/infiniband/
2755F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Robert Lovec9f04f52005-07-15 12:21:07 -04002757INOTIFY
Cal Peake18b36c712006-12-12 20:18:16 +01002758P: John McCutchan
John McCutchan52af8942008-12-17 17:43:02 -08002759M: john@johnmccutchan.com
Cal Peake18b36c712006-12-12 20:18:16 +01002760P: Robert Love
John McCutchan52af8942008-12-17 17:43:02 -08002761M: rlove@rlove.org
Robert Lovec9f04f52005-07-15 12:21:07 -04002762L: linux-kernel@vger.kernel.org
2763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002764F: Documentation/filesystems/inotify.txt
2765F: fs/notify/inotify/
2766F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002767
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002768INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
2769P: Dmitry Torokhov
2770M: dmitry.torokhov@gmail.com
2771M: dtor@mail.ru
2772L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002773T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002775F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002776
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002777INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Jim Cromiece00f852006-11-30 04:49:44 +01002778P: Sylvain Meyer
2779M: sylvain.meyer@worldonline.fr
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002780L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002782F: Documentation/fb/intelfb.txt
2783F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002784
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785INTEL 810/815 FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01002786P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08002787M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08002788L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01002789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002790F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302792INTEL MENLOW THERMAL DRIVER
2793P: Sujith Thomas
2794M: sujith.thomas@intel.com
2795L: linux-acpi@vger.kernel.org
2796W: http://www.lesswatts.org/projects/acpi/
2797S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002798F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302799
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800INTEL IA32 MICROCODE UPDATE SUPPORT
2801P: Tigran Aivazian
Tigran Aivazianb5b9df62006-11-08 17:44:46 -08002802M: tigran@aivazian.fsnet.co.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002804F: arch/x86/kernel/microcode_core.c
2805F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002807INTEL I/OAT DMA DRIVER
Maciej Sosnowski5e45bb22008-02-21 13:44:31 +01002808P: Maciej Sosnowski
2809M: maciej.sosnowski@intel.com
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002810L: linux-kernel@vger.kernel.org
2811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002812F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002813
David Woodhouse6c8909b2008-10-18 16:12:17 +01002814INTEL IOMMU (VT-d)
2815P: David Woodhouse
2816M: dwmw2@infradead.org
2817L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002818T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002819S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/pci/intel-iommu.c
2821F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002822
Dan Williamsb3e5f262007-08-07 10:26:35 -07002823INTEL IOP-ADMA DMA DRIVER
2824P: Dan Williams
2825M: dan.j.williams@intel.com
2826L: linux-kernel@vger.kernel.org
2827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002828F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002829
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002830INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
2831P: Krzysztof Halasa
2832M: khc@pm.waw.pl
2833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002834F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2835F: arch/arm/mach-ixp4xx/include/mach/npe.h
2836F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2837F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2838F: drivers/net/arm/ixp4xx_eth.c
2839F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002840
Michael Buesch844dd052006-06-26 00:24:59 -07002841INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
2842P: Deepak Saxena
2843M: dsaxena@plexity.net
2844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002845F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002846
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002847INTEL IXP2000 ETHERNET DRIVER
2848P: Lennert Buytenhek
2849M: kernel@wantstofly.org
2850L: netdev@vger.kernel.org
2851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002852F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002853
Auke Kokd94e6fe2008-03-03 14:37:47 -08002854INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/ixgb/ixgbe)
Jesse Brandeburgadd18782006-03-14 14:52:13 -08002855P: Jeff Kirsher
2856M: jeffrey.t.kirsher@intel.com
Auke Koke0164af2008-05-07 13:42:33 -07002857P: Jesse Brandeburg
2858M: jesse.brandeburg@intel.com
Auke Kokd94e6fe2008-03-03 14:37:47 -08002859P: Bruce Allan
2860M: bruce.w.allan@intel.com
Jeff Kirsherae7b6482008-06-11 15:15:53 -07002861P: PJ Waskiewicz
2862M: peter.p.waskiewicz.jr@intel.com
Auke Kok20424652008-01-07 21:47:25 -08002863P: John Ronciak
2864M: john.ronciak@intel.com
Auke Kokdcd01fa2007-03-06 08:58:06 -08002865L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002866W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002868F: drivers/net/e100.c
2869F: drivers/net/e1000/
2870F: drivers/net/e1000e/
2871F: drivers/net/igb/
2872F: drivers/net/ixgb/
2873F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
James Ketrenos826d2ab2005-11-07 18:56:59 -06002875INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002876P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002877M: yi.zhu@intel.com
2878P: James Ketrenos
2879M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002880P: Reinette Chatre
2881M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002882L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002883L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002884W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002885W: http://ipw2100.sourceforge.net
2886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002887F: Documentation/networking/README.ipw2100
2888F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002889
2890INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Reinette Chatre1d43d312007-11-06 22:06:28 -08002891P: Zhu Yi
James Ketrenos826d2ab2005-11-07 18:56:59 -06002892M: yi.zhu@intel.com
2893P: James Ketrenos
2894M: jketreno@linux.intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002895P: Reinette Chatre
2896M: reinette.chatre@intel.com
Johannes Berg724c6b32007-04-23 12:18:20 -07002897L: linux-wireless@vger.kernel.org
Randy Dunlapf5df58812006-07-14 00:24:29 -07002898L: ipw2100-devel@lists.sourceforge.net
Joe Perches04bdfb92007-12-22 14:03:27 -08002899W: http://lists.sourceforge.net/mailman/listinfo/ipw2100-devel
James Ketrenos826d2ab2005-11-07 18:56:59 -06002900W: http://ipw2200.sourceforge.net
2901S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002902F: Documentation/networking/README.ipw2200
2903F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002904
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002905INTEL WIRELESS WIMAX CONNECTION 2400
2906P: Inaky Perez-Gonzalez
2907M: inaky.perez-gonzalez@intel.com
2908M: linux-wimax@intel.com
2909L: wimax@linuxwimax.org
2910S: Supported
2911W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002912F: Documentation/wimax/README.i2400m
2913F: drivers/net/wimax/i2400m/
2914F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002915
Zhu Yib481de92007-09-25 17:54:57 -07002916INTEL WIRELESS WIFI LINK (iwlwifi)
2917P: Zhu Yi
2918M: yi.zhu@intel.com
Reinette Chatre1d43d312007-11-06 22:06:28 -08002919P: Reinette Chatre
2920M: reinette.chatre@intel.com
Zhu Yib481de92007-09-25 17:54:57 -07002921L: linux-wireless@vger.kernel.org
2922L: ipw3945-devel@lists.sourceforge.net
2923W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002924T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002925S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002926F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002927
Ralf Baechlecb109a02007-08-30 23:56:30 -07002928IOC3 ETHERNET DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929P: Ralf Baechle
2930M: ralf@linux-mips.org
2931L: linux-mips@linux-mips.org
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Ralf Baechlecb109a02007-08-30 23:56:30 -07002935IOC3 SERIAL DRIVER
2936P: Pat Gefre
2937M: pfg@sgi.com
Joe Perches6650e0a2007-12-10 15:49:32 -08002938L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07002939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002940F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07002941
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002942IP MASQUERADING
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943P: Juanjo Ciarlante
2944M: jjciarla@raiz.uncu.edu.ar
2945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002946F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Francois Romieu1202d6f2007-09-17 17:13:55 -07002948IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
2949P: Francois Romieu
2950M: romieu@fr.zoreil.com
2951P: Sorbica Shieh
2952M: sorbica@icplus.com.tw
2953P: Jesse Huang
2954M: jesse@icplus.com.tw
2955L: netdev@vger.kernel.org
2956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002958
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002959IPATH DRIVER
Arthur Jones18b8c8f2008-02-29 10:13:37 -08002960P: Ralph Campbell
Arthur Jonesf42b6472007-07-09 20:12:26 -07002961M: infinipath@qlogic.com
2962L: general@lists.openfabrics.org
2963T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002964S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002965F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002966
Corey Minyard4409ebe2006-04-20 02:43:12 -07002967IPMI SUBSYSTEM
2968P: Corey Minyard
2969M: minyard@acm.org
2970L: openipmi-developer@lists.sourceforge.net
2971W: http://openipmi.sourceforge.net/
2972S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002973F: Documentation/IPMI.txt
2974F: drivers/char/ipmi/
2975F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002976
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002977IPS SCSI RAID DRIVER
2978P: Adaptec OEM Raid Solutions
2979M: aacraid@adaptec.com
2980L: linux-scsi@vger.kernel.org
2981W: http://www.adaptec.com/
2982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002983F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002984
2985IPVS
2986P: Wensong Zhang
2987M: wensong@linux-vs.org
2988P: Simon Horman
2989M: horms@verge.net.au
2990P: Julian Anastasov
2991M: ja@ssi.bg
Ralf Baechle979b6c12005-06-13 14:30:40 -07002992L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002993L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002995F: Documentation/networking/ipvs-sysctl.txt
2996F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Randy Dunlape7839f22008-10-12 16:11:45 -07002998IPWIRELESS DRIVER
David Sterba099dc4f2008-02-07 10:57:12 +01002999P: Jiri Kosina
3000M: jkosina@suse.cz
3001P: David Sterba
3002M: dsterba@suse.cz
3003S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003004T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003005F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003006
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003007IPX NETWORK LAYER
3008P: Arnaldo Carvalho de Melo
3009M: acme@ghostprotocols.net
3010L: netdev@vger.kernel.org
3011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003012F: include/linux/ipx.h
3013F: include/net/ipx.h
3014F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003015
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016IRDA SUBSYSTEM
Samuel Ortizf3539762006-05-09 15:24:49 -07003017P: Samuel Ortiz
3018M: samuel@sortiz.org
Olaf Heringa2ac9532005-07-12 13:58:35 -07003019L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003022F: Documentation/networking/irda.txt
3023F: drivers/net/irda/
3024F: include/net/irda/
3025F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003027ISAPNP
3028P: Jaroslav Kysela
3029M: perex@perex.cz
3030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003031F: Documentation/isapnp.txt
3032F: drivers/pnp/isapnp/
3033F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003034
Mike Christie14816b1e2007-11-28 16:22:06 -08003035ISCSI
3036P: Mike Christie
3037M: michaelc@cs.wisc.edu
3038L: open-iscsi@googlegroups.com
3039W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003040T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003041S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003042F: drivers/scsi/*iscsi*
3043F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045ISDN SUBSYSTEM
3046P: Karsten Keil
Karsten Keilfbfd8b52009-03-01 18:04:53 +01003047M: isdn@linux-pingi.de
Paul Bolled5d52272008-04-15 00:40:48 -07003048L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003050T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003052F: Documentation/isdn/
3053F: drivers/isdn/
3054F: include/linux/isdn.h
3055F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057ISDN SUBSYSTEM (Eicon active card driver)
3058P: Armin Schindler
3059M: mac@melware.de
Paul Bolled5d52272008-04-15 00:40:48 -07003060L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061W: http://www.melware.de
3062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003063F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064
Hans Verkuil91821ff2007-12-02 09:35:33 -03003065IVTV VIDEO4LINUX DRIVER
3066P: Hans Verkuil
3067M: hverkuil@xs4all.nl
3068L: ivtv-devel@ivtvdriver.org
3069L: ivtv-users@ivtvdriver.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003070L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003071T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003072W: http://www.ivtvdriver.org
3073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: Documentation/video4linux/*.ivtv
3075F: drivers/media/video/ivtv/
3076F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003077
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003078JFS FILESYSTEM
3079P: Dave Kleikamp
3080M: shaggy@austin.ibm.com
3081L: jfs-discussion@lists.sourceforge.net
3082W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003083T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003084S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003085F: Documentation/filesystems/jfs.txt
3086F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003087
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003088JME NETWORK DRIVER
3089P: Guo-Fu Tseng
3090M: cooldavid@cooldavid.org
3091L: netdev@vger.kernel.org
3092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003093F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
3096P: David Woodhouse
3097M: dwmw2@infradead.org
David Woodhouse6d85d062007-10-27 10:39:48 -04003098L: linux-mtd@lists.infradead.org
3099W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003101F: fs/jffs2/
3102F: include/linux/jffs2.h
3103F: include/mtd/jffs2-user.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Josh Triplettde456d32006-07-30 03:04:00 -07003105JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches7d2c86b2009-04-07 20:59:01 -07003106P: Stephen Tweedie
3107M: sct@redhat.com
3108P: Andrew Morton
3109M: akpm@linux-foundation.org
Erik Mouw72be2cc2006-12-06 20:40:49 -08003110L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003112F: fs/jbd*/
3113F: include/linux/ext*jbd*.h
3114F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003115
Rudolf Marek4660cb32006-10-08 22:01:26 +02003116K8TEMP HARDWARE MONITORING DRIVER
3117P: Rudolf Marek
3118M: r.marek@assembler.cz
3119L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003121F: Documentation/hwmon/k8temp
3122F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123
3124KCONFIG
3125P: Roman Zippel
3126M: zippel@linux-m68k.org
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003127L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003129F: Documentation/kbuild/kconfig-language.txt
3130F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Vivek Goyalea6c2082006-05-20 14:59:55 -07003132KDUMP
3133P: Vivek Goyal
Vivek Goyal4200b66c2007-12-01 12:16:30 -08003134M: vgoyal@redhat.com
Vivek Goyalea6c2082006-05-20 14:59:55 -07003135P: Haren Myneni
3136M: hbabu@us.ibm.com
Simon Horman34633992007-05-08 00:31:40 -07003137L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003138L: linux-kernel@vger.kernel.org
3139W: http://lse.sourceforge.net/kdump/
3140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003141F: Documentation/kdump
Vivek Goyalea6c2082006-05-20 14:59:55 -07003142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143KERNEL AUTOMOUNTER (AUTOFS)
3144P: H. Peter Anvin
3145M: hpa@zytor.com
3146L: autofs@linux.kernel.org
3147S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003148F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
3150KERNEL AUTOMOUNTER v4 (AUTOFS4)
3151P: Ian Kent
3152M: raven@themaw.net
3153L: autofs@linux.kernel.org
3154S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003155F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Joe Perches7d2c86b2009-04-07 20:59:01 -07003157KERNEL BUILD
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158P: Sam Ravnborg
3159M: sam@ravnborg.org
Joe Perches54e58812009-04-07 21:08:10 -07003160T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next.git
3161T: git git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003162L: linux-kbuild@vger.kernel.org
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003164F: Documentation/kbuild/
3165F: Makefile
3166F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
3168KERNEL JANITORS
3169P: Several
maximilian attemsc3000e02007-07-06 11:17:32 -07003170L: kernel-janitors@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171W: http://www.kerneljanitors.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172S: Maintained
3173
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003174KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Neil Browna512cd52007-07-31 00:37:27 -07003175P: J. Bruce Fields
3176M: bfields@fieldses.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177P: Neil Brown
NeilBrown98fac232007-01-26 00:56:57 -08003178M: neilb@suse.de
Neil Brown16141c02007-12-11 16:16:12 -08003179L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003181S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003182F: fs/nfsd/
3183F: include/linux/nfsd/
3184F: fs/lockd/
3185F: fs/nfs_common/
3186F: net/sunrpc/
3187F: include/linux/lockd/
3188F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Avi Kivity426d62e2006-12-13 00:34:03 -08003190KERNEL VIRTUAL MACHINE (KVM)
3191P: Avi Kivity
Avi Kivity9ea1de42008-09-19 19:25:30 -07003192M: avi@redhat.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003193L: kvm@vger.kernel.org
3194W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003196F: Documentation/*/kvm.txt
3197F: arch/*/kvm/
3198F: arch/*/include/asm/kvm*
3199F: include/linux/kvm*
3200F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003201
Joerg Roedelad8003d2008-09-10 20:01:07 +02003202KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
3203P: Joerg Roedel
3204M: joerg.roedel@amd.com
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003205L: kvm@vger.kernel.org
3206W: http://kvm.qumranet.com
3207S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003208F: arch/x86/include/asm/svm.h
3209F: arch/x86/kvm/kvm_svm.h
3210F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003211
Hollis Blanchard513014b2008-04-16 23:28:08 -05003212KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
3213P: Hollis Blanchard
3214M: hollisb@us.ibm.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003215L: kvm-ppc@vger.kernel.org
3216W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003217S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003218F: arch/powerpc/include/asm/kvm*
3219F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003220
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003221KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003222P: Xiantao Zhang
3223M: xiantao.zhang@intel.com
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003224L: kvm-ia64@vger.kernel.org
3225W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003227F: Documentation/ia64/kvm.txt
3228F: arch/ia64/include/asm/kvm*
3229F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003230
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003231KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
3232P: Carsten Otte
3233M: cotte@de.ibm.com
3234P: Christian Borntraeger
3235M: borntraeger@de.ibm.com
3236M: linux390@de.ibm.com
3237L: linux-s390@vger.kernel.org
3238W: http://www.ibm.com/developerworks/linux/linux390/
3239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003240F: Documentation/s390/kvm.txt
3241F: arch/s390/include/asm/kvm*
3242F: arch/s390/kvm
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003243
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003244KEXEC
3245P: Eric Biederman
3246M: ebiederm@xmission.com
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003247W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003248L: linux-kernel@vger.kernel.org
Simon Horman34633992007-05-08 00:31:40 -07003249L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003251F: include/linux/kexec.h
3252F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003253
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003254KGDB
3255P: Jason Wessel
3256M: jason.wessel@windriver.com
3257L: kgdb-bugreport@lists.sourceforge.net
3258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003259F: Documentation/DocBook/kgdb.tmpl
3260F: drivers/misc/kgdbts.c
3261F: drivers/serial/kgdboc.c
3262F: include/linux/kgdb.h
3263F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003264
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003265KMEMTRACE
3266P: Eduard - Gabriel Munteanu
3267M: eduard.munteanu@linux360.ro
3268L: linux-kernel@vger.kernel.org
3269S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003270F: Documentation/vm/kmemtrace.txt
3271F: include/trace/kmemtrace.h
3272F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003273
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003274KPROBES
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003275P: Ananth N Mavinakayanahalli
3276M: ananth@in.ibm.com
3277P: Anil S Keshavamurthy
3278M: anil.s.keshavamurthy@intel.com
3279P: David S. Miller
3280M: davem@davemloft.net
Masami Hiramatsu6edef972008-03-26 15:53:19 -04003281P: Masami Hiramatsu
3282M: mhiramat@redhat.com
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003283L: linux-kernel@vger.kernel.org
3284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003285F: Documentation/kprobes.txt
3286F: include/linux/kprobes.h
3287F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003288
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003289KS0108 LCD CONTROLLER DRIVER
3290P: Miguel Ojeda Sandonis
Miguel Ojeda450c6222008-07-04 09:59:33 -07003291M: miguel.ojeda.sandonis@gmail.com
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003292L: linux-kernel@vger.kernel.org
Miguel Ojeda450c6222008-07-04 09:59:33 -07003293W: http://miguelojeda.es/auxdisplay.htm
3294W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003296F: Documentation/auxdisplay/ks0108
3297F: drivers/auxdisplay/ks0108.c
3298F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003302S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003303F: Documentation/networking/lapb-module.txt
3304F: include/*/lapb.h
3305F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
3307LASI 53c700 driver for PARISC
3308P: James E.J. Bottomley
3309M: James.Bottomley@HansenPartnership.com
3310L: linux-scsi@vger.kernel.org
3311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003312F: Documentation/scsi/53c700.txt
3313F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Richard Purdie263de9b2006-05-15 09:44:16 -07003315LED SUBSYSTEM
3316P: Richard Purdie
3317M: rpurdie@rpsys.net
3318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003319F: drivers/leds/
3320F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322LEGO USB Tower driver
3323P: Juergen Stuber
3324M: starblue@users.sourceforge.net
3325L: legousb-devel@lists.sourceforge.net
3326W: http://legousb.sourceforge.net/
3327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003328F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Rusty Russell568a17f2007-10-25 14:12:24 +10003330LGUEST
3331P: Rusty Russell
3332M: rusty@rustcorp.com.au
3333L: lguest@ozlabs.org
3334W: http://lguest.ozlabs.org/
3335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003336F: Documentation/lguest/
3337F: arch/x86/lguest/
3338F: drivers/lguest/
3339F: include/linux/lguest*.h
3340F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003341
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342LINUX FOR IBM pSERIES (RS/6000)
3343P: Paul Mackerras
3344M: paulus@au.ibm.com
3345W: http://www.ibm.com/linux/ltc/projects/ppc
3346S: Supported
3347
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003348LINUX FOR POWERPC (32-BIT AND 64-BIT)
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003349P: Benjamin Herrenschmidt
3350M: benh@kernel.crashing.org
Paul Mackerras92cde4d2009-01-02 15:40:55 +11003351P: Paul Mackerras
3352M: paulus@samba.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353W: http://www.penguinppc.org/
3354L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003355T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356S: Supported
3357
3358LINUX FOR POWER MACINTOSH
3359P: Benjamin Herrenschmidt
3360M: benh@kernel.crashing.org
3361W: http://www.penguinppc.org/
3362L: linuxppc-dev@ozlabs.org
3363S: Maintained
3364
Grant Likely77a76362008-07-12 12:11:43 -06003365LINUX FOR POWERPC EMBEDDED MPC5XXX
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366P: Sylvain Munaut
3367M: tnt@246tNt.com
Grant Likelye1eea9f2007-10-09 14:45:26 -06003368P: Grant Likely
3369M: grant.likely@secretlab.ca
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371S: Maintained
3372
3373LINUX FOR POWERPC EMBEDDED PPC4XX
Josh Boyer9a474ff2007-09-19 21:19:07 -05003374P: Josh Boyer
3375M: jwboyer@linux.vnet.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376P: Matt Porter
3377M: mporter@kernel.crashing.org
3378W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003379L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003380T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381S: Maintained
3382
Grant Likely260c02a2007-10-02 12:15:34 +10003383LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
3384P: Grant Likely
3385M: grant.likely@secretlab.ca
Grant Likelyf210d432007-10-03 23:24:52 -06003386W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003387L: linuxppc-dev@ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388S: Maintained
3389
Tom Rinie93adf12005-07-26 12:49:53 -07003390LINUX FOR POWERPC EMBEDDED PPC8XX
Marcelo Tosattidba5baf2007-09-10 18:46:01 -04003391P: Vitaly Bordug
3392M: vitb@kernel.crashing.org
Tom Rinie93adf12005-07-26 12:49:53 -07003393P: Marcelo Tosatti
Marcelo Tosatti2e367a82006-05-15 09:44:08 -07003394M: marcelo@kvack.org
Tom Rinie93adf12005-07-26 12:49:53 -07003395W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003396L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003397S: Maintained
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Jim Cromiece00f852006-11-30 04:49:44 +01003400P: Kumar Gala
3401M: galak@kernel.crashing.org
3402W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003403L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003404S: Maintained
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Olof Johanssonab06ff32006-09-06 14:44:54 -05003406LINUX FOR POWERPC PA SEMI PWRFICIENT
3407P: Olof Johansson
3408M: olof@lixom.net
3409W: http://www.pasemi.com/
3410L: linuxppc-dev@ozlabs.org
3411S: Supported
3412
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413LINUX SECURITY MODULE (LSM) FRAMEWORK
3414P: Chris Wright
Chris Wright692a2062006-03-11 03:27:19 -08003415M: chrisw@sous-sol.org
Chris Wright1a4520b2006-03-11 03:27:20 -08003416L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003417T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418S: Supported
3419
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003420LLC (802.2)
3421P: Arnaldo Carvalho de Melo
3422M: acme@ghostprotocols.net
3423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003424F: include/linux/llc.h
3425F: include/net/llc*
3426F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003427
Pavel Machek455fbdd2008-11-12 13:27:02 -08003428LIS3LV02D ACCELEROMETER DRIVER
3429P: Eric Piel
3430M: eric.piel@tremplin-utc.net
3431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003432F: Documentation/hwmon/lis3lv02d
3433F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435LM83 HARDWARE MONITOR DRIVER
3436P: Jean Delvare
3437M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003438L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003440F: Documentation/hwmon/lm83
3441F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443LM90 HARDWARE MONITOR DRIVER
3444P: Jean Delvare
3445M: khali@linux-fr.org
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003446L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003448F: Documentation/hwmon/lm90
3449F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003451LOCKDEP AND LOCKSTAT
3452P: Peter Zijlstra
3453M: peterz@infradead.org
3454P: Ingo Molnar
3455M: mingo@redhat.com
3456L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003457T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003458S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003459F: Documentation/lockdep*.txt
3460F: Documentation/lockstat.txt
3461F: include/linux/lockdep.h
3462F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003463
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003464LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465P: Richard Russon (FlatCap)
3466M: ldm@flatcap.org
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003467L: linux-ntfs-dev@lists.sourceforge.net
3468W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003470F: Documentation/ldm.txt
3471F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003473LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
3474P: Eric Moore
Eric Moored8a82d72006-12-29 16:47:43 -08003475M: Eric.Moore@lsi.com
3476M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003477L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003478L: linux-scsi@vger.kernel.org
3479W: http://www.lsilogic.com/support
3480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003481F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003482
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
3484P: Matthew Wilcox
3485M: matthew@wil.cx
3486L: linux-scsi@vger.kernel.org
3487S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003488F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Mike Frysinger81365c32008-10-29 14:01:12 -07003490LTP (Linux Test Project)
3491P: Subrata Modak
3492M: subrata@linux.vnet.ibm.com
3493P: Mike Frysinger
3494M: vapier@gentoo.org
3495L: ltp-list@lists.sourceforge.net (subscribers-only)
3496W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003497T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003498S: Maintained
3499
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003500M32R ARCHITECTURE
3501P: Hirokazu Takata
3502M: takata@linux-m32r.org
3503L: linux-m32r@ml.linux-m32r.org
3504L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3505W: http://www.linux-m32r.org/
3506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003507F: arch/m32r/
3508F: include/asm-m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003509
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510M68K ARCHITECTURE
3511P: Geert Uytterhoeven
3512M: geert@linux-m68k.org
3513P: Roman Zippel
3514M: zippel@linux-m68k.org
3515L: linux-m68k@lists.linux-m68k.org
3516W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003517T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003519F: arch/m68k/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521M68K ON APPLE MACINTOSH
3522P: Joshua Thompson
3523M: funaho@jurai.org
3524W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003525L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526S: Maintained
3527
3528M68K ON HP9000/300
3529P: Philip Blundell
3530M: philb@gnu.org
3531W: http://www.tazenda.demon.co.uk/phil/linux-hp
3532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003533F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Jiri Benc64a327a2007-05-05 11:47:08 -07003535MAC80211
Johannes Berg31c7cec2007-10-23 17:05:25 +02003536P: Johannes Berg
3537M: johannes@sipsolutions.net
Jiri Benc64a327a2007-05-05 11:47:08 -07003538L: linux-wireless@vger.kernel.org
3539W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003540T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003542F: Documentation/networking/mac80211-injection.txt
3543F: include/net/mac80211.h
3544F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003545
Stefano Brivio1036d862007-12-23 04:46:27 +01003546MAC80211 PID RATE CONTROL
3547P: Stefano Brivio
3548M: stefano.brivio@polimi.it
3549P: Mattias Nissler
3550M: mattias.nissler@gmx.de
3551L: linux-wireless@vger.kernel.org
3552W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003553T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003555F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003556
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003557MACVLAN DRIVER
3558P: Patrick McHardy
3559M: kaber@trash.net
3560L: netdev@vger.kernel.org
3561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003562F: drivers/net/macvlan.c
3563F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003564
Michael Kerriskfaf16682005-07-31 22:34:47 -07003565MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Jim Cromiece00f852006-11-30 04:49:44 +01003566P: Michael Kerrisk
Michael Kerrisk1d7f5022007-10-16 23:30:31 -07003567M: mtk.manpages@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02003568W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003569L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003570S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003571
Stefano Brivio74cda162007-11-19 20:27:46 +01003572MARVELL LIBERTAS WIRELESS DRIVER
3573P: Dan Williams
3574M: dcbw@redhat.com
3575L: libertas-dev@lists.infradead.org
3576S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003577F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003578
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003579MARVELL MV643XX ETHERNET DRIVER
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003580P: Lennert Buytenhek
3581M: buytenh@marvell.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003582L: netdev@vger.kernel.org
Dale Farnsworth85ba9d92008-06-05 06:10:51 -07003583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003584F: drivers/net/mv643xx_eth.*
3585F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Pierre Ossman2a695672009-03-16 19:52:26 +01003587MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
3588P: Nicolas Pitre
3589M: nico@cam.org
3590L: linux-kernel@vger.kernel.org
3591S: Maintained
3592
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003593MARVELL YUKON / SYSKONNECT DRIVER
3594P: Mirko Lindner
3595M: mlindner@syskonnect.de
3596P: Ralph Roesler
3597M: rroesler@syskonnect.de
3598W: http://www.syskonnect.com
3599S: Supported
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601MATROX FRAMEBUFFER DRIVER
3602P: Petr Vandrovec
3603M: vandrove@vc.cvut.cz
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08003604L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003606F: drivers/video/matrox/matroxfb_*
3607F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003609MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3610P: Hans J. Koch
3611M: hjk@linutronix.de
3612L: lm-sensors@lm-sensors.org
3613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003614F: Documentation/hwmon/max6650
3615F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003616
Joe Perches127c49a2009-04-08 08:34:04 -07003617MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
3618P: Mauro Carvalho Chehab
3619M: mchehab@infradead.org
3620P: LinuxTV.org Project
3621L: linux-media@vger.kernel.org
3622W: http://linuxtv.org
3623T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3624S: Maintained
3625F: Documentation/dvb/
3626F: Documentation/video4linux/
3627F: drivers/media/
3628F: include/media/
3629F: include/linux/dvb/
3630F: include/linux/videodev*.h
3631
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003632MEGARAID SCSI DRIVERS
Jim Cromiece00f852006-11-30 04:49:44 +01003633P: Neela Syam Kolli
Sumant Patrobdd0d7572007-05-10 07:22:35 -07003634M: megaraidlinux@lsi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003635L: linux-scsi@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003636W: http://megaraid.lsilogic.com
3637S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003638F: Documentation/scsi/megaraid.txt
3639F: drivers/scsi/megaraid.*
3640F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003641
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003642MEMORY MANAGEMENT
3643L: linux-mm@kvack.org
3644L: linux-kernel@vger.kernel.org
3645W: http://www.linux-mm.org
3646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003647F: include/linux/mm.h
3648F: mm/
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003649
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003650MEMORY RESOURCE CONTROLLER
3651P: Balbir Singh
3652M: balbir@linux.vnet.ibm.com
3653P: Pavel Emelyanov
3654M: xemul@openvz.org
3655P: KAMEZAWA Hiroyuki
3656M: kamezawa.hiroyu@jp.fujitsu.com
3657L: linux-mm@kvack.org
3658L: linux-kernel@vger.kernel.org
3659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003660F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003661
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003662MEMORY TECHNOLOGY DEVICES (MTD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663P: David Woodhouse
3664M: dwmw2@infradead.org
3665W: http://www.linux-mtd.infradead.org/
3666L: linux-mtd@lists.infradead.org
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003667T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003669F: drivers/mtd/
3670F: include/linux/mtd/
3671F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673MICROTEK X6 SCANNER
3674P: Oliver Neukum
3675M: oliver@neukum.name
3676S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003677F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679MIPS
3680P: Ralf Baechle
3681M: ralf@linux-mips.org
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003682W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003684T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003685S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003686F: Documentation/mips/
3687F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
3689MISCELLANEOUS MCA-SUPPORT
3690P: James Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05003691M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692L: linux-kernel@vger.kernel.org
3693S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003694F: Documentation/ia64/mca.txt
3695F: Documentation/mca.txt
3696F: drivers/mca/
3697F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698
3699MODULE SUPPORT
3700P: Rusty Russell
3701M: rusty@rustcorp.com.au
3702L: linux-kernel@vger.kernel.org
3703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003704F: include/linux/module.h
3705F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706
3707MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
3708P: Stelian Pop
3709M: stelian@popies.net
3710W: http://popies.net/meye/
3711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003712F: Documentation/video4linux/meye.txt
3713F: drivers/media/video/meye.*
3714F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Pavel Pisac58ff042007-05-16 01:10:41 +02003716MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
3717P: Pavel Pisa
3718M: ppisa@pikron.com
3719L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Pavel Pisac58ff042007-05-16 01:10:41 +02003720S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003721F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723MOUSE AND MISC DEVICES [GENERAL]
3724P: Alessandro Rubini
3725M: rubini@ipvvis.unipv.it
3726L: linux-kernel@vger.kernel.org
3727S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003728F: drivers/input/mouse/
3729F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
Jiri Slabyb9705b62008-04-30 00:53:48 -07003731MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Jiri Slabyd7354102006-12-08 02:38:35 -08003732P: Jiri Slaby
3733M: jirislaby@gmail.com
3734L: linux-kernel@vger.kernel.org
3735S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003736F: Documentation/serial/moxa-smartio
3737F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003738
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003739MSI LAPTOP SUPPORT
3740P: Lennart Poettering
3741M: mzxreary@0pointer.de
Joe Perches04bdfb92007-12-22 14:03:27 -08003742W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003743W: http://0pointer.de/lennart/tchibo.html
3744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003745F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003746
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003747MULTIFUNCTION DEVICES (MFD)
3748P: Samuel Ortiz
Samuel Ortiz895d9f02009-03-23 00:46:18 +01003749M: sameo@linux.intel.com
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003750L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003751T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003752S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003753F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003754
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003755MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003756P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02003757M: pierre@ossman.eu
Pierre Ossmanb9f5d802006-10-17 00:09:30 -07003758L: linux-kernel@vger.kernel.org
3759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003760F: drivers/mmc/
3761F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003762
David Brownell15a05802007-08-08 09:12:54 -07003763MULTIMEDIA CARD (MMC) ETC. OVER SPI
3764P: David Brownell
3765M: dbrownell@users.sourceforge.net
3766L: linux-kernel@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003767S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003768F: drivers/mmc/host/mmc_spi.c
3769F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003770
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771MULTISOUND SOUND DRIVER
3772P: Andrew Veliath
3773M: andrewtv@usa.net
3774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003775F: Documentation/sound/oss/MultiSound
3776F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Jiri Slabyd7354102006-12-08 02:38:35 -08003778MULTITECH MULTIPORT CARD (ISICOM)
3779P: Jiri Slaby
3780M: jirislaby@gmail.com
3781L: linux-kernel@vger.kernel.org
3782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003783F: drivers/char/isicom.c
3784F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003785
Felipe Balbi550a7372008-07-24 12:27:36 +03003786MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Jean Delvare795fb7e2008-09-20 12:33:08 +02003787P: Felipe Balbi
3788M: felipe.balbi@nokia.com
3789L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003790T: git git://gitorious.org/musb/mainline.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003791S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003792F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003793
Brice Goglin2d3cf582008-05-17 12:45:36 +02003794MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
3795P: Andrew Gallatin
3796M: gallatin@myri.com
3797P: Brice Goglin
3798M: brice@myri.com
3799L: netdev@vger.kernel.org
3800W: http://www.myri.com/scs/download-Myri10GE.html
3801S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003802F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003803
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804NATSEMI ETHERNET DRIVER (DP8381x)
Jean Delvare795fb7e2008-09-20 12:33:08 +02003805P: Tim Hockin
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806M: thockin@hockin.org
3807S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003808F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810NCP FILESYSTEM
3811P: Petr Vandrovec
3812M: vandrove@vc.cvut.cz
3813L: linware@sh.cvut.cz
3814S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003815F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
3817NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
3818P: James E.J. Bottomley
3819M: James.Bottomley@HansenPartnership.com
3820L: linux-scsi@vger.kernel.org
3821S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003822F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003824NETEFFECT IWARP RNIC DRIVER (IW_NES)
3825P: Faisal Latif
Roland Dreier7b49d952008-10-16 15:39:14 -07003826M: faisal.latif@intel.com
Chien Tung5f625602008-05-26 15:23:32 -07003827P: Chien Tung
Roland Dreier7b49d952008-10-16 15:39:14 -07003828M: chien.tin.tung@intel.com
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003829L: general@lists.openfabrics.org
3830W: http://www.neteffect.com
3831S: Supported
3832F: drivers/infiniband/hw/nes/
3833
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003834NETEM NETWORK EMULATOR
3835P: Stephen Hemminger
Stephen Hemminger65ebe6342007-01-23 11:38:57 -08003836M: shemminger@linux-foundation.org
David Brownellf318a632007-04-23 14:41:06 -07003837L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003839F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003840
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003841NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Jiri Slaby4a584482007-08-30 23:56:39 -07003842P: Ramkrishna Vepa
3843M: ram.vepa@neterion.com
3844P: Rastapur Santosh
3845M: santosh.rastapur@neterion.com
3846P: Sivakumar Subramani
3847M: sivakumar.subramani@neterion.com
3848P: Sreenivasa Honnur
3849M: sreenivasa.honnur@neterion.com
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003850P: Anil Murthy
3851M: anil.murthy@neterion.com
Jiri Slaby4a584482007-08-30 23:56:39 -07003852L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003853W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3854W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003856F: Documentation/networking/s2io.txt
3857F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859NETFILTER/IPTABLES/IPCHAINS
3860P: Rusty Russell
3861P: Marc Boucher
3862P: James Morris
3863P: Harald Welte
3864P: Jozsef Kadlecsik
Patrick McHardy82b98542006-10-12 14:08:55 -07003865P: Patrick McHardy
3866M: kaber@trash.net
Patrick McHardy1a03b812007-09-18 13:19:26 -07003867L: netfilter-devel@vger.kernel.org
3868L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003869L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870W: http://www.netfilter.org/
3871W: http://www.iptables.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003873F: include/linux/netfilter*
3874F: include/linux/netfilter/
3875F: include/net/netfilter/
3876F: net/*/netfilter.c
3877F: net/*/netfilter/
3878F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Paul Moore4cc67732006-09-25 15:57:13 -07003880NETLABEL
3881P: Paul Moore
3882M: paul.moore@hp.com
3883W: http://netlabel.sf.net
3884L: netdev@vger.kernel.org
3885S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003886F: Documentation/netlabel
3887F: include/net/netlabel.h
3888F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003889
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890NETROM NETWORK LAYER
3891P: Ralf Baechle
3892M: ralf@linux-mips.org
3893L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003894W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003896F: include/linux/netrom.h
3897F: include/net/netrom.h
3898F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003900NETWORK BLOCK DEVICE (NBD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901P: Paul Clements
3902M: Paul.Clements@steeleye.com
3903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003904F: Documentation/blockdev/nbd.txt
3905F: drivers/block/nbd.c
3906F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908NETWORK DEVICE DRIVERS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909P: Jeff Garzik
3910M: jgarzik@pobox.com
Ralf Baechle979b6c12005-06-13 14:30:40 -07003911L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003912T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003914F: drivers/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916NETWORKING [GENERAL]
3917P: Networking Team
Ralf Baechle979b6c12005-06-13 14:30:40 -07003918M: netdev@vger.kernel.org
3919L: netdev@vger.kernel.org
David S. Millerf1465f72006-03-27 23:28:44 -08003920W: http://linux-net.osdl.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003922F: net/
3923F: include/net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
3925NETWORKING [IPv4/IPv6]
3926P: David S. Miller
3927M: davem@davemloft.net
3928P: Alexey Kuznetsov
3929M: kuznet@ms2.inr.ac.ru
3930P: Pekka Savola (ipv6)
3931M: pekkas@netcore.fi
3932P: James Morris
James Morris48de5be2005-08-08 10:29:08 -04003933M: jmorris@namei.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934P: Hideaki YOSHIFUJI
3935M: yoshfuji@linux-ipv6.org
3936P: Patrick McHardy
Patrick McHardy1a03b812007-09-18 13:19:26 -07003937M: kaber@trash.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07003938L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003939T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003941F: net/ipv4/
3942F: net/ipv6/
3943F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
James Morris10e2ff12007-08-25 14:41:28 -07003945NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
3946P: Paul Moore
3947M: paul.moore@hp.com
3948L: netdev@vger.kernel.org
3949S: Maintained
3950
John W. Linville29f8f632006-01-18 14:52:48 -08003951NETWORKING [WIRELESS]
3952P: John W. Linville
3953M: linville@tuxdriver.com
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003954L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003955T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003957F: net/wireless/
3958F: include/net/ieee80211*
3959F: include/net/wireless.h
John W. Linville29f8f632006-01-18 14:52:48 -08003960
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003961NETXEN (1/10) GbE SUPPORT
dhananjay@netxen.comd230ce32007-12-26 10:23:53 -08003962P: Dhananjay Phadke
3963M: dhananjay@netxen.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003964L: netdev@vger.kernel.org
3965W: http://www.netxen.com
3966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003967F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003968
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003969NFS, SUNRPC, AND LOCKD CLIENTS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970P: Trond Myklebust
Trond Myklebust78f58152007-12-12 20:16:06 -05003971M: Trond.Myklebust@netapp.com
3972L: linux-nfs@vger.kernel.org
3973W: http://client.linux-nfs.org
3974T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: fs/lockd/
3977F: fs/nfs/
3978F: fs/nfs_common/
3979F: net/sunrpc/
3980F: include/linux/lockd/
3981F: include/linux/nfs*
3982F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
3984NI5010 NETWORK DRIVER
Andreas Mohr5b552b12006-06-30 02:25:07 -07003985P: Jan-Pascal van Best
3986M: janpascal@vanbest.org
3987P: Andreas Mohr
3988M: andi@lisas.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07003989L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003991F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003993NILFS2 FILESYSTEM
3994P: KONISHI Ryusuke
3995M: konishi.ryusuke@lab.ntt.co.jp
3996L: users@nilfs.org
3997W: http://www.nilfs.org/en/
3998S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003999F: Documentation/filesystems/nilfs2.txt
4000F: fs/nilfs2/
4001F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004002
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
4004P: YOKOTA Hiroshi
4005M: yokota@netlab.is.tsukuba.ac.jp
4006W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4007S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004008F: Documentation/scsi/NinjaSCSI.txt
4009F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010
4011NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
4012P: GOTO Masanori
4013M: gotom@debian.or.jp
4014P: YOKOTA Hiroshi
4015M: yokota@netlab.is.tsukuba.ac.jp
4016W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4017S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004018F: Documentation/scsi/NinjaSCSI.txt
4019F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021NTFS FILESYSTEM
4022P: Anton Altaparmakov
4023M: aia21@cantab.net
4024L: linux-ntfs-dev@lists.sourceforge.net
4025L: linux-kernel@vger.kernel.org
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004026W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004027T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004029F: Documentation/filesystems/ntfs.txt
4030F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004032NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004033P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004034M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004035L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004037F: drivers/video/riva/
4038F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Bob Copeland0ad122d2008-07-25 19:45:18 -07004040OMFS FILESYSTEM
4041P: Bob Copeland
4042M: me@bobcopeland.com
4043L: linux-karma-devel@lists.sourceforge.net
4044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004045F: Documentation/filesystems/omfs.txt
4046F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004047
Harald Weltec1986ee2005-11-13 16:06:29 -08004048OMNIKEY CARDMAN 4000 DRIVER
4049P: Harald Welte
4050M: laforge@gnumonks.org
4051S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004052F: drivers/char/pcmcia/cm4000_cs.c
4053F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004054
Harald Welte77c44ab2005-11-13 16:06:26 -08004055OMNIKEY CARDMAN 4040 DRIVER
4056P: Harald Welte
4057M: laforge@gnumonks.org
4058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004060
Jonathan Corbet77d51402007-03-22 19:44:17 -03004061OMNIVISION OV7670 SENSOR DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02004062P: Jonathan Corbet
Jonathan Corbet77d51402007-03-22 19:44:17 -03004063M: corbet@lwn.net
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004064L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004065T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004067F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004068
Thomas Gleixner431bca72007-05-02 09:31:35 +02004069ONENAND FLASH DRIVER
4070P: Kyungmin Park
4071M: kyungmin.park@samsung.com
4072L: linux-mtd@lists.infradead.org
4073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004074F: drivers/mtd/onenand/
4075F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004076
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077ONSTREAM SCSI TAPE DRIVER
4078P: Willem Riede
4079M: osst@riede.org
4080L: osst-users@lists.sourceforge.net
4081L: linux-scsi@vger.kernel.org
4082S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004083F: drivers/scsi/osst*
4084F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004086OPENCORES I2C BUS DRIVER
4087P: Peter Korsgaard
4088M: jacmet@sunsite.dk
Jean Delvare846557d2008-10-30 15:55:47 +01004089L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004091F: Documentation/i2c/busses/i2c-ocores
4092F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094OPROFILE
Robert Richterd1a5d192008-07-12 13:47:57 -07004095P: Robert Richter
4096M: robert.richter@amd.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097L: oprofile-list@lists.sf.net
4098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004099F: arch/*/oprofile/
4100F: drivers/oprofile/
4101F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004103ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
4104P: Mark Fasheh
4105M: mfasheh@suse.com
4106P: Joel Becker
4107M: joel.becker@oracle.com
4108L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4109W: http://oss.oracle.com/projects/ocfs2/
4110T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2.git
4111S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004112F: Documentation/filesystems/ocfs2.txt
4113F: Documentation/filesystems/dlmfs.txt
4114F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004115
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116ORINOCO DRIVER
4117P: Pavel Roskin
4118M: proski@gnu.org
4119P: David Gibson
4120M: hermes@gibson.dropbear.id.au
Johannes Berg724c6b32007-04-23 12:18:20 -07004121L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004122L: orinoco-users@lists.sourceforge.net
4123L: orinoco-devel@lists.sourceforge.net
4124W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004126F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Boaz Harrosh68274792009-01-25 17:24:14 +02004128OSD LIBRARY
4129P: Boaz Harrosh
4130M: bharrosh@panasas.com
4131P: Benny Halevy
4132M: bhalevy@panasas.com
4133L: osd-dev@open-osd.org
4134W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004135T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004136S: Maintained
4137
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004138P54 WIRELESS DRIVER
4139P: Michael Wu
4140M: flamingice@sourmilk.net
4141L: linux-wireless@vger.kernel.org
4142W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004143T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004145F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004146
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004147PA SEMI ETHERNET DRIVER
4148P: Olof Johansson
4149M: olof@lixom.net
4150L: netdev@vger.kernel.org
4151S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004152F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004153
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004154PA SEMI SMBUS DRIVER
4155P: Olof Johansson
4156M: olof@lixom.net
Jean Delvare846557d2008-10-30 15:55:47 +01004157L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004159F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004160
Harald Welte709ee532008-09-23 17:46:57 +02004161PANASONIC LAPTOP ACPI EXTRAS DRIVER
4162P: Harald Welte
4163M: laforge@gnumonks.org
4164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004165F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004166
David Howells4fa97182008-10-13 10:42:44 +01004167PANASONIC MN10300/AM33 PORT
4168P: David Howells
4169M: dhowells@redhat.com
4170P: Koichi Yasutake
4171M: yasutake.koichi@jp.panasonic.com
4172L: linux-am33-list@redhat.com (moderated for non-subscribers)
4173W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4174S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004175F: Documentation/mn10300/
4176F: arch/mn10300/
4177F: include/asm-mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004180L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004181S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004182F: drivers/parport/
4183F: include/linux/parport*.h
4184F: drivers/char/ppdev.c
4185F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004187PARAVIRT_OPS INTERFACE
4188P: Jeremy Fitzhardinge
4189M: jeremy@xensource.com
4190P: Chris Wright
4191M: chrisw@sous-sol.org
Zachary Amsden8cbb5bc2009-02-20 11:27:46 -08004192P: Alok Kataria
4193M: akataria@vmware.com
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004194P: Rusty Russell
4195M: rusty@rustcorp.com.au
4196L: virtualization@lists.osdl.org
4197L: linux-kernel@vger.kernel.org
4198S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004199F: Documentation/ia64/paravirt_ops.txt
4200F: arch/*/kernel/paravirt*
4201F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004202
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
4204P: Tim Waugh
4205M: tim@cyberelk.net
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004206L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207W: http://www.torque.net/linux-pp.html
4208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004209F: Documentation/blockdev/paride.txt
4210F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
4212PARISC ARCHITECTURE
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004213P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04004214M: kyle@mcmartin.ca
Grant Grundler763461192008-12-01 00:21:35 -07004215P: Helge Deller
4216M: deller@gmx.de
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004217L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004219T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004221F: arch/parisc/
4222F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223
Jim Cromie1662d322006-10-06 00:43:59 -07004224PC87360 HARDWARE MONITORING DRIVER
4225P: Jim Cromie
4226M: jim.cromie@gmail.com
4227L: lm-sensors@lm-sensors.org
4228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004229F: Documentation/hwmon/pc87360
4230F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004231
4232PC8736x GPIO DRIVER
4233P: Jim Cromie
4234M: jim.cromie@gmail.com
4235S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004236F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004237
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004238PCA9532 LED DRIVER
4239P: Riku Voipio
4240M: riku.voipio@iki.fi
4241S: Maintained
4242
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004243PCI ERROR RECOVERY
4244P: Linas Vepstas
4245M: linas@austin.ibm.com
4246L: linux-kernel@vger.kernel.org
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004247L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004249F: Documentation/PCI/pci-error-recovery.txt
4250F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252PCI SUBSYSTEM
Greg Kroah-Hartmanaf40b482008-04-17 10:22:27 -07004253P: Jesse Barnes
4254M: jbarnes@virtuousgeek.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255L: linux-kernel@vger.kernel.org
Jesse Barnes29054742008-05-03 08:35:49 -07004256L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004257T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004259F: Documentation/PCI/
4260F: drivers/pci/
4261F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004263PCIE HOTPLUG DRIVER
4264P: Kristen Carlson Accardi
4265M: kristen.c.accardi@intel.com
Jesse Barnes64dab202008-06-10 14:20:03 -07004266L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004268F: drivers/pci/pcie/
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004271P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004272L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004273W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004274T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004275S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004276F: Documentation/pcmcia/
4277F: drivers/pcmcia/
4278F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
4280PCNET32 NETWORK DRIVER
pcnet32@verizon.net04ce0942007-02-16 10:07:12 -06004281P: Don Fry
4282M: pcnet32@verizon.net
Ralf Baechle979b6c12005-06-13 14:30:40 -07004283L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004285F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004287PER-TASK DELAY ACCOUNTING
Balbir Singhabc5f232008-07-04 09:59:42 -07004288P: Balbir Singh
4289M: balbir@linux.vnet.ibm.com
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004290L: linux-kernel@vger.kernel.org
4291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004292F: include/linux/delayacct.h
4293F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004294
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004295PERSONALITY HANDLING
4296P: Christoph Hellwig
4297M: hch@infradead.org
4298L: linux-abi-devel@lists.sourceforge.net
4299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004300F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004301
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302PHRAM MTD DRIVER
Joern Engel2b54aae2008-02-06 01:38:02 -08004303P: Joern Engel
4304M: joern@lazybastard.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305L: linux-mtd@lists.infradead.org
4306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Peter Osterlund249a6772005-09-27 21:45:30 -07004309PKTCDVD DRIVER
4310P: Peter Osterlund
4311M: petero2@telia.com
4312L: linux-kernel@vger.kernel.org
Peter Osterlund249a6772005-09-27 21:45:30 -07004313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004314F: drivers/block/pktcdvd.c
4315F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004316
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317POSIX CLOCKS and TIMERS
Ingo Molnaraa781ae2007-07-19 01:48:32 -07004318P: Thomas Gleixner
4319M: tglx@linutronix.de
Hormsf1c3ddf2006-01-15 02:18:28 +01004320L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004322F: fs/timerfd.c
4323F: include/linux/timer*
4324F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Anton Vorontsov3be86142007-07-15 04:43:36 +04004326POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
4327P: Anton Vorontsov
4328M: cbou@mail.ru
4329P: David Woodhouse
4330M: dwmw2@infradead.org
4331L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004332T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004334F: include/linux/power_supply.h
4335F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337PNP SUPPORT
4338P: Adam Belay
Bjorn Helgaas2d59f6a2008-08-01 10:01:12 -06004339M: abelay@mit.edu
4340P: Bjorn Helgaas
4341M: bjorn.helgaas@hp.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Vitaly Wool999445d2007-01-04 13:07:03 +01004345PNXxxxx I2C DRIVER
4346P: Vitaly Wool
4347M: vitalywool@gmail.com
Jean Delvare846557d2008-10-30 15:55:47 +01004348L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004349S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004350F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352PPP PROTOCOL DRIVERS AND COMPRESSORS
4353P: Paul Mackerras
4354M: paulus@samba.org
4355L: linux-ppp@vger.kernel.org
4356S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004357F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358
4359PPP OVER ATM (RFC 2364)
4360P: Mitchell Blank Jr
4361M: mitch@sfgoth.com
4362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004363F: net/atm/pppoatm.c
4364F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366PPP OVER ETHERNET
4367P: Michal Ostrowski
Chris Wright5e70b7f32008-06-09 16:07:28 -07004368M: mostrows@earthlink.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004370F: drivers/net/pppoe.c
4371F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
James Chapmana6d23702007-06-27 15:53:17 -07004373PPP OVER L2TP
4374P: James Chapman
4375M: jchapman@katalix.com
4376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004377F: drivers/net/pppol2tp.c
4378F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004379
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380PREEMPTIBLE KERNEL
4381P: Robert Love
4382M: rml@tech9.net
4383L: linux-kernel@vger.kernel.org
4384L: kpreempt-tech@lists.sourceforge.net
4385W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4386S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004387F: Documentation/preempt-locking.txt
4388F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390PRISM54 WIRELESS DRIVER
Luis R. Rodrigueze88b34b2007-06-01 00:46:57 -07004391P: Luis R. Rodriguez
4392M: mcgrof@gmail.com
Johannes Berg724c6b32007-04-23 12:18:20 -07004393L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394W: http://prism54.org
4395S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004396F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
4399P: Peter Denison
4400M: promise@pnd-pc.demon.co.uk
4401W: http://www.pnd-pc.demon.co.uk/promise/
4402S: Maintained
4403
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004404PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
4405P: Mikael Pettersson
4406M: mikpe@it.uu.se
4407L: linux-ide@vger.kernel.org
4408S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004409F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004410
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004411PS3 NETWORK SUPPORT
4412P: Masakazu Mokuno
4413M: mokuno@sm.sony.co.jp
4414L: netdev@vger.kernel.org
4415L: cbe-oss-dev@ozlabs.org
4416S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004417F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004418
Geoff Levandf58a9d12006-11-23 00:46:51 +01004419PS3 PLATFORM SUPPORT
4420P: Geoff Levand
4421M: geoffrey.levand@am.sony.com
4422L: linuxppc-dev@ozlabs.org
4423L: cbe-oss-dev@ozlabs.org
4424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004425F: arch/powerpc/boot/ps3*
4426F: arch/powerpc/include/asm/lv1call.h
4427F: arch/powerpc/include/asm/ps3*.h
4428F: arch/powerpc/platforms/ps3/
4429F: drivers/*/ps3*
4430F: drivers/ps3/
4431F: drivers/usb/host/*ps3.c
Geoff Levandf58a9d12006-11-23 00:46:51 +01004432
Jim Pariscffb4add2009-01-06 11:32:10 +00004433PS3VRAM DRIVER
4434P: Jim Paris
4435M: jim@jtan.com
4436L: cbe-oss-dev@ozlabs.org
4437S: Maintained
4438
Michael Krufky83202042006-07-03 00:24:18 -07004439PVRUSB2 VIDEO4LINUX DRIVER
4440P: Mike Isely
4441M: isely@pobox.com
Mike Isely16e94952007-01-03 18:08:06 -03004442L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004443L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004444W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004445T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004447F: Documentation/video4linux/README.pvrusb2
4448F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004449
Eric Miao30ec2612008-06-12 15:21:41 -07004450PXA2xx/PXA3xx SUPPORT
4451P: Eric Miao
4452M: eric.miao@marvell.com
4453P: Russell King
4454M: linux@arm.linux.org.uk
Alexey Dobriyan70f09f12005-06-23 00:09:47 -07004455L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004457F: arch/arm/mach-pxa/
4458F: drivers/pcmcia/pxa2xx*
4459F: drivers/spi/pxa2xx*
4460F: drivers/usb/gadget/pxa2*
4461F: include/sound/pxa2xx-lib.h
4462F: sound/soc/pxa/pxa2xx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004464PXA168 SUPPORT
4465P: Eric Miao
4466M: eric.miao@marvell.com
4467P: Jason Chagas
4468M: jason.chagas@marvell.com
4469L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004470T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004471S: Supported
4472
Eric Miao5fa82eb2009-03-20 12:52:24 +08004473PXA910 SUPPORT
4474P: Eric Miao
4475M: eric.miao@marvell.com
4476L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
Joe Perches54e58812009-04-07 21:08:10 -07004477T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao5fa82eb2009-03-20 12:52:24 +08004478S: Supported
4479
Pierre Ossman272f1332007-05-14 21:25:26 +02004480PXA MMCI DRIVER
4481S: Orphan
4482
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004483PXA RTC DRIVER
4484P: Robert Jarzmik
4485M: robert.jarzmik@free.fr
4486L: rtc-linux@googlegroups.com
4487S: Maintained
4488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489QLOGIC QLA2XXX FC-SCSI DRIVER
4490P: Andrew Vasquez
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004491M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492L: linux-scsi@vger.kernel.org
4493S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004494F: Documentation/scsi/LICENSE.qla2xxx
4495F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496
Ron Mercer5a4faa872006-07-25 00:40:21 -07004497QLOGIC QLA3XXX NETWORK DRIVER
4498P: Ron Mercer
4499M: linux-driver@qlogic.com
4500L: netdev@vger.kernel.org
4501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004502F: Documentation/networking/LICENSE.qla3xxx
4503F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004504
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004505QLOGIC QLGE 10Gb ETHERNET DRIVER
4506P: Ron Mercer
4507M: linux-driver@qlogic.com
4508M: ron.mercer@qlogic.com
4509L: netdev@vger.kernel.org
4510S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004511F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004512
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513QNX4 FILESYSTEM
4514P: Anders Larsen
4515M: al@alarsen.net
4516L: linux-kernel@vger.kernel.org
4517W: http://www.alarsen.net/linux/qnx4fs/
4518S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004519F: fs/qnx4
4520F: include/linux/qnx4_fs.h
4521F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523RADEON FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004524P: Benjamin Herrenschmidt
4525M: benh@kernel.crashing.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004526L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004528F: drivers/video/aty/radeon*
4529F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531RAGE128 FRAMEBUFFER DISPLAY DRIVER
Benjamin Herrenschmidt187a2782005-04-16 15:26:40 -07004532P: Paul Mackerras
4533M: paulus@samba.org
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004534L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004536F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
Randy Dunlape7839f22008-10-12 16:11:45 -07004538RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004539P: rt2x00 project
4540L: linux-wireless@vger.kernel.org
Ivo van Doorn6d5eaaf2009-03-17 11:29:19 +01004541L: users@rt2x00.serialmonkey.com
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004542W: http://rt2x00.serialmonkey.com/
4543S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004544T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004545F: drivers/net/wireless/rt2x00/
4546
Nick Piggin9db55792008-02-08 04:19:49 -08004547RAMDISK RAM BLOCK DEVICE DRIVER
4548P: Nick Piggin
4549M: npiggin@suse.de
4550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004551F: Documentation/blockdev/ramdisk.txt
4552F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004553
Matt Mackall9e95ce22005-04-16 15:25:56 -07004554RANDOM NUMBER DRIVER
4555P: Matt Mackall
4556M: mpm@selenic.com
4557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004558F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004559
Matt Porter394b7012005-11-07 01:00:15 -08004560RAPIDIO SUBSYSTEM
4561P: Matt Porter
4562M: mporter@kernel.crashing.org
4563L: linux-kernel@vger.kernel.org
4564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004565F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004566
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004567RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
4568P: Corey Thomas
4569M: coreythomas@charter.net
4570L: linux-wireless@vger.kernel.org
4571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004572F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004573
4574RCUTORTURE MODULE
4575P: Josh Triplett
4576M: josh@freedesktop.org
4577L: linux-kernel@vger.kernel.org
4578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004579F: Documentation/RCU/torture.txt
4580F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004581
Florian Fainellic1f766b2008-02-06 22:39:44 +01004582RDC R-321X SoC
4583P: Florian Fainelli
4584M: florian.fainelli@telecomint.eu
4585L: linux-kernel@vger.kernel.org
4586S: Maintained
4587
Florian Fainellidb17f392007-12-19 11:30:30 +01004588RDC R6040 FAST ETHERNET DRIVER
4589P: Florian Fainelli
4590M: florian.fainelli@telecomint.eu
4591L: netdev@vger.kernel.org
4592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004593F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004594
Andy Grovera09ed662009-02-24 15:30:41 +00004595RDS - RELIABLE DATAGRAM SOCKETS
4596P: Andy Grover
4597M: andy.grover@oracle.com
4598L: rds-devel@oss.oracle.com
4599S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004600F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004601
Josh Triplett595182b2006-10-04 02:17:21 -07004602READ-COPY UPDATE (RCU)
4603P: Dipankar Sarma
4604M: dipankar@in.ibm.com
4605W: http://www.rdrop.com/users/paulmck/rclock/
4606L: linux-kernel@vger.kernel.org
4607S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004608F: Documentation/RCU/rcu.txt
4609F: Documentation/RCU/rcuref.txt
4610F: include/linux/rcupdate.h
4611F: include/linux/srcu.h
4612F: kernel/rcupdate.c
Josh Triplett595182b2006-10-04 02:17:21 -07004613
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614REAL TIME CLOCK DRIVER
4615P: Paul Gortmaker
4616M: p_gortmaker@yahoo.com
4617L: linux-kernel@vger.kernel.org
4618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004619F: Documentation/rtc.txt
4620F: drivers/rtc/
4621F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004623REAL TIME CLOCK (RTC) SUBSYSTEM
4624P: Alessandro Zummo
4625M: a.zummo@towertech.it
Alessandro Zummo76465492006-12-10 02:19:06 -08004626L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004628F: Documentation/rtc.txt
4629F: drivers/rtc/
4630F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004631
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004633L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004635F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
Ivo van Doorne08976452008-04-12 19:23:55 +02004637RFKILL
4638P: Ivo van Doorn
4639M: IvDoorn@gmail.com
4640L: netdev@vger.kernel.org
4641S: Maintained
4642F: net/rfkill
4643
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004644RISCOM8 DRIVER
4645S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004646F: Documentation/serial/riscom8.txt
4647F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004648
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649ROCKETPORT DRIVER
4650P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651W: http://www.comtrol.com
4652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004653F: Documentation/serial/rocket.txt
4654F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
4656ROSE NETWORK LAYER
4657P: Ralf Baechle
4658M: ralf@linux-mips.org
4659L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004660W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004662F: include/linux/rose.h
4663F: include/net/rose.h
4664F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Larry Finger59840482008-11-12 17:13:09 -06004666RTL8180 WIRELESS DRIVER
John W. Linville96dd6032008-11-12 14:51:56 -05004667P: John W. Linville
4668M: linville@tuxdriver.com
Michael Wu605bebe2007-05-14 01:41:02 -04004669L: linux-wireless@vger.kernel.org
4670W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004671T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004673F: drivers/net/wireless/rtl818*
Michael Wu605bebe2007-05-14 01:41:02 -04004674
Larry Finger59840482008-11-12 17:13:09 -06004675RTL8187 WIRELESS DRIVER
Joe Perches7d2c86b2009-04-07 20:59:01 -07004676P: Herton Ronaldo Krzesinski
4677M: herton@mandriva.com.br
4678P: Hin-Tak Leung
4679M: htl10@users.sourceforge.net
4680P: Larry Finger
4681M: Larry.Finger@lwfinger.net
4682L: linux-wireless@vger.kernel.org
4683W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004684T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004686F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004687
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004688S3 SAVAGE FRAMEBUFFER DRIVER
Jim Cromiece00f852006-11-30 04:49:44 +01004689P: Antonino Daplas
Antonino A. Daplas0478e622007-02-28 20:12:37 -08004690M: adaplas@gmail.com
Geert Uytterhoeven8936b6d2008-02-23 15:23:30 -08004691L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
Jim Cromiece00f852006-11-30 04:49:44 +01004692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004693F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695S390
4696P: Martin Schwidefsky
4697M: schwidefsky@de.ibm.com
Martin Schwidefsky83014252006-09-20 15:58:58 +02004698P: Heiko Carstens
4699M: heiko.carstens@de.ibm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004701L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004702W: http://www.ibm.com/developerworks/linux/linux390/
4703S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004704F: arch/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004705
4706S390 NETWORK DRIVERS
Ursula Braundd96df22007-09-19 13:09:02 +02004707P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004708M: ursula.braun@de.ibm.com
Ursula Braunb9192ad2007-10-22 16:16:15 +02004709P: Frank Blaschka
4710M: blaschka@linux.vnet.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004711M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004712L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004713W: http://www.ibm.com/developerworks/linux/linux390/
4714S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004715F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004716
Felix Beckfeed9b62009-03-26 15:24:23 +01004717S390 ZCRYPT DRIVER
4718P: Felix Beck
4719M: felix.beck@de.ibm.com
4720P: Ralph Wuerthner
4721M: ralph.wuerthner@de.ibm.com
4722M: linux390@de.ibm.com
4723L: linux-s390@vger.kernel.org
4724S: Supported
4725
Heiko Carstens5238da42006-02-11 17:56:01 -08004726S390 ZFCP DRIVER
Swen Schillig0033bb42007-12-18 11:16:14 +01004727P: Christof Schmitt
4728M: christof.schmitt@de.ibm.com
4729P: Martin Peschke
4730M: mp3@de.ibm.com
Heiko Carstens5238da42006-02-11 17:56:01 -08004731M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004732L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004733W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004735F: Documentation/s390/zfcpdump.txt
4736F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737
Ursula Braundd96df22007-09-19 13:09:02 +02004738S390 IUCV NETWORK LAYER
4739P: Ursula Braun
Ursula Braun23fcc8d2008-07-18 15:24:58 +02004740M: ursula.braun@de.ibm.com
Ursula Braundd96df22007-09-19 13:09:02 +02004741M: linux390@de.ibm.com
4742L: linux-s390@vger.kernel.org
4743W: http://www.ibm.com/developerworks/linux/linux390/
4744S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004745F: drivers/s390/net/*iucv*
4746F: include/net/iucv/
4747F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004748
Ben Dooks4dde7f72008-06-30 22:40:38 +01004749S3C24XX SD/MMC Driver
4750P: Ben Dooks
4751M: ben-linux@fluff.org
4752L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4753L: linux-kernel@vger.kernel.org
4754S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004755F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004756
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757SAA7146 VIDEO4LINUX-2 DRIVER
4758P: Michael Hunold
4759M: michael@mihu.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004760L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004761T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762W: http://www.mihu.de/linux/saa7146
4763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004764F: drivers/media/common/saa7146*
4765F: drivers/media/video/*7146*
4766F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768SC1200 WDT DRIVER
4769P: Zwane Mwaikambo
Zwane Mwaikambo3c7bf1e2005-08-18 11:24:07 -07004770M: zwane@arm.linux.org.uk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004772F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
4774SCHEDULER
4775P: Ingo Molnar
4776M: mingo@elte.hu
Ingo Molnar01fad982009-04-08 17:27:59 +02004777P: Peter Zijlstra
4778M: peterz@infradead.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779L: linux-kernel@vger.kernel.org
4780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: kernel/sched*
4782F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
4784SCSI CDROM DRIVER
4785P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02004786M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787L: linux-scsi@vger.kernel.org
4788W: http://www.kernel.dk
4789S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004790F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
4792SCSI SG DRIVER
4793P: Doug Gilbert
4794M: dgilbert@interlog.com
4795L: linux-scsi@vger.kernel.org
4796W: http://www.torque.net/sg
4797S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004798F: drivers/scsi/sg.c
4799F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801SCSI SUBSYSTEM
4802P: James E.J. Bottomley
James Bottomleyc4e16082007-11-03 08:40:30 -05004803M: James.Bottomley@HansenPartnership.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004805T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4806T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4807T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004809F: drivers/scsi/
4810F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811
4812SCSI TAPE DRIVER
John Anthony Kazos Jrdd4ef012007-05-09 08:06:37 +02004813P: Kai Mäkisara
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814M: Kai.Makisara@kolumbus.fi
4815L: linux-scsi@vger.kernel.org
4816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004817F: Documentation/scsi/st.txt
4818F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820SCTP PROTOCOL
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004821P: Vlad Yasevich
4822M: vladislav.yasevich@hp.com
Jim Cromiece00f852006-11-30 04:49:44 +01004823P: Sridhar Samudrala
4824M: sri@us.ibm.com
Vlad Yasevich1a418792008-04-12 18:55:42 -07004825L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004826W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004828F: Documentation/networking/sctp.txt
4829F: include/linux/sctp.h
4830F: include/net/sctp/
4831F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
4833SCx200 CPU SUPPORT
Jim Cromie1662d322006-10-06 00:43:59 -07004834P: Jim Cromie
4835M: jim.cromie@gmail.com
4836S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004837F: Documentation/i2c/busses/scx200_acb
4838F: arch/x86/kernel/scx200_32.c
4839F: drivers/watchdog/scx200_wdt.c
4840F: drivers/i2c/busses/scx200*
4841F: drivers/mtd/maps/scx200_docflash.c
4842F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004843
4844SCx200 GPIO DRIVER
4845P: Jim Cromie
4846M: jim.cromie@gmail.com
4847S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004848F: drivers/char/scx200_gpio.c
4849F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004850
4851SCx200 HRT CLOCKSOURCE DRIVER
4852P: Jim Cromie
4853M: jim.cromie@gmail.com
4854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004855F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Sascha Sommer6a369132008-07-15 14:21:29 +02004857SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
4858P: Sascha Sommer
4859M: saschasommer@freenet.de
4860L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004862F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004863
Randy Dunlape7839f22008-10-12 16:11:45 -07004864SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004865P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02004866M: pierre@ossman.eu
Pierre Ossmanb8e20062009-03-14 21:17:32 +01004867L: sdhci-devel@lists.ossman.eu
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004868S: Maintained
4869
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004870SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
4871P: Anton Vorontsov
4872M: avorontsov@ru.mvista.com
4873L: linuxppc-dev@ozlabs.org
4874L: sdhci-devel@lists.ossman.eu
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004876F: drivers/mmc/host/sdhci.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
James Morris8711cca2008-12-04 03:19:45 +11004878SECURITY SUBSYSTEM
James Morris8711cca2008-12-04 03:19:45 +11004879P: James Morris
4880M: jmorris@namei.org
4881L: linux-kernel@vger.kernel.org
4882L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perches54e58812009-04-07 21:08:10 -07004883T: git git://www.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004884W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004885S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004886F: security/
James Morris8711cca2008-12-04 03:19:45 +11004887
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888SECURITY CONTACT
4889P: Security Officers
4890M: security@kernel.org
4891S: Supported
4892
4893SELINUX SECURITY MODULE
4894P: Stephen Smalley
4895M: sds@tycho.nsa.gov
4896P: James Morris
4897M: jmorris@namei.org
Stephen Smalley588a3152007-02-23 09:20:09 -05004898P: Eric Paris
4899M: eparis@parisplace.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900L: linux-kernel@vger.kernel.org (kernel issues)
Joe Perches7d2c86b2009-04-07 20:59:01 -07004901L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004902W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004903T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004905F: include/linux/selinux*
4906F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
Jiri Slabycef2cf02007-05-08 00:31:45 -07004908SENSABLE PHANTOM
4909P: Jiri Slaby
4910M: jirislaby@gmail.com
4911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004912F: drivers/misc/phantom.c
4913F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004914
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004915SERIAL ATA (SATA) SUBSYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916P: Jeff Garzik
4917M: jgarzik@pobox.com
4918L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004919T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920S: Supported
4921
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004922SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
4923P: Sathya Perla
4924M: sathyap@serverengines.com
Joe Perches7d2c86b2009-04-07 20:59:01 -07004925P: Subbu Seetharaman
4926M: subbus@serverengines.com
4927L: netdev@vger.kernel.org
4928W: http://www.serverengines.com
4929S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004930F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004931
Ben Hutchings8ceee662008-04-27 12:55:59 +01004932SFC NETWORK DRIVER
4933P: Steve Hodgson
4934P: Ben Hutchings
4935P: Robert Stonehouse
4936M: linux-net-drivers@solarflare.com
4937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004938F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004939
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004940SGI GRU DRIVER
4941P: Jack Steiner
4942M: steiner@sgi.com
4943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004944F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004945
4946SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
4947P: Pat Gefre
4948M: pfg@sgi.com
4949L: linux-ia64@vger.kernel.org
4950S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004951F: Documentation/ia64/serial.txt
4952F: drivers/serial/ioc?_serial.c
4953F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004954
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955SGI VISUAL WORKSTATION 320 AND 540
4956P: Andrey Panin
4957M: pazke@donpac.ru
4958L: linux-visws-devel@lists.sf.net
4959W: http://linux-visws.sf.net
4960S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004961F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
Jack Steiner75312612008-08-15 00:40:42 -07004963SGI XP/XPC/XPNET DRIVER
4964P: Dean Nelson
4965M: dcn@sgi.com
4966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004967F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004968
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004969SHARP LH SUPPORT (LH7952X & LH7A40X)
4970P: Marc Singer
4971M: elf@buici.com
4972W: http://projects.buici.com/arm
4973L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
4974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004975F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4976F: arch/arm/mach-lh7a40x/
4977F: drivers/serial/serial_lh7a40x.c
4978F: drivers/usb/gadget/lh7a40*
4979F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004980
4981SHPC HOTPLUG DRIVER
4982P: Kristen Carlson Accardi
4983M: kristen.c.accardi@intel.com
4984L: linux-pci@vger.kernel.org
4985S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004986F: drivers/pci/hotplug/shpchp*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004987
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988SIMTEC EB110ATX (Chalice CATS)
4989P: Ben Dooks
4990P: Vincent Sanders
4991M: support@simtec.co.uk
4992W: http://www.simtec.co.uk/products/EB110ATX/
4993S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004994F: arch/arm/mach-ebsa110/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
4996SIMTEC EB2410ITX (BAST)
4997P: Ben Dooks
4998P: Vincent Sanders
4999M: support@simtec.co.uk
5000W: http://www.simtec.co.uk/products/EB2410ITX/
5001S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005002F: arch/arm/mach-s3c2410/
5003F: drivers/*/*s3c2410*
5004F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
Francois Romieu92aab3c2005-07-30 13:11:18 +02005006SIS 190 ETHERNET DRIVER
5007P: Francois Romieu
5008M: romieu@fr.zoreil.com
5009L: netdev@vger.kernel.org
5010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005011F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013SIS 900/7016 FAST ETHERNET DRIVER
5014P: Daniele Venzano
5015M: venza@brownhat.org
5016W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005017L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005019F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005021SIS 96X I2C/SMBUS DRIVER
5022P: Mark M. Hoffman
5023M: mhoffman@lightlink.com
Jean Delvare846557d2008-10-30 15:55:47 +01005024L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005026F: Documentation/i2c/busses/i2c-sis96x
5027F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005028
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029SIS FRAMEBUFFER DRIVER
5030P: Thomas Winischhofer
5031M: thomas@winischhofer.net
5032W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005033S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005034F: Documentation/fb/sisfb.txt
5035F: drivers/video/sis/
5036F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
5038SIS USB2VGA DRIVER
5039P: Thomas Winischhofer
5040M: thomas@winischhofer.net
5041W: http://www.winischhofer.at/linuxsisusbvga.shtml
5042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005043F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005045SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
5046P: Stephen Hemminger
5047M: shemminger@linux-foundation.org
5048L: netdev@vger.kernel.org
5049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005050F: drivers/net/skge.*
5051F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005052
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005053SLAB ALLOCATOR
5054P: Christoph Lameter
Christoph Lametercde53532008-07-04 09:59:22 -07005055M: cl@linux-foundation.org
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005056P: Pekka Enberg
5057M: penberg@cs.helsinki.fi
Pekka Enbergc76d1182008-02-11 23:52:47 +02005058P: Matt Mackall
5059M: mpm@selenic.com
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005060L: linux-mm@kvack.org
5061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: include/linux/sl?b*.h
5063F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005064
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065SMC91x ETHERNET DRIVER
5066P: Nicolas Pitre
5067M: nico@cam.org
5068S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005069F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005071SMSC47B397 HARDWARE MONITOR DRIVER
5072P: Mark M. Hoffman
5073M: mhoffman@lightlink.com
5074L: lm-sensors@lm-sensors.org
5075S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005076F: Documentation/hwmon/smsc47b397
5077F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005078
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005079SMSC911x ETHERNET DRIVER
5080P: Steve Glendinning
5081M: steve.glendinning@smsc.com
5082L: netdev@vger.kernel.org
5083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005084F: include/linux/smsc911x.h
5085F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005086
Steve Glendinning2cb37722008-12-11 20:54:30 -08005087SMSC9420 PCI ETHERNET DRIVER
5088P: Steve Glendinning
5089M: steve.glendinning@smsc.com
5090L: netdev@vger.kernel.org
5091S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005092F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005093
Ben Nizetteb54f2862008-03-13 22:27:30 +11005094SMX UIO Interface
5095P: Ben Nizette
5096M: bn@niasdigital.com
5097S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005098F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005099
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005100SN-IA64 (Itanium) SUB-PLATFORM
5101P: Jes Sorensen
5102M: jes@sgi.com
5103L: linux-altix@sgi.com
5104L: linux-ia64@vger.kernel.org
5105W: http://www.sgi.com/altix
5106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005107F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005108
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005109SOC-CAMERA V4L2 SUBSYSTEM
Jean Delvare795fb7e2008-09-20 12:33:08 +02005110P: Guennadi Liakhovetski
5111M: g.liakhovetski@gmx.de
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005112L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005113T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: include/media/v4l2*
5116F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005117
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005118SOEKRIS NET48XX LED SUPPORT
5119P: Chris Boot
5120M: bootc@bootc.net
5121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005122F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005123
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124SOFTWARE RAID (Multiple Disks) SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125P: Neil Brown
NeilBrown524418b2007-01-26 00:57:01 -08005126M: neilb@suse.de
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005129F: drivers/md/
5130F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132SONIC NETWORK DRIVER
5133P: Thomas Bogendoerfer
5134M: tsbogend@alpha.franken.de
Ralf Baechle979b6c12005-06-13 14:30:40 -07005135L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005137F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138
Michael Buesch61e115a2007-09-18 15:12:50 -04005139SONICS SILICON BACKPLANE DRIVER (SSB)
5140P: Michael Buesch
5141M: mb@bu3sch.de
5142L: netdev@vger.kernel.org
5143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005144F: drivers/ssb/
5145F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005146
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147SONY VAIO CONTROL DEVICE DRIVER
Mattia Dongili0d477fa2007-02-08 20:16:40 +01005148P: Mattia Dongili
5149M: malattia@linux.it
Mattia Dongili5b181672007-03-12 21:43:57 +01005150L: linux-acpi@vger.kernel.org
5151W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005153F: Documentation/laptops/sony-laptop.txt
5154F: drivers/char/sonypi.c
5155F: drivers/platform/x86/sony-laptop.c
5156F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Alex Dubovbaf85322008-02-09 10:20:54 -08005158SONY MEMORYSTICK CARD SUPPORT
5159P: Alex Dubov
5160M: oakad@yahoo.com
5161L: linux-kernel@vger.kernel.org
5162W: http://tifmxx.berlios.de/
5163S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005164F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005165
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166SOUND
5167P: Jaroslav Kysela
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005168M: perex@perex.cz
Takashi Iwai281712f2008-08-19 13:10:04 +02005169P: Takashi Iwai
5170M: tiwai@suse.de
Takashi Iwai82622042007-04-16 12:32:52 +02005171L: alsa-devel@alsa-project.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005173F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Mark Brownbd903bd2008-11-19 19:16:05 +00005175SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005176P: Liam Girdwood
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005177M: lrg@slimlogic.co.uk
Mark Brown2cad0ad2008-01-10 14:33:07 +01005178P: Mark Brown
5179M: broonie@opensource.wolfsonmicro.com
Joe Perches54e58812009-04-07 21:08:10 -07005180T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Takashi Iwai82622042007-04-16 12:32:52 +02005181L: alsa-devel@alsa-project.org (subscribers-only)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005182W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005183S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005184F: sound/soc/
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005185
Sam Ravnborg473321f2009-01-04 15:47:49 -08005186SPARC + UltraSPARC (sparc/sparc64)
5187P: David S. Miller
5188M: davem@davemloft.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005190T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5191T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005193F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194
5195SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
5196P: Roger Wolff
5197M: R.E.Wolff@BitWizard.nl
Joe Perches7d2c86b2009-04-07 20:59:01 -07005198L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005200F: Documentation/serial/specialix.txt
5201F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005203SPI SUBSYSTEM
5204P: David Brownell
5205M: dbrownell@users.sourceforge.net
5206L: spi-devel-general@lists.sourceforge.net
5207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005208F: Documentation/spi/
5209F: drivers/spi/
5210F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005211
Jim Lewis2752e402006-09-29 02:01:19 -07005212SPIDERNET NETWORK DRIVER for CELL
Jens Osterkampcb8da8a2008-01-11 13:44:35 +01005213P: Ishizaki Kou
5214M: kou.ishizaki@toshiba.co.jp
5215P: Jens Osterkamp
5216M: jens@de.ibm.com
Jim Lewis2752e402006-09-29 02:01:19 -07005217L: netdev@vger.kernel.org
5218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005219F: Documentation/networking/spider_net.txt
5220F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005221
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005222SPU FILE SYSTEM
5223P: Jeremy Kerr
5224M: jk@ozlabs.org
5225L: linuxppc-dev@ozlabs.org
5226L: cbe-oss-dev@ozlabs.org
5227W: http://www.ibm.com/developerworks/power/cell/
5228S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005229F: Documentation/filesystems/spufs.txt
5230F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005231
Phillip Lougherfc555842009-01-05 08:46:29 +00005232SQUASHFS FILE SYSTEM
5233P: Phillip Lougher
5234M: phillip@lougher.demon.co.uk
5235L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5236W: http://squashfs.org.uk
5237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005238F: Documentation/filesystems/squashfs.txt
5239F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005240
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241SRM (Alpha) environment access
5242P: Jan-Benedict Glaw
5243M: jbglaw@lug-owl.de
5244L: linux-kernel@vger.kernel.org
5245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005246F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247
Linus Torvalds26e9a392008-10-17 09:50:12 -07005248STABLE BRANCH
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005249P: Greg Kroah-Hartman
5250M: greg@kroah.com
5251P: Chris Wright
5252M: chrisw@sous-sol.org
5253L: stable@kernel.org
5254S: Maintained
5255
Linus Torvalds26e9a392008-10-17 09:50:12 -07005256STAGING SUBSYSTEM
5257P: Greg Kroah-Hartman
5258M: gregkh@suse.de
5259L: linux-kernel@vger.kernel.org
5260T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
5261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005262F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005263
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264STARFIRE/DURALAN NETWORK DRIVER
5265P: Ion Badulescu
5266M: ionut@cs.columbia.edu
5267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005268F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
5270STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
5271W: http://mosquitonet.Stanford.EDU/strip.html
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005272S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005273F: drivers/net/wireless/strip.c
5274F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
5276STRADIS MPEG-2 DECODER DRIVER
5277P: Nathan Laredo
5278M: laredo@gnu.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279W: http://www.stradis.com/
5280S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005281F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005283SUN3/3X
5284P: Sam Creasey
5285M: sammy@sammy.net
5286W: http://sammy.net/sun3/
5287S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005288F: arch/m68k/kernel/*sun3*
5289F: arch/m68k/sun3*/
5290F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005291
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005292SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293P: Paul Mundt
5294M: lethal@linux-sh.org
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005295L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005297T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005299F: arch/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005301SUSPEND TO RAM
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005302P: Len Brown
5303M: len.brown@intel.com
5304P: Pavel Machek
Pavel Machekef35ce22009-02-18 14:48:16 -08005305M: pavel@ucw.cz
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005306P: Rafael J. Wysocki
5307M: rjw@sisk.pl
5308L: linux-pm@lists.linux-foundation.org
5309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005310F: Documentation/power/
5311F: arch/x86/kernel/acpi/
5312F: drivers/base/power/
5313F: kernel/power/
5314F: include/linux/suspend.h
5315F: include/linux/freezer.h
5316F: include/linux/pm.h
5317F: include/asm-*/suspend.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
5319SVGA HANDLING
5320P: Martin Mares
5321M: mj@ucw.cz
5322L: linux-video@atrey.karlin.mff.cuni.cz
5323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005324F: Documentation/svga.txt
5325F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326
5327SYSV FILESYSTEM
5328P: Christoph Hellwig
5329M: hch@infradead.org
5330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005331F: Documentation/filesystems/sysv-fs.txt
5332F: fs/sysv/
5333F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334
Alan Cox4e688522008-04-30 00:52:11 -07005335TASKSTATS STATISTICS INTERFACE
Balbir Singhabc5f232008-07-04 09:59:42 -07005336P: Balbir Singh
5337M: balbir@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005338L: linux-kernel@vger.kernel.org
5339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: Documentation/accounting/taskstats*
5341F: include/linux/taskstats*
5342F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005343
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005344TC CLASSIFIER
5345P: Jamal Hadi Salim
5346M: hadi@cyberus.ca
5347L: netdev@vger.kernel.org
5348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005349F: include/linux/pkt_cls.h
5350F: include/net/pkt_cls.h
5351F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005352
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005353TCP LOW PRIORITY MODULE
5354P: Wong Hoi Sing, Edison
5355M: hswong3i@gmail.com
5356P: Hung Hing Lun, Mike
5357M: hlhung3i@gmail.com
5358W: http://tcp-lp-mod.sourceforge.net/
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005361
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005362TEHUTI ETHERNET DRIVER
5363P: Alexander Indenbaum
5364M: baum@tehutinetworks.net
5365P: Andy Gospodarek
5366M: andy@greyhouse.net
5367L: netdev@vger.kernel.org
5368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005369F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005370
Alan Cox4e688522008-04-30 00:52:11 -07005371Telecom Clock Driver for MCPL0010
5372P: Mark Gross
5373M: mark.gross@intel.com
5374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005375F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005376
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005377TENSILICA XTENSA PORT (xtensa)
Alan Cox4e688522008-04-30 00:52:11 -07005378P: Chris Zankel
5379M: chris@zankel.net
5380S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005381F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005382
5383THINKPAD ACPI EXTRAS DRIVER
5384P: Henrique de Moraes Holschuh
5385M: ibm-acpi@hmh.eng.br
5386L: ibm-acpi-devel@lists.sourceforge.net
5387W: http://ibm-acpi.sourceforge.net
5388W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005389T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005391F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005392
Alex Dubov4020f2d2006-10-04 02:15:37 -07005393TI FLASH MEDIA INTERFACE DRIVER
Jean Delvare795fb7e2008-09-20 12:33:08 +02005394P: Alex Dubov
5395M: oakad@yahoo.com
5396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005397F: drivers/misc/tifm*
5398F: drivers/mmc/host/tifm_sd.c
5399F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005400
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005401TI OMAP MMC INTERFACE DRIVER
5402P: Carlos Aguiar, Anderson Briglia and Syed Khasim
Dirk Behmeb6a7e4c2007-12-15 07:47:46 +01005403M: linux-omap@vger.kernel.org
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005404W: http://linux.omap.com
5405W: http://www.muru.com/linux/omap/
5406S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005407F: drivers/mmc/host/omap.c
Syed Khasim9f9c24f2007-05-16 01:07:22 +02005408
Michael Buesch844dd052006-06-26 00:24:59 -07005409TI OMAP RANDOM NUMBER GENERATOR SUPPORT
5410P: Deepak Saxena
5411M: dsaxena@plexity.net
5412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005413F: drivers/char/hw_random/omap-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07005414
Per Lidene86eaa32006-01-12 16:45:18 +01005415TIPC NETWORK LAYER
5416P: Per Liden
Per Liden7c2b2aa2006-01-14 12:42:21 +01005417M: per.liden@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005418P: Jon Maloy
Per Liden7c2b2aa2006-01-14 12:42:21 +01005419M: jon.maloy@ericsson.com
Per Lidene86eaa32006-01-12 16:45:18 +01005420P: Allan Stephens
Per Liden7c2b2aa2006-01-14 12:42:21 +01005421M: allan.stephens@windriver.com
Per Lidene86eaa32006-01-12 16:45:18 +01005422L: tipc-discussion@lists.sourceforge.net
5423W: http://tipc.sourceforge.net/
5424W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005425T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005427F: include/linux/tipc*.h
5428F: include/net/tipc/
5429F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431TLAN NETWORK DRIVER
5432P: Samuel Chessman
5433M: chessman@tux.org
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005434L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005435W: http://sourceforge.net/projects/tlan/
5436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005437F: Documentation/networking/tlan.txt
5438F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005440TOMOYO SECURITY MODULE
5441P: Kentaro Takeda
5442M: takedakn@nttdata.co.jp
5443P: Tetsuo Handa
5444M: penguin-kernel@I-love.SAKURA.ne.jp
5445L: linux-kernel@vger.kernel.org (kernel issues)
5446L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5447L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5448L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5449W: http://tomoyo.sourceforge.jp/
5450T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005452F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454TOSHIBA ACPI EXTRAS DRIVER
Johannes Berg15065532009-03-30 12:02:35 +02005455S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005456F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457
5458TOSHIBA SMM DRIVER
5459P: Jonathan Buzzard
5460M: jonathan@buzzard.org.uk
5461L: tlinux-users@tce.toshiba-dme.co.jp
5462W: http://www.buzzard.org.uk/toshiba/
5463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005464F: drivers/char/toshiba.c
5465F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466
Pierre Ossmand719f902009-03-24 21:06:09 +01005467TMIO MMC DRIVER
5468P: Ian Molton
5469M: ian@mnementh.co.uk
5470S: Maintained
5471
Alan Cox4e688522008-04-30 00:52:11 -07005472TPM DEVICE DRIVER
Rajiv Andrade141c0242008-07-21 14:21:37 -07005473P: Debora Velarde
5474M: debora@linux.vnet.ibm.com
5475P: Rajiv Andrade
5476M: srajiv@linux.vnet.ibm.com
Alan Cox4e688522008-04-30 00:52:11 -07005477W: http://tpmdd.sourceforge.net
5478P: Marcel Selhorst
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005479M: m.selhorst@sirrix.com
5480W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005481L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005483F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005484
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485TRIVIAL PATCHES
Jiri Kosina2b6a2f52008-11-14 11:55:03 +01005486P: Jiri Kosina
Jim Cromiece00f852006-11-30 04:49:44 +01005487M: trivial@kernel.org
5488L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005489T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490S: Maintained
5491
Alan Cox4e688522008-04-30 00:52:11 -07005492TTY LAYER
5493P: Alan Cox
5494M: alan@lxorguk.ukuu.org.uk
5495L: linux-kernel@vger.kernel.org
5496S: Maintained
5497
Grant Grundler740db6d2008-02-17 11:53:49 -07005498TULIP NETWORK DRIVERS
5499P: Grant Grundler
5500M: grundler@parisc-linux.org
5501P: Kyle McMartin
Kyle McMartin42a5a8a2008-06-06 17:16:17 -04005502M: kyle@mcmartin.ca
Grant Grundler740db6d2008-02-17 11:53:49 -07005503L: netdev@vger.kernel.org
5504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005505F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
5507TUN/TAP driver
5508P: Maxim Krasnyansky
Dave Jones66777b72006-03-25 03:07:53 -08005509M: maxk@qualcomm.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510L: vtun@office.satix.net
5511W: http://vtun.sourceforge.net/tun
5512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005513F: Documentation/networking/tuntap.txt
5514F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005515
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005516TURBOCHANNEL SUBSYSTEM
5517P: Maciej W. Rozycki
5518M: macro@linux-mips.org
5519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005520F: drivers/tc/
5521F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005522
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523U14-34F SCSI DRIVER
5524P: Dario Ballabio
5525M: ballabio_dario@emc.com
5526L: linux-scsi@vger.kernel.org
5527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005528F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005530UBI FILE SYSTEM (UBIFS)
5531P: Artem Bityutskiy
5532M: dedekind@infradead.org
5533P: Adrian Hunter
5534M: ext-adrian.hunter@nokia.com
5535L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005536T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005537W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005539F: Documentation/filesystems/ubifs.txt
5540F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005541
Alan Coxcc2020e2008-05-19 14:21:51 +01005542UCLINUX (AND M68KNOMMU)
5543P: Greg Ungerer
5544M: gerg@uclinux.org
5545W: http://www.uclinux.org/
5546L: uclinux-dev@uclinux.org (subscribers-only)
5547S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005548F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005549
Alan Coxcc2020e2008-05-19 14:21:51 +01005550UCLINUX FOR RENESAS H8/300
5551P: Yoshinori Sato
5552M: ysato@users.sourceforge.jp
5553W: http://uclinux-h8.sourceforge.jp/
5554S: Supported
5555
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556UDF FILESYSTEM
Jan Kara800fdfb2008-02-08 04:20:51 -08005557P: Jan Kara
5558M: jack@suse.cz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559W: http://linux-udf.sourceforge.net
5560S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005561F: Documentation/filesystems/udf.txt
5562F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
Alan Coxcc2020e2008-05-19 14:21:51 +01005564UFS FILESYSTEM
5565P: Evgeniy Dushistov
5566M: dushistov@mail.ru
5567L: linux-kernel@vger.kernel.org
5568S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005569F: Documentation/filesystems/ufs.txt
5570F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005571
David Vrabel18332a82008-09-17 16:34:44 +01005572ULTRA-WIDEBAND (UWB) SUBSYSTEM:
5573P: David Vrabel
5574M: david.vrabel@csr.com
5575L: linux-usb@vger.kernel.org
5576S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005577F: drivers/uwb/*
5578F: include/linux/uwb.h
5579F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005580
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581UNIFORM CDROM DRIVER
5582P: Jens Axboe
Jens Axboe0fe23472006-09-04 15:41:16 +02005583M: axboe@kernel.dk
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584L: linux-kernel@vger.kernel.org
5585W: http://www.kernel.dk
5586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005587F: Documentation/cdrom/
5588F: drivers/cdrom/cdrom.c
5589F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005591UNSORTED BLOCK IMAGES (UBI)
5592P: Artem Bityutskiy
5593M: dedekind@infradead.org
5594W: http://www.linux-mtd.infradead.org/
5595L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005596T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005598F: drivers/mtd/ubi
5599F: include/linux/mtd/ubi.h
5600F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005601
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602USB ACM DRIVER
5603P: Oliver Neukum
5604M: oliver@neukum.name
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005605L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005607F: Documentation/usb/acm.txt
5608F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
5610USB BLOCK DRIVER (UB ub)
5611P: Pete Zaitcev
5612M: zaitcev@redhat.com
5613L: linux-kernel@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005614L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005616F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618USB CDC ETHERNET DRIVER
5619P: Greg Kroah-Hartman
5620M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005621L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622S: Maintained
5623W: http://www.kroah.com/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005624F: drivers/net/usb/cdc_*.c
5625F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005627USB CYPRESS C67X00 DRIVER
5628P: Peter Korsgaard
5629M: jacmet@sunsite.dk
5630L: linux-usb@vger.kernel.org
5631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005633
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005634USB DAVICOM DM9601 DRIVER
5635P: Peter Korsgaard
5636M: jacmet@sunsite.dk
Peter Korsgaard043600a2007-06-27 21:18:18 +02005637L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005638W: http://www.linux-usb.org/usbnet
5639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005641
Alan Coxcc2020e2008-05-19 14:21:51 +01005642USB DIAMOND RIO500 DRIVER
5643P: Cesar Miquel
5644M: miquel@df.uba.ar
5645L: rio500-users@lists.sourceforge.net
5646W: http://rio500.sourceforge.net
5647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005648F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005649
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650USB EHCI DRIVER
5651P: David Brownell
5652M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005653L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005654S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005655F: Documentation/usb/ehci.txt
5656F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005657
Luca Risolia7ce08c92006-01-11 02:06:59 +00005658USB ET61X[12]51 DRIVER
5659P: Luca Risolia
5660M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005661L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005662L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005663T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005664W: http://www.linux-projects.org
5665S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005666F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005667
David Brownell69ae9e32006-11-14 02:03:31 -08005668USB GADGET/PERIPHERAL SUBSYSTEM
5669P: David Brownell
5670M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005671L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005672W: http://www.linux-usb.org/gadget
5673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005674F: drivers/usb/gadget/
5675F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005676
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005677USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Jiri Kosina641266fd2007-01-15 09:56:21 +01005678P: Jiri Kosina
5679M: jkosina@suse.cz
Jean Delvare795fb7e2008-09-20 12:33:08 +02005680L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005681T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005683F: Documentation/usb/hiddev.txt
5684F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
Olav Kongas959eea22005-11-03 17:38:14 +02005686USB ISP116X DRIVER
5687P: Olav Kongas
5688M: ok@artecdesign.ee
Jean Delvare795fb7e2008-09-20 12:33:08 +02005689L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005691F: drivers/usb/host/isp116x*
5692F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005693
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694USB KAWASAKI LSI DRIVER
5695P: Oliver Neukum
5696M: oliver@neukum.name
Jean Delvare795fb7e2008-09-20 12:33:08 +02005697L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
5701USB MASS STORAGE DRIVER
5702P: Matthew Dharm
5703M: mdharm-usb@one-eyed-alien.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005704L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005705L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706S: Maintained
5707W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005708F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
5710USB OHCI DRIVER
David Brownell23d8c902006-12-05 03:10:08 -08005711P: David Brownell
5712M: dbrownell@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005713L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005714S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005715F: Documentation/usb/ohci.txt
5716F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Matthias Urlichsba460e42005-07-14 00:33:47 -07005718USB OPTION-CARD DRIVER
5719P: Matthias Urlichs
5720M: smurf@smurf.noris.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005721L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005723F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005724
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725USB OV511 DRIVER
5726P: Mark McClelland
5727M: mmcclell@bigfoot.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005728L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729W: http://alpha.dyndns.org/ov511/
5730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005731F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
5733USB PEGASUS DRIVER
5734P: Petko Manolov
5735M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005736L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005737L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738W: http://pegasus2.sourceforge.net/
5739S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005740F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005742USB PRINTER DRIVER (usblp)
5743P: Pete Zaitcev
5744M: zaitcev@redhat.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005745L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005746S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005747F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748
5749USB RTL8150 DRIVER
5750P: Petko Manolov
5751M: petkan@users.sourceforge.net
Jean Delvare795fb7e2008-09-20 12:33:08 +02005752L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005753L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005754W: http://pegasus2.sourceforge.net/
5755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005756F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
5758USB SE401 DRIVER
5759P: Jeroen Vreeken
5760M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005761L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762W: http://www.chello.nl/~j.vreeken/se401/
5763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005764F: Documentation/video4linux/se401.txt
5765F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
Alan Cox4e688522008-04-30 00:52:11 -07005767USB SERIAL BELKIN F5U103 DRIVER
5768P: William Greathouse
5769M: wgreathouse@smva.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005770L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005771S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005772F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005773
5774USB SERIAL CYPRESS M8 DRIVER
5775P: Lonnie Mendez
5776M: dignome@gmail.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005777L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005778S: Maintained
5779W: http://geocities.com/i0xox0i
5780W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005782
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783USB SERIAL CYBERJACK DRIVER
5784P: Matthias Bruestle and Harald Welte
5785M: support@reiner-sct.com
5786W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
5790USB SERIAL DIGI ACCELEPORT DRIVER
5791P: Peter Berger and Al Borchers
5792M: pberger@brimson.com
5793M: alborchers@steinerpoint.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005794L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005796F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797
5798USB SERIAL DRIVER
5799P: Greg Kroah-Hartman
5800M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005801L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005802S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005803F: Documentation/usb/usb-serial.txt
5804F: drivers/usb/serial/generic.c
5805F: drivers/usb/serial/usb-serial.c
5806F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
5809P: Gary Brubaker
5810M: xavyer@ix.netcom.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005811L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005813F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
5815USB SERIAL KEYSPAN DRIVER
5816P: Greg Kroah-Hartman
5817M: greg@kroah.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005818L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819W: http://www.kroah.com/linux/
5820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005821F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
5823USB SERIAL WHITEHEAT DRIVER
Stuart MacDonald8bc84932007-05-04 16:00:03 -04005824P: Support Department
5825M: support@connecttech.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005826L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827W: http://www.connecttech.com
5828S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005829F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005831USB SMSC95XX ETHERNET DRIVER
5832P: Steve Glendinning
5833M: steve.glendinning@smsc.com
5834L: netdev@vger.kernel.org
5835S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005836F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005837
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005838USB SN9C1xx DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839P: Luca Risolia
5840M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005841L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005842L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005843T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844W: http://www.linux-projects.org
5845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005846F: Documentation/video4linux/sn9c102.txt
5847F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
5849USB SUBSYSTEM
5850P: Greg Kroah-Hartman
5851M: gregkh@suse.de
Jean Delvare795fb7e2008-09-20 12:33:08 +02005852L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005854T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005856F: Documentation/usb/
5857F: drivers/net/usb/
5858F: drivers/usb/
5859F: include/linux/usb.h
5860F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
5862USB UHCI DRIVER
5863P: Alan Stern
5864M: stern@rowland.harvard.edu
Jean Delvare795fb7e2008-09-20 12:33:08 +02005865L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868
David Brownell69ae9e32006-11-14 02:03:31 -08005869USB "USBNET" DRIVER FRAMEWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870P: David Brownell
5871M: dbrownell@users.sourceforge.net
Peter Korsgaard043600a2007-06-27 21:18:18 +02005872L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005873W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005875F: drivers/net/usb/usbnet.c
5876F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005878USB VIDEO CLASS
5879P: Laurent Pinchart
5880M: laurent.pinchart@skynet.be
Jiri Slabya67534a2008-12-10 09:09:27 -03005881L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005882L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005883T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005884W: http://linux-uvc.berlios.de
5885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005886F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005887
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888USB W996[87]CF DRIVER
5889P: Luca Risolia
5890M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005891L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005892L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005893T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894W: http://www.linux-projects.org
5895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005896F: Documentation/video4linux/w9968cf.txt
5897F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005899USB WIRELESS RNDIS DRIVER (rndis_wlan)
5900P: Jussi Kivilinna
5901M: jussi.kivilinna@mbnet.fi
5902L: linux-wireless@vger.kernel.org
5903S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005904F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005905
Luca Risolia60f78052006-02-06 16:29:35 +00005906USB ZC0301 DRIVER
5907P: Luca Risolia
5908M: luca.risolia@studio.unibo.it
Jean Delvare795fb7e2008-09-20 12:33:08 +02005909L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005910L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005911T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005912W: http://www.linux-projects.org
5913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: Documentation/video4linux/zc0301.txt
5915F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005916
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917USB ZD1201 DRIVER
5918P: Jeroen Vreeken
5919M: pe1rxq@amsat.org
Jean Delvare795fb7e2008-09-20 12:33:08 +02005920L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921W: http://linux-lc100020.sourceforge.net
5922S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005923F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005925USB ZR364XX DRIVER
5926P: Antoine Jacquet
5927M: royale@zerezo.com
Jean Delvare795fb7e2008-09-20 12:33:08 +02005928L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005929L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005930T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005931W: http://royale.zerezo.com/zr364xx/
5932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005933F: Documentation/video4linux/zr364xx.txt
5934F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005935
Randy Dunlape7839f22008-10-12 16:11:45 -07005936USER-MODE LINUX (UML)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937P: Jeff Dike
Joe Perches6650e0a2007-12-10 15:49:32 -08005938M: jdike@addtoit.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939L: user-mode-linux-devel@lists.sourceforge.net
5940L: user-mode-linux-user@lists.sourceforge.net
5941W: http://user-mode-linux.sourceforge.net
5942S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005943F: Documentation/uml/
5944F: arch/um/
5945F: fs/hostfs/
5946F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005947
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005948USERSPACE I/O (UIO)
5949P: Hans J. Koch
5950M: hjk@linutronix.de
5951P: Greg Kroah-Hartman
5952M: gregkh@suse.de
5953L: linux-kernel@vger.kernel.org
5954S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005955F: Documentation/DocBook/uio-howto.tmpl
5956F: drivers/uio/
5957F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005958
Karel Zakf899b0a2008-05-23 13:04:21 -07005959UTIL-LINUX-NG PACKAGE
5960P: Karel Zak
5961M: kzak@redhat.com
5962L: util-linux-ng@vger.kernel.org
5963W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005964T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005965S: Maintained
5966
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005967UVESAFB DRIVER
5968P: Michal Januszewski
5969M: spock@gentoo.org
5970L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
5971W: http://dev.gentoo.org/~spock/projects/uvesafb/
5972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005973F: Documentation/fb/uvesafb.txt
5974F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005975
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005976VFAT/FAT/MSDOS FILESYSTEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07005977P: OGAWA Hirofumi
5978M: hirofumi@mail.parknet.co.jp
5979L: linux-kernel@vger.kernel.org
5980S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005981F: Documentation/filesystems/vfat.txt
5982F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984VIA RHINE NETWORK DRIVER
5985P: Roger Luethi
5986M: rl@hellgate.ch
5987S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005988F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
Jean Delvare32c0a522005-09-22 21:47:58 +02005990VIAPRO SMBUS DRIVER
5991P: Jean Delvare
5992M: khali@linux-fr.org
Jean Delvare846557d2008-10-30 15:55:47 +01005993L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02005994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005995F: Documentation/i2c/busses/i2c-viapro
5996F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02005997
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005998VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
5999P: Joseph Chan
6000M: JosephChan@via.com.tw
6001P: Scott Fang
6002M: ScottFang@viatech.com.cn
6003L: linux-fbdev-devel@lists.sourceforge.net (moderated for non-subscribers)
6004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006005F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006006
Francois Romieu01f20732007-01-26 00:57:17 -08006007VIA VELOCITY NETWORK DRIVER
6008P: Francois Romieu
6009M: romieu@fr.zoreil.com
6010L: netdev@vger.kernel.org
6011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006012F: drivers/net/via-velocity.*
Francois Romieu01f20732007-01-26 00:57:17 -08006013
Patrick McHardybe7f8272007-10-23 20:26:36 -07006014VLAN (802.1Q)
6015P: Patrick McHardy
6016M: kaber@trash.net
6017L: netdev@vger.kernel.org
6018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006019F: drivers/net/macvlan.c
6020F: include/linux/if_*vlan.h
6021F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006022
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006023VOLTAGE AND CURRENT REGULATOR FRAMEWORK
6024P: Liam Girdwood
Liam Girdwood8a62ab42008-09-14 17:40:21 +01006025M: lrg@slimlogic.co.uk
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006026P: Mark Brown
6027M: broonie@opensource.wolfsonmicro.com
6028W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006029W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006030T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006031S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006032F: drivers/regulator/
6033F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006034
Juerg Haefligerab413192006-09-24 20:54:04 +02006035VT1211 HARDWARE MONITOR DRIVER
6036P: Juerg Haefliger
6037M: juergh@gmail.com
6038L: lm-sensors@lm-sensors.org
6039S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006040F: Documentation/hwmon/vt1211
6041F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006042
Roger Lucas1de9e372005-11-26 20:20:05 +01006043VT8231 HARDWARE MONITOR DRIVER
6044P: Roger Lucas
Roger Lucasaf865762008-02-13 07:52:06 -05006045M: vt8231@hiddenengine.co.uk
Roger Lucas1de9e372005-11-26 20:20:05 +01006046L: lm-sensors@lm-sensors.org
6047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006048F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006049
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050W1 DALLAS'S 1-WIRE BUS
6051P: Evgeniy Polyakov
6052M: johnpol@2ka.mipt.ru
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006054F: Documentation/w1/
6055F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056
Charles Spirakis13927072006-07-05 18:05:15 +02006057W83791D HARDWARE MONITORING DRIVER
Marc Hulsman25845c22008-06-08 10:59:41 -04006058P: Marc Hulsman
6059M: m.hulsman@tudelft.nl
Charles Spirakis13927072006-07-05 18:05:15 +02006060L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006062F: Documentation/hwmon/w83791d
6063F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006064
Rudolf Marek61db0112006-12-12 18:18:30 +01006065W83793 HARDWARE MONITORING DRIVER
6066P: Rudolf Marek
6067M: r.marek@assembler.cz
6068L: lm-sensors@lm-sensors.org
6069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006070F: Documentation/hwmon/w83793
6071F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006072
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073W83L51xD SD/MMC CARD INTERFACE DRIVER
6074P: Pierre Ossman
Pierre Ossman32710e82009-04-08 20:14:54 +02006075M: pierre@ossman.eu
Pierre Ossmanfac88992007-01-27 13:18:26 +01006076L: linux-kernel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006078F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006080WATCHDOG DEVICE DRIVERS
6081P: Wim Van Sebroeck
6082M: wim@iguana.be
Joe Perches54e58812009-04-07 21:08:10 -07006083T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006085F: Documentation/watchdog/
6086F: drivers/watchdog/
6087F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006088
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
6090P: Jean Tourrilhes
6091M: jt@hpl.hp.com
Johannes Berg724c6b32007-04-23 12:18:20 -07006092L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
6094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: Documentation/networking/wavelan.txt
6096F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097
6098WD7000 SCSI DRIVER
6099P: Miroslav Zagorac
6100M: zaga@fly.cc.fer.hr
6101L: linux-scsi@vger.kernel.org
6102S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006103F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006105WIMAX STACK
6106P: Inaky Perez-Gonzalez
6107M: inaky.perez-gonzalez@intel.com
6108M: linux-wimax@intel.com
6109L: wimax@linuxwimax.org
6110S: Supported
6111W: http://linuxwimax.org
6112
David Vrabel18332a82008-09-17 16:34:44 +01006113WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
6114P: David Vrabel
6115M: david.vrabel@csr.com
6116S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006117F: include/linux/wlp.h
6118F: drivers/uwb/wlp/
David Vrabel18332a82008-09-17 16:34:44 +01006119
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006120WISTRON LAPTOP BUTTON DRIVER
6121P: Miloslav Trmac
6122M: mitr@volny.cz
6123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006124F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006125
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126WL3501 WIRELESS PCMCIA CARD DRIVER
6127P: Arnaldo Carvalho de Melo
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006128M: acme@ghostprotocols.net
Johannes Berg724c6b32007-04-23 12:18:20 -07006129L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006130W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006132F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
Mark Brownfebf1df2008-04-02 00:51:09 -04006134WM97XX TOUCHSCREEN DRIVERS
6135P: Mark Brown
6136M: broonie@opensource.wolfsonmicro.com
6137P: Liam Girdwood
Liam Girdwoodb8d055a2008-10-13 23:00:15 -04006138M: lrg@slimlogic.co.uk
Mark Brownfebf1df2008-04-02 00:51:09 -04006139L: linux-input@vger.kernel.org
6140T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6141W: http://opensource.wolfsonmicro.com/node/7
6142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006143F: drivers/input/touchscreen/*wm97*
6144F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146X.25 NETWORK LAYER
6147P: Henner Eisen
6148M: eis@baty.hanse.de
6149L: linux-x25@vger.kernel.org
6150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006151F: Documentation/networking/x25*
6152F: include/net/x25*
6153F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006154
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006155X86 ARCHITECTURE (32-BIT AND 64-BIT)
6156P: Thomas Gleixner
6157M: tglx@linutronix.de
6158P: Ingo Molnar
6159M: mingo@redhat.com
6160P: H. Peter Anvin
6161M: hpa@zytor.com
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006162M: x86@kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006163L: linux-kernel@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006164T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006166F: Documentation/x86/
6167F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006168
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006169XEN HYPERVISOR INTERFACE
6170P: Jeremy Fitzhardinge
6171M: jeremy@xensource.com
6172P: Chris Wright
6173M: chrisw@sous-sol.org
6174L: virtualization@lists.osdl.org
6175L: xen-devel@lists.xensource.com
6176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006177F: arch/x86/xen/
6178F: drivers/*/xen-*front.c
6179F: drivers/xen/
6180F: arch/x86/include/asm/xen/
6181F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006182
Linus Torvalds1da177e2005-04-16 15:20:36 -07006183XFS FILESYSTEM
6184P: Silicon Graphics Inc
Felix Blyakherb58a4cc2009-02-03 15:37:18 -06006185P: Felix Blyakher
6186M: felixb@sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006187M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006188L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006190T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006192F: Documentation/filesystems/xfs.txt
6193F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006195XILINX SYSTEMACE DRIVER
6196P: Grant Likely
6197M: grant.likely@secretlab.ca
6198W: http://www.secretlab.ca/
6199L: linux-kernel@vger.kernel.org
6200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006201F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006202
Peter Korsgaard238b8722006-12-06 20:35:17 -08006203XILINX UARTLITE SERIAL DRIVER
6204P: Peter Korsgaard
6205M: jacmet@sunsite.dk
6206L: linux-serial@vger.kernel.org
6207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006208F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006209
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210YAM DRIVER FOR AX.25
6211P: Jean-Paul Roubelat
6212M: jpr@f6fbb.org
6213L: linux-hams@vger.kernel.org
6214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006215F: drivers/net/hamradio/yam*
6216F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
Henkaf64a5e2005-10-12 15:02:56 +02006218YEALINK PHONE DRIVER
6219P: Henk Vergonet
6220M: Henk.Vergonet@gmail.com
6221L: usbb2k-api-dev@nongnu.org
6222S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006223F: Documentation/input/yealink.txt
6224F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006225
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226Z8530 DRIVER FOR AX.25
6227P: Joerg Reuter
6228M: jreuter@yaina.de
6229W: http://yaina.de/jreuter/
6230W: http://www.qsl.net/dl1bke/
6231L: linux-hams@vger.kernel.org
6232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006233F: Documentation/networking/z8530drv.txt
6234F: drivers/net/hamradio/*scc.c
6235F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006237ZD1211RW WIRELESS DRIVER
6238P: Daniel Drake
6239M: dsd@gentoo.org
6240P: Ulrich Kunitz
6241M: kune@deine-taler.de
6242W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006243L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006244L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006246F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006250L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006252T: Mercurial http://linuxtv.org/hg/v4l-dvb
6253S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006254F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006256ZS DECSTATION Z85C30 SERIAL DRIVER
6257P: Maciej W. Rozycki
6258M: macro@linux-mips.org
6259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006260F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006261
Linus Torvalds1da177e2005-04-16 15:20:36 -07006262THE REST
6263P: Linus Torvalds
Joe Perchescfe81f72009-04-07 21:09:58 -07006264T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265S: Buried alive in reporters