blob: dad4f575bc1fa212c90a148d8bccfc51223f0e83 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2 List of maintainers and how to submit kernel changes
3
4Please try to follow the guidelines below. This will make things
5easier on the maintainers. Not all of these guidelines matter for every
6trivial patch so apply some common sense.
7
81. Always _test_ your changes, however small, on at least 4 or
9 5 people, preferably many more.
10
112. Try to release a few ALPHA test versions to the net. Announce
12 them onto the kernel channel and await results. This is especially
13 important for device drivers, because often that's the only way
14 you will find things like the fact version 3 firmware needs
15 a magic fix you didn't know about, or some clown changed the
16 chips on a board and not its name. (Don't laugh! Look at the
17 SMC etherpower for that.)
18
193. Make sure your changes compile correctly in multiple
20 configurations. In particular check that changes work both as a
21 module and built into the kernel.
22
234. When you are happy with a change make it generally available for
24 testing and await feedback.
25
265. Make a patch available to the relevant maintainer in the list. Use
27 'diff -u' to make the patch easy to merge. Be prepared to get your
28 changes sent back with seemingly silly requests about formatting
29 and variable names. These aren't as silly as they seem. One
30 job the maintainers (and especially Linus) do is to keep things
31 looking the same. Sometimes this means that the clever hack in
32 your driver to get around a problem actually needs to become a
Andy Whitcroft0a920b52007-06-01 00:46:48 -070033 generalized kernel feature ready for next time.
34
35 PLEASE check your patch with the automated style checker
36 (scripts/checkpatch.pl) to catch trival style violations.
37 See Documentation/CodingStyle for guidance here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Joe Perchesf70f8732009-06-16 15:34:08 -070039 PLEASE CC: the maintainers and mailing lists that are generated
40 by scripts/get_maintainer.pl. The results returned by the
41 script will be best if you have git installed and are making
42 your changes in a branch derived from Linus' latest git tree.
43 See Documentation/SubmittingPatches for details.
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 PLEASE try to include any credit lines you want added with the
46 patch. It avoids people being missed off by mistake and makes
47 it easier to know who wants adding and who doesn't.
48
49 PLEASE document known bugs. If it doesn't work for everything
50 or does something very odd once a month document it.
51
Alan Coxc9ee1332006-05-20 15:00:12 -070052 PLEASE remember that submissions must be made under the terms
Randy Dunlap45003712007-08-30 23:56:37 -070053 of the OSDL certificate of contribution and should include a
54 Signed-off-by: line. The current version of this "Developer's
55 Certificate of Origin" (DCO) is listed in the file
56 Documentation/SubmittingPatches.
Alan Coxc9ee1332006-05-20 15:00:12 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586. Make sure you have the right to send any changes you make. If you
59 do changes at work you may find your employer owns the patch
60 not you.
61
Alan Coxc9ee1332006-05-20 15:00:12 -0700627. When sending security related changes or reports to a maintainer
63 please Cc: security@kernel.org, especially if the maintainer
64 does not respond.
65
668. Happy hacking.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Joe Perchesc7c4fb12009-10-26 16:49:48 -070068Descriptions of section entries:
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Joe Perchesc7c4fb12009-10-26 16:49:48 -070070 P: Person (obsolete)
71 M: Mail patches to: FullName <address@domain>
72 L: Mailing list that is relevant to this area
73 W: Web-page with status/info
74 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
75 S: Status, one of the following:
76 Supported: Someone is actually paid to look after this.
77 Maintained: Someone actually looks after it.
78 Odd Fixes: It has a maintainer but they don't have time to do
79 much other than throw the odd patch in. See below..
80 Orphan: No current maintainer [but maybe you could take the
81 role as you write your new code].
82 Obsolete: Old code. Something tagged obsolete generally means
83 it has been replaced by a better system and you
84 should be using that.
85 F: Files and directories with wildcard patterns.
86 A trailing slash includes all files and subdirectory files.
87 F: drivers/net/ all files in and below drivers/net
88 F: drivers/net/* all files in drivers/net, but not below
89 F: */net/* all files in "any top level directory"/net
90 One pattern per line. Multiple F: lines acceptable.
91 X: Files and directories that are NOT maintained, same rules as F:
92 Files exclusions are tested before file matches.
93 Can be useful for excluding a specific subdirectory, for instance:
94 F: net/
95 X: net/ipv6/
96 matches all files in and below net excluding net/ipv6/
97 K: Keyword perl extended regex pattern to match content in a
98 patch or file. For instance:
99 K: of_get_profile
100 matches patches or files that contain "of_get_profile"
101 K: \b(printk|pr_(info|err))\b
102 matches patches or files that contain one or more of the words
103 printk, pr_info or pr_err
104 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106Note: For the hard of thinking, this list is meant to remain in alphabetical
107order. If you could add yourselves to it in alphabetical order that would be
108so much easier [Ed]
109
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700110Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700112 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700115M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700116L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700118F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Steffen Klasserta6d89912007-08-10 14:05:27 -07001203C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700121M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700122L: netdev@vger.kernel.org
123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700124F: Documentation/networking/vortex.txt
125F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700128M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700129L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700131F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001333W-9XXX SATA-RAID CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700134M: Adam Radford <linuxraid@amcc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135L: linux-scsi@vger.kernel.org
136W: http://www.amcc.com
137S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700138F: drivers/scsi/3w-9xxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001403W-XXXX ATA-RAID CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700141M: Adam Radford <linuxraid@amcc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142L: linux-scsi@vger.kernel.org
143W: http://www.amcc.com
144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700145F: drivers/scsi/3w-xxxx*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
14753C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-scsi@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
1536PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700154M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155L: linux-hams@vger.kernel.org
156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700157F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598169 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700160M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700161L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
1658250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166L: linux-serial@vger.kernel.org
167W: http://serial.sourceforge.net
Linus Torvalds90a09c92009-07-30 16:40:37 -0700168S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700169F: drivers/serial/8250*
170F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
1728390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Joe Perches8b58be82009-07-29 15:04:30 -0700173M: Paul Gortmaker <p_gortmaker@yahoo.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700174L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700176F: drivers/net/*8390*
177F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001799P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700180M: Eric Van Hensbergen <ericvh@gmail.com>
181M: Ron Minnich <rminnich@sandia.gov>
182M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100183L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500184W: http://swik.net/v9fs
Joe Percheseeba4442009-11-11 14:26:44 -0800185T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100186S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700187F: Documentation/filesystems/9p.txt
188F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700191M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192L: linux-m68k@lists.linux-m68k.org
193S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700194F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700196AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700197M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700198L: 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
Joe Perches8b58be82009-07-29 15:04:30 -0700205M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200206L: lm-sensors@lm-sensors.org
207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700208F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200209
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700211M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700212L: lm-sensors@lm-sensors.org
213S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700214F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700217M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218L: linux-acenic@sunsite.dk
219S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700220F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Peter Feuerere86435e2009-06-21 18:53:03 +0200222ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700223M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500224L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700225W: http://piie.net/?section=acerhdf
226S: Maintained
227F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200228
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000229ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700230M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000231L: aceracpi@googlegroups.com (subscribers-only)
Matthew Garrettd0944852010-02-11 10:40:13 -0500232L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000233W: http://code.google.com/p/aceracpi
234S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700235F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700238M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500239L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400240W: http://www.lesswatts.org/projects/acpi/
Joe Perches54e58812009-04-07 21:08:10 -0700241T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700243F: drivers/acpi/
244F: drivers/pnp/pnpacpi/
245F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700246F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500247
248ACPI BATTERY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700249M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500250L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300251W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500252S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700253F: drivers/acpi/battery.c
254F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500255
256ACPI EC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700257M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500258L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300259W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700261F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500262
263ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700264M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500265L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300266W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500267S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700268F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Shaohua Li8e0af512009-07-27 18:11:02 -0400270ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700271M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400272L: linux-acpi@vger.kernel.org
273W: http://www.lesswatts.org/projects/acpi/
274S: Supported
275F: drivers/acpi/acpi_pad.c
276
Len Brown8b59a452007-01-08 19:03:28 -0500277ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700278M: Zhang Rui <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
Joe Perches8b58be82009-07-29 15:04:30 -0700285M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500286L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300287W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700289F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500290
Carlos Corbachobff431e2008-02-05 02:17:04 +0000291ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700292M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -0500293L: platform-driver-x86@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +0200294W: http://www.lesswatts.org/projects/acpi/
295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700296F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000297
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100298AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700299M: Kyle McMartin <kyle@mcmartin.ca>
300M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200301W: http://wiki.parisc-linux.org/AD1889
302L: linux-parisc@vger.kernel.org
303S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700304F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700307M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200308L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700310F: Documentation/hwmon/adm1025
311F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Corentin Labbecae2caa2007-02-14 21:15:04 +0100313ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700314M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100315L: lm-sensors@lm-sensors.org
316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700317F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100318
Michael Wucc0b88c2007-08-31 01:15:25 -0400319ADM8211 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700320M: Michael Wu <flamingice@sourmilk.net>
Michael Wucc0b88c2007-08-31 01:15:25 -0400321L: linux-wireless@vger.kernel.org
322W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -0700323T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Michael Wucc0b88c2007-08-31 01:15:25 -0400324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700325F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700328M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700330F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Jean Delvareb058b852009-12-09 20:36:08 +0100332ADT7475 HARDWARE MONITOR DRIVER
333M: Jean Delvare <khali@linux-fr.org>
334L: lm-sensors@lm-sensors.org
335S: Maintained
336F: Documentation/hwmon/adt7475
337F: drivers/hwmon/adt7475.c
338
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400339ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700340M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400341L: linux-scsi@vger.kernel.org
342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700343F: Documentation/scsi/advansys.txt
344F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700347M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700349F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700352M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700354F: Documentation/filesystems/affs.txt
355F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700357AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700358M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700359L: linux-afs@lists.infradead.org
360S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700361F: fs/afs/
362F: include/net/af_rxrpc.h
363F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700366M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700367T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700369F: drivers/char/agp/
370F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700373M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374L: linux-scsi@vger.kernel.org
375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700376F: drivers/scsi/aha152x*
377F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Hannes Reinecke64624d42007-10-19 10:32:29 +0200379AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700380M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200381L: linux-scsi@vger.kernel.org
382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700383F: drivers/scsi/aic7xxx/
384F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200385
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700386AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700387M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700388L: linux-aio@kvack.org
389S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700390F: fs/aio.c
391F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700394M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700395L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396W: http://www.linux-usb.org/SpeedTouch/
397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/usb/atm/speedtch.c
399F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Pierre Ossman272f1332007-05-14 21:25:26 +0200401ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700402M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200405
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000406ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700407M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100408L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700410F: Documentation/i2c/busses/i2c-ali1563
411F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700414M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500416M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700417L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700418F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700420AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700421M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700422L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700423S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700424F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700425
Jordan Crousef90b8112006-01-06 00:12:14 -0800426AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100427P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700428L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800429W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700431F: arch/x86/kernel/geode_32.c
432F: drivers/char/hw_random/geode-rng.c
433F: drivers/crypto/geode*
434F: drivers/video/geode/
435F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800436
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200437AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700438M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200439L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700440T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: arch/x86/kernel/amd_iommu*.c
443F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200444
Peter Orubae7f5b302008-07-28 18:44:11 +0200445AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700446M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700447L: amd64-microcode@amd64.org
448S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700449F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200450
Stelian Pop284f42b2006-12-12 18:18:31 +0100451AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700452M: Stelian Pop <stelian@popies.net>
453M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100454S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100456
Tom Tuckerf94b5332006-09-22 15:22:48 -0700457AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700458M: Tom Tucker <tom@opengridcomputing.com>
459M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700460L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700463
Johannes Berg42269062006-07-25 16:15:50 +0200464AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700465M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200466L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700467L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700469F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700472M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473L: linux-laptop@vger.kernel.org
474W: http://www.canb.auug.org.au/~sfr/
475S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700476F: arch/x86/kernel/apm_32.c
477F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700479APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700480M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700481L: linux-input@vger.kernel.org
482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700483F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700484
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700485APPLE SMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700486M: Nicolas Boichat <nicolas@boichat.ch>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700487L: mactel-linux-devel@lists.sourceforge.net
488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700489F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700492M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700494F: drivers/net/appletalk/
495F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Jaya Kumar1154ea72005-06-21 17:17:04 -0700497ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700498M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700499S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700500F: drivers/video/arcfb.c
501F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700504M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700506F: arch/arm/lib/floppydma.S
507F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Russell Kingd4275352009-04-16 14:05:27 +0100509ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700510M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700511L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100512W: http://www.arm.linux.org.uk/
513S: Maintained
514F: arch/arm/
515
Russell Kingcefbf4e2009-11-22 17:40:28 +0000516ARM PRIMECELL AACI PL041 DRIVER
517M: Russell King <linux@arm.linux.org.uk>
518S: Maintained
519F: sound/arm/aaci.*
520
521ARM PRIMECELL CLCD PL110 DRIVER
522M: Russell King <linux@arm.linux.org.uk>
523S: Maintained
524F: drivers/video/amba-clcd.*
525
526ARM PRIMECELL KMI PL050 DRIVER
527M: Russell King <linux@arm.linux.org.uk>
528S: Maintained
529F: drivers/input/serio/ambakmi.*
530F: include/linux/amba/kmi.h
531
Russell King2761f5c2007-05-24 06:56:08 +0200532ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200533S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700534F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200535
Russell Kingcefbf4e2009-11-22 17:40:28 +0000536ARM PRIMECELL BUS SUPPORT
537M: Russell King <linux@arm.linux.org.uk>
538S: Maintained
539F: drivers/amba/
540F: include/linux/amba/bus.h
541
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800542ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700544L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800545S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700546F: arch/arm/mach-ixp23xx/
547F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800548
549ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700550M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700551L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800552S: Maintained
553
Sergey Lapin9c784f92008-08-03 02:29:48 +0100554ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700555M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700556L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100557S: Maintained
558
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800559ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700560M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700561L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800562S: Maintained
563
Andrew Victord4a89c72006-12-04 13:56:21 +0100564ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700565M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200567W: http://maxim.org.za/at91_26.html
568S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100569
Leo Chen57a473f2009-08-12 22:08:48 +0100570ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100571M: Leo Chen <leochen@broadcom.com>
572M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700573L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800574S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100575F: arch/arm/mach-bcmring
576
577ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100578M: Leo Chen <leochen@broadcom.com>
579M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100580L: linux-mtd@lists.infradead.org
581S: Maintained
582F: drivers/mtd/nand/bcm_umi_nand.c
583F: drivers/mtd/nand/bcm_umi_bch.c
584F: drivers/mtd/nand/bcm_umi_hamming.c
585F: drivers/mtd/nand/nand_bcm_umi.h
586
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800587ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100588M: Hartley Sweeten <hsweeten@visionengravers.com>
589M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700590L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800591S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100592F: arch/arm/mach-ep93xx/
593F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800594
595ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700596M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700597L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800598S: Maintained
599
Russell Kingd4275352009-04-16 14:05:27 +0100600ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700601M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700602L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100603F: arch/arm/common/clkdev.c
604F: arch/arm/include/asm/clkdev.h
605
Mike Rapoportd48134e2008-08-20 09:03:26 +0100606ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700608L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100609S: Maintained
610
Hubert Feurstein94150092009-10-07 08:36:07 +0100611ARM/CONTEC MICRO9 MACHINE SUPPORT
612M: Hubert Feurstein <hubert.feurstein@contec.at>
613S: Maintained
614F: arch/arm/mach-ep93xx/micro9.c
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700617M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618S: Maintained
619
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200620ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200621M: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700622L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -0700623T: git git://gitorious.org/linux-gemini/mainline.git
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200624S: Odd Fixes
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300625F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200626
Russell Kingd4275352009-04-16 14:05:27 +0100627ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700628M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700629L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100630W: http://www.arm.linux.org.uk/
631S: Maintained
632F: arch/arm/mach-ebsa110/
633F: drivers/net/arm/am79c961a.*
634
Russell Kinga9da4f72008-07-12 21:42:04 +0100635ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700636M: Daniel Ribeiro <drwyrm@gmail.com>
637M: Stefan Schmidt <stefan@openezx.org>
638M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100639L: openezx-devel@lists.openezx.org (subscribers-only)
640W: http://www.openezx.org/
641S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200642T: topgit git://git.openezx.org/openezx.git
643F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100644
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200645ARM/FARADAY FA526 PORT
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200646M: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700647L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Paulius Zaleckas083c88f2010-02-18 21:54:12 +0200648S: Odd Fixes
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300649F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200650
Russell Kingd4275352009-04-16 14:05:27 +0100651ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700652M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700653L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100654W: http://www.arm.linux.org.uk/
655S: Maintained
656F: arch/arm/include/asm/hardware/dec21285.h
657F: arch/arm/mach-footbridge/
658
Sascha Hauer86183a52008-07-24 23:50:35 +0200659ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700660M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200662S: Maintained
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100663T: git://git.pengutronix.de/git/imx/linux-2.6.git
664F: arch/arm/mach-mx*/
665F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200666
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800667ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700668M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700669L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800670S: Maintained
671
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100672ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700673M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100675S: Maintained
676
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200677ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700678M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200679S: Maintained
680F: arch/arm/mach-pxa/hx4700.c
681F: arch/arm/mach-pxa/include/mach/hx4700.h
682
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100683ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700684M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200685W: www.jlime.com
686S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700687T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
688F: arch/arm/mach-sa1100/jornada720.c
689F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100690
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800691ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700692M: Lennert Buytenhek <kernel@wantstofly.org>
693M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700695S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100696
697ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700698M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700699L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700700S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800701
702ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700703M: Lennert Buytenhek <kernel@wantstofly.org>
704M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700705L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700706S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800707
708ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700709M: Lennert Buytenhek <kernel@wantstofly.org>
710M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700712S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713
714ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700715M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700716L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800717S: Maintained
718
719ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700720M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700721L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800722S: Maintained
723
724ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700725M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800727S: Maintained
728
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200729ARM/INTEL IXP4XX ARM ARCHITECTURE
730M: Imre Kaloz <kaloz@openwrt.org>
731M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200733S: Maintained
734F: arch/arm/mach-ixp4xx/
735
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100736ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT
737M: Jonathan Cameron <jic23@cam.ac.uk>
738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S: Maintained
740F: arch/arm/mach-pxa/imote2.c
741
742ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT
743M: Jonathan Cameron <jic23@cam.ac.uk>
744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
745S: Maintained
746F: arch/arm/mach-pxa/stargate2.c
747F: drivers/pcmcia/pxa2xx_stargate2.c
748
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800749ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700750M: Lennert Buytenhek <kernel@wantstofly.org>
751M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700753S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800754
755ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700756M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700757L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800758S: Maintained
759
760ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700761M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700762L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800763S: Maintained
764
Philipp Zabel3b8861712008-07-09 21:27:15 +0100765ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700766M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100767S: Maintained
768
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400769ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
770M: Lennert Buytenhek <buytenh@marvell.com>
771M: Nicolas Pitre <nico@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400773T: git git://git.marvell.com/orion
774S: Maintained
775F: arch/arm/mach-loki/
776F: arch/arm/mach-kirkwood/
777F: arch/arm/mach-mv78xx0/
778F: arch/arm/mach-orion5x/
779F: arch/arm/plat-orion/
780
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200781ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700782M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700783L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200784F: arch/arm/mach-pxa/mioa701.c
785S: Maintained
786
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100787ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700788M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100789S: Maintained
790
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100791ARM/NOMADIK ARCHITECTURE
792M: Alessandro Rubini <rubini@unipv.it>
793M: STEricsson <STEricsson_nomadik_linux@list.st.com>
794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
795S: Maintained
796F: arch/arm/mach-nomadik/
797F: arch/arm/plat-nomadik/
798
Andy Green9d762952009-05-19 06:41:42 -0300799ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700800M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300801L: openmoko-kernel@lists.openmoko.org (subscribers-only)
802W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
803S: Supported
804
Daniel Walker0c19d212009-12-07 16:53:51 -0800805ARM/QUALCOMM MSM MACHINE SUPPORT
806M: David Brown <davidb@codeaurora.org>
807M: Daniel Walker <dwalker@codeaurora.org>
808M: Bryan Huntsman <bryanh@codeaurora.org>
809F: arch/arm/mach-msm/
810F: drivers/video/msm/
811F: drivers/mmc/host/msm_sdcc.c
812F: drivers/mmc/host/msm_sdcc.h
813F: drivers/serial/msm_serial.h
814F: drivers/serial/msm_serial.c
815T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git
816S: Maintained
817
Dirk Opfer8459c152005-11-06 14:27:52 +0000818ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700819M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
820M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000821S: Maintained
822
Marek Vasut5d783a22009-07-16 13:26:48 +0200823ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700824M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200825L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100826W: http://hackndev.com
827S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700828F: arch/arm/mach-pxa/include/mach/palmtx.h
829F: arch/arm/mach-pxa/palmtx.c
830F: arch/arm/mach-pxa/include/mach/palmt5.h
831F: arch/arm/mach-pxa/palmt5.c
832F: arch/arm/mach-pxa/include/mach/palmld.h
833F: arch/arm/mach-pxa/palmld.c
834F: arch/arm/mach-pxa/include/mach/palmte2.h
835F: arch/arm/mach-pxa/palmte2.c
836F: arch/arm/mach-pxa/include/mach/palmtc.h
837F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100838
Joe Perchesb57fe922009-12-14 18:00:52 -0800839ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700840M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200841L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200842W: http://hackndev.com
843S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800844F: arch/arm/mach-pxa/include/mach/palmtreo.h
845F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200846
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100847ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700848M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200849L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700850W: http://hackndev.com
851S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700852F: arch/arm/mach-pxa/include/mach/palmz72.h
853F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700856M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
858S: Maintained
859
860ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700861M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700862L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863W: http://www.arm.linux.org.uk/
864S: Maintained
865
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800866ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700867M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700868L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800869S: Maintained
870
Russell Kingd4275352009-04-16 14:05:27 +0100871ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700872M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100874W: http://www.arm.linux.org.uk/
875S: Maintained
876F: arch/arm/common/time-acorn.c
877F: arch/arm/include/asm/hardware/entry-macro-iomd.S
878F: arch/arm/include/asm/hardware/ioc.h
879F: arch/arm/include/asm/hardware/iomd.h
880F: arch/arm/include/asm/hardware/memc.h
881F: arch/arm/mach-rpc/
882F: drivers/net/arm/ether*
883F: drivers/scsi/arm/
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700886M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887W: http://www.shark-linux.de/shark.html
888S: Maintained
889
Ben Dooksb21477f2009-06-13 10:46:34 +0100890ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700891M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700892L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100893W: http://www.fluff.org/ben/linux/
894S: Maintained
895F: arch/arm/plat-s3c/
896F: arch/arm/plat-s3c24xx/
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700899M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901W: http://www.fluff.org/ben/linux/
902S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100903F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905ARM/S3C2440 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700906M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908W: http://www.fluff.org/ben/linux/
909S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100910F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Ben Dooksb21477f2009-06-13 10:46:34 +0100912ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100915W: http://www.fluff.org/ben/linux/
916S: Maintained
917F: arch/arm/mach-s3c2442/
918
919ARM/S3C2443 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700920M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100922W: http://www.fluff.org/ben/linux/
923S: Maintained
924F: arch/arm/mach-s3c2443/
925
926ARM/S3C6400 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100929W: http://www.fluff.org/ben/linux/
930S: Maintained
931F: arch/arm/mach-s3c6400/
932
933ARM/S3C6410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100936W: http://www.fluff.org/ben/linux/
937S: Maintained
938F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800940ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700941M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800943S: Maintained
944
945ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700946M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700947L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800948S: Maintained
949
wanzongshun98ad6e32009-02-13 06:04:32 +0100950ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700951M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -0700953W: http://www.mcuos.com
954S: Maintained
wanzongshun98ad6e32009-02-13 06:04:32 +0100955
Srinidhi Kasagar870725d2009-12-01 13:41:24 +0100956ARM/U8500 ARM ARCHITECTURE
957M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
958L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
959S: Maintained
960F: arch/arm/mach-ux500/
961
Russell Kingd4275352009-04-16 14:05:27 +0100962ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700963M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700964L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100965W: http://www.arm.linux.org.uk/
966S: Maintained
967F: arch/arm/vfp/
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700970M: Corentin Chary <corentincj@iksaif.net>
971M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -0500973L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +0000974W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700976F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400978ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700979M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400980L: lm-sensors@lm-sensors.org
981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700982F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -0400983
Corentin Chary85091b72007-01-26 14:04:30 +0100984ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700985M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +0100986L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -0500987L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +0000988W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +0100989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700990F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +0100991
Andrew Morton953a6472008-11-06 12:53:28 -0800992ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -0700993M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -0700994W: http://sourceforge.net/projects/xscaleiop
995S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700996F: Documentation/crypto/async-tx-api.txt
997F: crypto/async_tx/
998F: drivers/dma/
999F: include/linux/dmaengine.h
1000F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001001
Wolfram Sanga1867d32009-09-18 22:45:51 +02001002AT24 EEPROM DRIVER
1003M: Wolfram Sang <w.sang@pengutronix.de>
1004L: linux-i2c@vger.kernel.org
1005S: Maintained
1006F: drivers/misc/eeprom/at24.c
1007F: include/linux/i2c/at24.h
1008
Randy Dunlape7839f22008-10-12 16:11:45 -07001009ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001010M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011W: http://www.coraid.com/support/linux
1012S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001013F: Documentation/aoe/
1014F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001016ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001017M: Jiri Slaby <jirislaby@gmail.com>
1018M: Nick Kossifidis <mickflemm@gmail.com>
1019M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1020M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001021L: linux-wireless@vger.kernel.org
1022L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001023W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001024S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001025F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001026
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001027ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001028M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1029M: Jouni Malinen <jmalinen@atheros.com>
1030M: Sujith Manoharan <Sujith.Manoharan@atheros.com>
1031M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1032M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001033L: linux-wireless@vger.kernel.org
1034L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001035W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001036S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001037F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001038
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001039ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001040M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001041L: linux-wireless@vger.kernel.org
1042W: http://wireless.kernel.org/en/users/Drivers/ar9170
1043S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001044F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001045
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001046ATK0110 HWMON DRIVER
1047M: Luca Tettamanti <kronos.it@gmail.com>
1048L: lm-sensors@lm-sensors.org
1049S: Maintained
1050F: drivers/hwmon/asus_atk0110.c
1051
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001052ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001053M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001055F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001056
Chris Snook7ae115b2008-09-09 03:26:57 -04001057ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001058M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001059M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001061L: atl1-devel@lists.sourceforge.net
1062W: http://sourceforge.net/projects/atl1
1063W: http://atl1.sourceforge.net
1064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001065F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001068M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001069L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001070L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071W: http://linux-atm.sourceforge.net
1072S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001073F: drivers/atm/
1074F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Pierre Ossman272f1332007-05-14 21:25:26 +02001076ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001078L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001079W: http://www.atmel.com/products/AT91/
1080W: http://www.at91.com/
1081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001082F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001083
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001084ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001085M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001086S: Maintained
1087F: drivers/mmc/host/atmel-mci.c
1088F: drivers/mmc/host/atmel-mci-regs.h
1089
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001090ATMEL AT91 / AT32 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001091M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001093F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001094
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001095ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001096M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001097L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001099F: drivers/video/atmel_lcdfb.c
1100F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001101
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001102ATMEL MACB ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001103M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001104S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001105F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001106
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001107ATMEL SPI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001108M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001110F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001111
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001112ATMEL USBA UDC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001113M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001114L: kernel@avr32linux.org
1115W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001117F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001120M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001121L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122W: http://www.thekelleys.org.uk/atmel
1123W: http://atmelwlandriver.sourceforge.net/
1124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001125F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Chris Wrighta92b7b82005-07-07 18:12:23 -07001127AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001128M: Al Viro <viro@zeniv.linux.org.uk>
1129M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001130L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001131W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001132T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001134F: include/linux/audit.h
1135F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001136
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001137AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001138M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001139W: http://miguelojeda.es/auxdisplay.htm
1140W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001142F: drivers/auxdisplay/
1143F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001144
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001145AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001146M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001147W: http://www.atmel.com/products/AVR32/
1148W: http://avr32linux.org/
1149W: http://avrfreaks.net/
1150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001151F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001152
1153AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001154M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001155S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001156F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001159M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001161W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001163F: include/linux/ax25.h
1164F: include/net/ax25.h
1165F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001167B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001168M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001169L: linux-wireless@vger.kernel.org
1170W: http://linuxwireless.org/en/users/Drivers/b43
1171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001172F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001173
1174B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001175M: Larry Finger <Larry.Finger@lwfinger.net>
1176M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001177L: linux-wireless@vger.kernel.org
1178W: http://linuxwireless.org/en/users/Drivers/b43
1179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001180F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001181
Richard Purdie300abeb2007-02-07 22:21:07 +00001182BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001183M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001185F: drivers/video/backlight/
1186F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001187
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001188BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001190L: linux-hams@vger.kernel.org
1191W: http://www.baycom.org/~tom/ham/ham.html
1192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001193F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001194
1195BEFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001196M: "Sergey S. Kostyliov" <rathamahata@php4.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001198F: Documentation/filesystems/befs.txt
1199F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001200
1201BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001202M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001204F: Documentation/filesystems/bfs.txt
1205F: fs/bfs/
1206F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001207
Bryan Wu1394f032007-05-06 14:50:22 -07001208BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001209M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001210L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001211W: http://blackfin.uclinux.org
1212S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001213F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001214
Bryan Wue190d6b2007-07-17 14:43:44 +08001215BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001216M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001217L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001218W: http://blackfin.uclinux.org
1219S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001220F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001221
Mike Frysinger566da5b2007-06-11 15:31:30 +08001222BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001223M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001224L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001225W: http://blackfin.uclinux.org
1226S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001227F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001228
Bryan Wu1394f032007-05-06 14:50:22 -07001229BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001230M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001231L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001232W: http://blackfin.uclinux.org
1233S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001234F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001235
Bryan Wu1e6d3202007-07-15 02:50:02 +08001236BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001237M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001238L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001239W: http://blackfin.uclinux.org
1240S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001241F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001242
Bryan Wud24ecfc2007-05-01 23:26:32 +02001243BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001244M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001245L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001246W: http://blackfin.uclinux.org/
1247S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001248F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001251M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001252T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001254F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Joern Engel2b54aae2008-02-06 01:38:02 -08001256BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001257M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001258L: linux-mtd@lists.infradead.org
1259S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001260F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001261
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001262BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001264L: linux-bluetooth@vger.kernel.org
1265W: http://www.bluez.org/
1266S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001267F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001270M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001271L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001272W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001273T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001275F: net/bluetooth/
1276F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001279M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001280L: bonding-devel@lists.sourceforge.net
1281W: http://sourceforge.net/projects/bonding/
1282S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001283F: drivers/net/bonding/
1284F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Gary Zambrano39105892006-06-22 17:26:20 -07001286BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001287M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001288L: netdev@vger.kernel.org
1289S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001290F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001291
Michael Chan948c51e2006-06-04 02:51:39 -07001292BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001293M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001294L: netdev@vger.kernel.org
1295S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001296F: drivers/net/bnx2.*
1297F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001298
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001299BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001300M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001301L: netdev@vger.kernel.org
1302S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001303F: drivers/net/bnx2x*
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001304
Michael Chan948c51e2006-06-04 02:51:39 -07001305BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001306M: Matt Carlson <mcarlson@broadcom.com>
1307M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001308L: netdev@vger.kernel.org
1309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001310F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001311
Jing Huang7725ccf2009-09-23 17:46:15 -07001312BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001313M: Jing Huang <huangj@brocade.com>
1314L: linux-scsi@vger.kernel.org
1315S: Supported
1316F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001317
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001318BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001319M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001320L: linux-scsi@vger.kernel.org
1321S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001322F: block/bsg.c
1323F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001324
Michael Bueschff1d5c22008-07-25 01:46:10 -07001325BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001327W: http://bu3sch.de/btgpio.php
1328S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001329F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001330
Joe Percheseb1eb042009-01-21 10:49:16 -05001331BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001332M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001333L: linux-btrfs@vger.kernel.org
1334W: http://btrfs.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07001335T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001337F: Documentation/filesystems/btrfs.txt
1338F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001341M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001342L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001343W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001344T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001345S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001346F: Documentation/video4linux/bttv/
1347F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
David Howellsa5432f52009-04-20 15:46:45 +01001349CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001350M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001351L: linux-cachefs@redhat.com
1352S: Supported
1353F: Documentation/filesystems/caching/cachefiles.txt
1354F: fs/cachefiles/
1355
Jonathan Corbet77d51402007-03-22 19:44:17 -03001356CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001357M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001358L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001359T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001360S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001361F: Documentation/video4linux/cafe_ccic
1362F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001363
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001364CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001365M: Muli Ben-Yehuda <muli@il.ibm.com>
1366M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001367L: discuss@x86-64.org
1368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: arch/x86/kernel/pci-calgary_64.c
1370F: arch/x86/kernel/tce_64.c
1371F: arch/x86/include/asm/calgary.h
1372F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001373
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001374CAN NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001375M: Urs Thuermann <urs.thuermann@volkswagen.de>
1376M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001377L: socketcan-core@lists.berlios.de (subscribers-only)
1378W: http://developer.berlios.de/projects/socketcan/
1379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001380F: drivers/net/can/
1381F: include/linux/can/
1382F: include/linux/can.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001383
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001384CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001385M: Wolfgang Grandegger <wg@grandegger.com>
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001386L: socketcan-core@lists.berlios.de (subscribers-only)
1387W: http://developer.berlios.de/projects/socketcan/
1388S: Maintained
1389
Arnd Bergmannb8154542008-05-16 11:10:59 +02001390CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001392L: linuxppc-dev@ozlabs.org
1393L: cbe-oss-dev@ozlabs.org
1394W: http://www.ibm.com/developerworks/power/cell/
1395S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001396F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001397F: arch/powerpc/include/asm/spu*.h
1398F: arch/powerpc/oprofile/*cell*
1399F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001400
David Vrabel18332a82008-09-17 16:34:44 +01001401CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001402M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001403L: linux-usb@vger.kernel.org
1404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001405F: Documentation/usb/WUSB-Design-overview.txt
1406F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001407F: drivers/usb/host/hwa-hc.c
1408F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001409F: drivers/usb/wusbcore/
1410F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001411
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001412CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001413M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001414W: http://miguelojeda.es/auxdisplay.htm
1415W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001417F: drivers/auxdisplay/cfag12864b.c
1418F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001419
1420CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001421M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001422W: http://miguelojeda.es/auxdisplay.htm
1423W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001424S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001425F: drivers/auxdisplay/cfag12864bfb.c
1426F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001427
Johannes Berg704232c2007-04-23 12:20:05 -07001428CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001429M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001430L: linux-wireless@vger.kernel.org
1431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001432F: include/linux/nl80211.h
1433F: include/net/cfg80211.h
1434F: net/wireless/*
1435X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001436
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001437CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001438M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001440F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001441
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001442CISCO 10G ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001443M: Scott Feldman <scofeldm@cisco.com>
1444M: Joe Eykholt <jeykholt@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001445S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001446F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001447
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001448CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001449M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001450L: netdev@vger.kernel.org
1451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001452F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001453
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001454CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001455M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001456L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001458F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001459
Timur Tabid9e9d822008-04-24 08:45:26 +10001460CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001461M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001462L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001463S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001464F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001465
Russell Kingd4275352009-04-16 14:05:27 +01001466CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001467M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001468F: include/linux/clk.h
1469
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001470CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001471M: Abhijeet Joglekar <abjoglek@cisco.com>
1472M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001473L: linux-scsi@vger.kernel.org
1474S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001475F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001476
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001477CMPC ACPI DRIVER
1478M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1479M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001480L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001481S: Supported
1482F: drivers/platform/x86/classmate-laptop.c
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486M: coda@cs.cmu.edu
1487L: codalist@coda.cs.cmu.edu
1488W: http://www.coda.cs.cmu.edu/
1489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001490F: Documentation/filesystems/coda.txt
1491F: fs/coda/
1492F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001494COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001495M: Steve French <sfrench@samba.org>
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001496L: linux-cifs-client@lists.samba.org (moderated for non-subscribers)
1497L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001498W: http://linux-cifs.samba.org/
Joe Perches54e58812009-04-07 21:08:10 -07001499T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001500S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001501F: Documentation/filesystems/cifs.txt
1502F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001505M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001506L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001508F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001511M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001512L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001514F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001517M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001518L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001520F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001522COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001523M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001524L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001525S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001526F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001529M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001532F: Documentation/serial/computone.txt
1533F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Simon Arlott949be0f2007-03-06 02:47:46 -08001535CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001536M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001537L: accessrunner-general@lists.sourceforge.net
1538W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001541
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001542CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001543M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001544S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001545F: fs/configfs/
1546F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001547
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001548CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001549M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001550L: netdev@vger.kernel.org
1551S: Maintained
1552F: drivers/connector/
1553
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001554CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001555M: Paul Menage <menage@google.com>
1556M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001557L: containers@lists.linux-foundation.org
1558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001559F: include/linux/cgroup*
1560F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001561F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001562
Rudolf Marekbebe4672007-05-08 17:22:02 +02001563CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001564M: Rudolf Marek <r.marek@assembler.cz>
Huaxu Wan57784df2009-10-24 13:28:45 +02001565M: Huaxu Wan <huaxu.wan@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001566L: lm-sensors@lm-sensors.org
1567S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001568F: Documentation/hwmon/coretemp
1569F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001572M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573W: http://www.fi.muni.cz/~kas/cosa/
1574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001575F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Florian Fainelli4371ee32009-06-01 02:43:17 -07001577CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001578M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001579L: netdev@vger.kernel.org
1580S: Maintained
1581F: drivers/net/cpmac.c
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001584M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001585L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001587T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001589F: arch/x86/kernel/cpu/cpufreq/
1590F: drivers/cpufreq/
1591F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001594M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001596F: arch/x86/kernel/cpuid.c
1597F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Paul Jacksoned90fb42005-09-27 21:45:37 -07001599CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001600M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001601W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001602W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001604F: Documentation/cgroups/cpusets.txt
1605F: include/linux/cpuset.h
1606F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001609W: http://sourceforge.net/projects/cramfs/
1610S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001611F: Documentation/filesystems/cramfs.txt
1612F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: Mikael Starvik <starvik@axis.com>
1616M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001617L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618W: http://developer.axis.com
1619S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001620F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001623M: Herbert Xu <herbert@gondor.apana.org.au>
1624M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001626T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001628F: Documentation/crypto/
1629F: arch/*/crypto/
1630F: crypto/
1631F: drivers/crypto/
1632F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Neil Horman5b07bd52009-02-05 16:03:04 +11001634CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001635M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001636L: linux-crypto@vger.kernel.org
1637S: Maintained
1638
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001639CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001641S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001642F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001643
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001644CX18 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001645M: Andy Walls <awalls@radix.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001646L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001647L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001648T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001649W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001650W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001651S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001652F: Documentation/video4linux/cx18.txt
1653F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001654
Steve Wisee5ec3782008-05-20 14:06:33 -07001655CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001656M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001657L: netdev@vger.kernel.org
1658W: http://www.chelsio.com
1659S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001660F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001661
1662CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001663M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001664L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001665W: http://www.openfabrics.org
1666S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001667F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001670M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672W: http://www.arm.linux.org.uk/
1673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001674F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001677M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001678W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001680F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001684S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001685F: drivers/char/cyclades.c
1686F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001690S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001691F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001694M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695W: http://yaina.de/jreuter/
1696W: http://www.qsl.net/dl1bke/
1697L: linux-hams@vger.kernel.org
1698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001699F: net/ax25/af_ax25.c
1700F: net/ax25/ax25_dev.c
1701F: net/ax25/ax25_ds_*
1702F: net/ax25/ax25_in.c
1703F: net/ax25/ax25_out.c
1704F: net/ax25/ax25_timer.c
1705F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001707DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001708M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001709L: netdev@vger.kernel.org
1710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001711F: Documentation/networking/dmfe.txt
1712F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001713
1714DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001715M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001716W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001717M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001719F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001722M: Oliver Neukum <oliver@neukum.name>
1723M: Ali Akcaagac <aliakc@web.de>
1724M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001726L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727L: http://lists.twibble.org/mailman/listinfo/dc395x/
1728S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001729F: Documentation/scsi/dc395x.txt
1730F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001732DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001733M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001734L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001735W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001736S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001737F: include/linux/dccp.h
1738F: include/linux/tfrc.h
1739F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742W: http://linux-decnet.sourceforge.net
1743L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00001744S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001745F: Documentation/networking/decnet.txt
1746F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001749M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001751F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001753DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001754M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05001755L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001756S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001757F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001760M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761W: http://www.debian.org/~dz/i8k/
1762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001763F: drivers/char/i8k.c
1764F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Doug Warzecha90563ec2005-09-06 15:17:15 -07001766DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001767M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001769F: Documentation/dcdbas.txt
1770F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001771
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001772DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001773M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001774S: Maintained
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001777M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779S: Maintained
1780
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001781DEVICE-MAPPER (LVM)
1782P: Alasdair Kergon
1783L: dm-devel@redhat.com
1784W: http://sources.redhat.com/dm
1785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001786F: Documentation/device-mapper/
1787F: drivers/md/dm*
1788F: include/linux/device-mapper.h
1789F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001792M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793L: Eng.Linux@digi.com
1794W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001795S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001796F: Documentation/serial/digiepca.txt
1797F: drivers/char/epca*
1798F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Randy Dunlape7839f22008-10-12 16:11:45 -07001800DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001801M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001803F: Documentation/filesystems/dnotify.txt
1804F: fs/notify/dnotify/
1805F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001808M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1810W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1811W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1812S: Maintained
1813
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001814DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001815M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001817F: Documentation/filesystems/quota.txt
1818F: fs/quota/
1819F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Randy Dunlape7839f22008-10-12 16:11:45 -07001821DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001822M: Christine Caulfield <ccaulfie@redhat.com>
1823M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001824L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001825W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001826T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001828F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001829
Dan Williamsb3e5f262007-08-07 10:26:35 -07001830DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001831M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001832S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001833F: drivers/dma/
1834F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001835
Juerg Haefligerb8250372007-06-09 10:11:16 -04001836DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001837M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001838L: lm-sensors@lm-sensors.org
1839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001840F: Documentation/hwmon/dme1737
1841F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001842
Martin Waitzba483d52005-06-17 13:20:59 -07001843DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001844M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001845S: Maintained
1846
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001847DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001848M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001849L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001850S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001851F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001852
Joe Perches7d2c86b2009-04-07 20:59:01 -07001853DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001854M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001855L: linux-doc@vger.kernel.org
1856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001857F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001860M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861L: blinux-list@redhat.com
1862S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001863F: drivers/char/dtlk.c
1864F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001866DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001867M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001868L: linux-scsi@vger.kernel.org
1869W: http://www.adaptec.com/
1870S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001871F: drivers/scsi/dpt*
1872F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001873
Philipp Reisnerb411b362009-09-25 16:07:19 -07001874DRBD DRIVER
1875P: Philipp Reisner
1876P: Lars Ellenberg
1877M: drbd-dev@lists.linbit.com
1878L: drbd-user@lists.linbit.com
1879W: http://www.drbd.org
1880T: git git://git.drbd.org/linux-2.6-drbd.git drbd
1881T: git git://git.drbd.org/drbd-8.3.git
1882S: Supported
1883F: drivers/block/drbd/
1884F: lib/lru_cache.c
1885F: Documentation/blockdev/drbd/
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08001889T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001891F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07001892F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07001893F: fs/sysfs/
1894F: include/linux/kobj*
1895F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001898M: David Airlie <airlied@linux.ie>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899L: dri-devel@lists.sourceforge.net
Joe Perches54e58812009-04-07 21:08:10 -07001900T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001902F: drivers/gpu/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08001906L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001908F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001910DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001911M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001913F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001916M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001917L: linux-eata@i-connect.net
1918L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001920F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001923M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924L: linux-scsi@vger.kernel.org
1925S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001926F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001929M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07001930L: linux-eata@i-connect.net
1931L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001933F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07001936M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937L: ebtables-user@lists.sourceforge.net
1938L: ebtables-devel@lists.sourceforge.net
1939W: http://ebtables.sourceforge.net/
1940S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001941F: include/linux/netfilter_bridge/ebt_*.h
1942F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Michael Halcrow237fead2006-10-04 02:16:22 -07001944ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001945M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
1946M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08001947L: ecryptfs-devel@lists.launchpad.net
1948W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07001949S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001950F: Documentation/filesystems/ecryptfs.txt
1951F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07001952
Alan Coxda9bb1d2006-01-18 17:44:13 -08001953EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001954M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001955L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001956W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07001957S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001958F: Documentation/edac.txt
1959F: drivers/edac/edac_*
1960F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08001961
Borislav Petkovc476c232009-05-20 20:31:58 +02001962EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07001963M: Doug Thompson <dougthompson@xmission.com>
1964M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02001965L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
1966W: bluesmoke.sourceforge.net
1967S: Supported
1968F: drivers/edac/amd64_edac*
1969
Dave Peterson0e438e32006-03-26 01:38:55 -08001970EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07001971M: Mark Gross <mark.gross@intel.com>
1972M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001973L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001974W: bluesmoke.sourceforge.net
1975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001976F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001977
1978EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07001979M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001980L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08001981W: bluesmoke.sourceforge.net
1982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001983F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08001984
Douglas Thompson6bc78402007-07-19 01:50:12 -07001985EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07001986M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001987L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001988W: bluesmoke.sourceforge.net
1989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001990F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001991
1992EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07001993M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07001994L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07001995W: bluesmoke.sourceforge.net
1996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001997F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07001998
1999EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002000M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002001L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002002W: bluesmoke.sourceforge.net
2003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002004F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002005
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002006EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002007M: Mauro Carvalho Chehab <mchehab@redhat.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002008L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002009W: bluesmoke.sourceforge.net
2010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002011F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002012
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002013EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002014M: Ranganathan Desikan <ravi@jetztechnologies.com>
2015M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002016L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002017W: bluesmoke.sourceforge.net
2018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002019F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002020
2021EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002022M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002023L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002024W: bluesmoke.sourceforge.net
2025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002026F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002027
Dave Peterson0e438e32006-03-26 01:38:55 -08002028EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002029M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002030L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002031W: bluesmoke.sourceforge.net
2032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002033F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002034
Eric Coopere59f8792008-03-13 12:55:46 +01002035EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002036M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01002037L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05002038L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00002039W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002040S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002041F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002042
Josh Triplett0bee8d22006-07-30 03:03:58 -07002043EFS FILESYSTEM
2044W: http://aeschi.ch.eu.org/efs/
2045S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002046F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002047
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002048EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2050M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002051L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002052S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002053F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002054
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002055EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002056M: Paul Gortmaker <paul.gortmaker@windriver.com>
2057M: Matt Mackall <mpm@selenic.com>
2058M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002059L: linux-embedded@vger.kernel.org
2060S: Maintained
2061
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002062EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002063M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002064L: linux-scsi@vger.kernel.org
2065W: http://sourceforge.net/projects/lpfcxxxx
2066S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002067F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002068
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002069ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002071S: Maintained
2072F: drivers/misc/cb710/
2073F: drivers/mmc/host/cb710-mmc.*
2074F: include/linux/cb710.h
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002077M: Christopher Hoover <ch@murgatroid.com>
2078M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002080F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002082EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002083M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002084S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002085T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002086F: drivers/video/s1d13xxxfb.c
2087F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002090M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002091L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002093F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002096M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002097L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002098L: netdev@vger.kernel.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002099W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002101F: include/linux/netfilter_bridge/
2102F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002105M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002107F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109EXT2 FILE SYSTEM
Erik Mouw72be2cc2006-12-06 20:40:49 -08002110L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002112F: Documentation/filesystems/ext2.txt
2113F: fs/ext2/
2114F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116EXT3 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002117M: Andrew Morton <akpm@linux-foundation.org>
2118M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002119L: linux-ext4@vger.kernel.org
2120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002121F: Documentation/filesystems/ext3.txt
2122F: fs/ext3/
2123F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002124
2125EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002126M: "Theodore Ts'o" <tytso@mit.edu>
2127M: Andreas Dilger <adilger@sun.com>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002128L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002129W: http://ext4.wiki.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002131F: Documentation/filesystems/ext4.txt
2132F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Jean Delvaree53004e2006-01-09 23:26:14 +01002134F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002135M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002136L: lm-sensors@lm-sensors.org
2137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002138F: Documentation/hwmon/f71805f
2139F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002142M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143W: http://www.farsite.co.uk/
2144S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002145F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Akinobu Mitac5408b82007-04-23 14:41:20 -07002147FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002148M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002149S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002150F: Documentation/fault-injection/
2151F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002152
Robert Lovecae727d2010-02-16 12:16:00 -08002153FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2154M: Robert Love <robert.w.love@intel.com>
2155L: devel@open-fcoe.org
2156W: www.Open-FCoE.org
2157S: Supported
2158F: drivers/scsi/libfc/
2159F: drivers/scsi/fcoe/
2160F: include/scsi/fc/
2161F: include/scsi/libfc.h
2162F: include/scsi/libfcoe.h
2163
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002164FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002165M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002166L: linux-fsdevel@vger.kernel.org
2167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002168F: include/linux/fcntl.h
2169F: include/linux/fs.h
2170F: fs/fcntl.c
2171F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002172
2173FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002174M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002175L: linux-fsdevel@vger.kernel.org
2176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002177F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002178
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002179FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002180M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002181L: lm-sensors@lm-sensors.org
2182S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002183F: drivers/hwmon/f75375s.c
2184F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002185
Joe Perches7d2c86b2009-04-07 20:59:01 -07002186FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002187M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002188L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002189W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002190T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002191S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/firewire/
2193F: include/linux/firewire*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002194
2195FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002196S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002197F: Documentation/firmware_class/
2198F: drivers/base/firmware*.c
2199F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002200
2201FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002202M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002203W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002206
2207FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002208M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002209L: netdev@vger.kernel.org
2210S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002211F: drivers/net/wan/dlci.c
2212F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214FRAMEBUFFER LAYER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002215L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002217S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002218F: Documentation/fb/
2219F: drivers/video/fb*
2220F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Zhang Wei173acc72008-03-01 07:42:48 -07002222FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002223M: Li Yang <leoli@freescale.com>
2224M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002225L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002227F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002228
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002229FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002230M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002231L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002232L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002233S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002234F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002235
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002236FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002238L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002239L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002241F: arch/arm/plat-mxc/include/mach/imxfb.h
2242F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002243
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002244FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002245M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2246M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002247L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002248L: netdev@vger.kernel.org
2249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002250F: drivers/net/fs_enet/
2251F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002252
Timur Tabid9e9d822008-04-24 08:45:26 +10002253FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002254M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002255L: linuxppc-dev@ozlabs.org
2256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002257F: arch/powerpc/sysdev/qe_lib/
2258F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002259
Joe Perchesb55ef922009-10-26 16:49:46 -07002260FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002261M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002262L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002263L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002264S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002265F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002266
Li Yangbeaf53b2007-05-25 13:54:02 +08002267FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002268M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002269L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002270L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002271S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002272F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002273
Timur Tabid9e9d822008-04-24 08:45:26 +10002274FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002275M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002276L: linuxppc-dev@ozlabs.org
2277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002278F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002279
2280FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002281M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002282L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002283L: linuxppc-dev@ozlabs.org
2284S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002285F: sound/soc/fsl/fsl*
2286F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002289M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002292F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Pavel Machek71038f52009-01-15 13:51:02 -08002294FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002295M: Pavel Machek <pavel@ucw.cz>
2296M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002297L: linux-pm@lists.linux-foundation.org
2298S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002299F: Documentation/power/freezing-of-tasks.txt
2300F: include/linux/freezer.h
2301F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002302
David Howellsa5432f52009-04-20 15:46:45 +01002303FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002304M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002305L: linux-cachefs@redhat.com
2306S: Supported
2307F: Documentation/filesystems/caching/
2308F: fs/fscache/
2309F: include/linux/fscache*.h
2310
David Howells5ab7ffe2007-04-10 15:10:45 +01002311FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002312M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002314F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Jonathan Woithe20b93732008-06-11 10:14:56 +09302316FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002317M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002318L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002320F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302321
Miklos Szeredi04578f12005-09-09 13:10:22 -07002322FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002323M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002324L: fuse-devel@lists.sourceforge.net
2325W: http://fuse.sourceforge.net/
2326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: fs/fuse/
2328F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002331M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002333S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002334F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
2336GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338L: linux-scsi@vger.kernel.org
2339W: http://www.icp-vortex.com/
2340S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002341F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002343GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002345S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002346F: drivers/i2c/busses/i2c-gpio.c
2347F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002348
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002349GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002350M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2352S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002353F: drivers/net/wan/c101.c
2354F: drivers/net/wan/hd6457*
2355F: drivers/net/wan/hdlc*
2356F: drivers/net/wan/n2.c
2357F: drivers/net/wan/pc300too.c
2358F: drivers/net/wan/pci200syn.c
2359F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002361GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002362M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002363L: linux-arch@vger.kernel.org
2364T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2365S: Maintained
2366F: include/asm-generic
2367
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002368GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002369M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002370L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002371S: Supported
2372F: drivers/uio/uio_pci_generic.c
2373
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002374GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002375M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002376L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002377W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002378T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2379T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002381F: Documentation/filesystems/gfs2*.txt
2382F: fs/gfs2/
2383F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002384
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002385GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: Hansjoerg Lipp <hjlipp@web.de>
2387M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002388L: gigaset307x-common@lists.sourceforge.net
2389W: http://gigaset307x.sourceforge.net/
2390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002391F: Documentation/isdn/README.gigaset
2392F: drivers/isdn/gigaset/
2393F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002394
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002395GRETH 10/100/1G Ethernet MAC device driver
2396M: Kristoffer Glembo <kristoffer@gaisler.com>
2397L: netdev@vger.kernel.org
2398S: Maintained
2399F: drivers/net/greth*
2400
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002401HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002402M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002403L: lm-sensors@lm-sensors.org
2404W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002406F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002407
Andi Kleen7bc98b92009-12-16 12:19:57 +01002408HWPOISON MEMORY FAILURE HANDLING
2409M: Andi Kleen <andi@firstfloor.org>
2410L: linux-mm@kvack.org
2411L: linux-kernel@vger.kernel.org
2412T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2413S: Maintained
2414F: mm/memory-failure.c
2415F: mm/hwpoison-inject.c
2416
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002417HYPERVISOR VIRTUAL CONSOLE DRIVER
2418L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002419S: Odd Fixes
2420F: drivers/char/hvc_*
2421
Amit Shahc6100282010-02-12 10:32:19 +05302422VIRTIO CONSOLE DRIVER
2423M: Amit Shah <amit.shah@redhat.com>
2424L: virtualization@lists.linux-foundation.org
2425S: Maintained
2426F: drivers/char/virtio_console.c
2427
Konrad Rzeszutek Wilkc4d14092010-02-26 03:53:00 +00002428iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
2429M: Peter Jones <pjones@redhat.com>
2430M: Konrad Rzeszutek Wilk <konrad@kernel.org>
2431S: Maintained
2432F: drivers/firmware/iscsi_ibft*
2433
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002434GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002435M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002436L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002437T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002439F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002440
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002441GSPCA GL860 SUBDRIVER
2442M: Olivier Lorin <o.lorin@laposte.net>
2443L: linux-media@vger.kernel.org
2444T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2445S: Maintained
2446F: drivers/media/video/gspca/gl860/
2447
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002448GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002449M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002450L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002451T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002452S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002453F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002454
2455GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002456M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002457L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002458T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002460F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002461
Brian Johnson261982f2009-07-19 15:58:56 -03002462GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002463M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002464L: linux-media@vger.kernel.org
2465T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2466S: Maintained
2467F: drivers/media/video/gspca/sn9c20x.c
2468
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002469GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002470M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002471L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002472T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002473S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002474F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002475
2476GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002477M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002478W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002479L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002480T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002482F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002483
Jean Delvare5b543962005-08-15 19:51:02 +02002484HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002485L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002486W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002487S: Orphan
Jean Delvare047f4ec2009-12-09 20:35:46 +01002488F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002489F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002490F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002491
Michael Buesch844dd052006-06-26 00:24:59 -07002492HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002493M: Matt Mackall <mpm@selenic.com>
2494M: Herbert Xu <herbert@gondor.apana.org.au>
2495S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002496F: Documentation/hw_random.txt
2497F: drivers/char/hw_random/
2498F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002501M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002502L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002504F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506HAYES ESP SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002507M: "Andrew J. Robinson" <arobinso@nyx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508W: http://www.nyx.net/~arobinso
2509S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002510F: Documentation/serial/hayes-esp.txt
2511F: drivers/char/esp.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002512
2513HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002514M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002515L: iss_storagedev@hp.com
2516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002517F: Documentation/blockdev/cpqarray.txt
2518F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002519
2520HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002521M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002522L: iss_storagedev@hp.com
2523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002524F: Documentation/blockdev/cciss.txt
2525F: drivers/block/cciss*
2526F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002529M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002531F: Documentation/filesystems/hfs.txt
2532F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002535M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536L: linux-nvidia@lists.surfsouth.com
2537W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002539F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002541HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002542M: Pavel Machek <pavel@ucw.cz>
2543M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544L: linux-pm@lists.linux-foundation.org
2545S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002546F: arch/x86/power/
2547F: drivers/base/power/
2548F: kernel/power/
2549F: include/linux/suspend.h
2550F: include/linux/freezer.h
2551F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002552F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002553
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002554HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002555M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002556L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002557T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002559F: drivers/hid/
2560F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002561
Ingo Molnar38bed542007-02-22 09:09:34 +01002562HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002563M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002564S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002565F: Documentation/timers/
2566F: kernel/hrtimer.c
2567F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002570M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571L: linux-hams@vger.kernel.org
2572W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: drivers/net/hamradio/dmascc.c
2575F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002577HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002579W: http://www.highpoint-tech.com
2580S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002581F: Documentation/scsi/hptiop.txt
2582F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002585M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586L: linux-hippi@sunsite.dk
2587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002588F: include/linux/hippidevice.h
2589F: include/linux/if_hippi.h
2590F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Jouni Malinenff1d2762005-05-12 22:54:16 -04002592HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002593M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002594L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002595L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002596W: http://hostap.epitest.fi/
2597S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002598F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002599
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002600HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -05002602L: platform-driver-x86@vger.kernel.org
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002603S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002604F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002605
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002606HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002607M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002608S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002609F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002610
Joe Perches7d2c86b2009-04-07 20:59:01 -07002611HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002612M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002614F: Documentation/timers/hpet.txt
2615F: drivers/char/hpet.c
2616F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002617
2618HPET: i386
Joe Perches8b58be82009-07-29 15:04:30 -07002619M: "Venkatesh Pallipadi (Venki)" <venkatesh.pallipadi@intel.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002620S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002621F: arch/x86/kernel/hpet.c
2622F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002623
2624HPET: x86_64
Joe Perches8b58be82009-07-29 15:04:30 -07002625M: Vojtech Pavlik <vojtech@suse.cz>
Bob Piccob9b03322005-11-07 00:59:19 -08002626S: Maintained
2627
Joe Perches7d2c86b2009-04-07 20:59:01 -07002628HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002629M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002631F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002634M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002637F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Joe Perches7d2c86b2009-04-07 20:59:01 -07002639HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002640M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002641W: http://www.pharscape.org
2642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002643F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002644
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002645HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002646M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002647L: linux-input@vger.kernel.org
2648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002649F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002652M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002654F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002656I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002657M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002658L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002659S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002660F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002661
Jean Delvare5b543962005-08-15 19:51:02 +02002662I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002663M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2664M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002665L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002666W: http://i2c.wiki.kernel.org/
2667T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002669F: Documentation/i2c/
2670F: drivers/i2c/
2671F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01002672F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Till Harbaume8c76ee2007-05-01 23:26:35 +02002674I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002675M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002676L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002677W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002679F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002680
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002682M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002684F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002687M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002688T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689S: Maintained
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002692M: Tony Luck <tony.luck@intel.com>
2693M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694L: linux-ia64@vger.kernel.org
2695W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002696T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002698F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002701M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702W: http://www.uni-mainz.de/~langm000/linux.html
2703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002704F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002709F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711IBM ServeRAID RAID DRIVER
2712P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002713M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002715S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002716F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002718IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002719M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720L: linux-ide@vger.kernel.org
David S. Miller920d44e2009-06-21 16:11:33 -07002721T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002723F: Documentation/ide/
2724F: drivers/ide/
2725F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002727IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002728M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002729L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002730S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002731F: Documentation/cdrom/ide-cd
2732F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Andy Henroid27471fd2008-10-09 11:45:22 -07002734IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002735M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002736L: linux-pm@lists.linux-foundation.org
2737S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002738F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002739
Joe Perches7d2c86b2009-04-07 20:59:01 -07002740IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002741M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002743W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002744T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Stefan Richter958a29c2009-12-26 01:36:12 +01002745S: Obsolete
Stefan Richter544df552009-10-03 10:17:29 +02002746F: Documentation/debugging-via-ohci1394.txt
Joe Perches679655d2009-04-07 20:44:32 -07002747F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Sergey Lapin02cf2282009-06-08 12:18:50 +00002749IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002750M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2751M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002752L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002753W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002754T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002755S: Maintained
2756F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002757F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002758
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002759INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002760M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002761S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002762F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002765L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09002766S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002767F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002770M: Roland Dreier <rolandd@cisco.com>
2771M: Sean Hefty <sean.hefty@intel.com>
2772M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002773L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774W: http://www.openib.org/
Joe Perches54e58812009-04-07 21:08:10 -07002775T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002777F: Documentation/infiniband/
2778F: drivers/infiniband/
2779F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Robert Lovec9f04f52005-07-15 12:21:07 -04002781INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002782M: John McCutchan <john@johnmccutchan.com>
2783M: Robert Love <rlove@rlove.org>
2784M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002786F: Documentation/filesystems/inotify.txt
2787F: fs/notify/inotify/
2788F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002789
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002790INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002791M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2792M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002793L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002794T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002796F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002797
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002798INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Joe Perches8b58be82009-07-29 15:04:30 -07002799M: Sylvain Meyer <sylvain.meyer@worldonline.fr>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002800L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: Documentation/fb/intelfb.txt
2803F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002806M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002807L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002809F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302811INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002812M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002813L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302814W: http://www.lesswatts.org/projects/acpi/
2815S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002816F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002819M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002821F: arch/x86/kernel/microcode_core.c
2822F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002824INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08002825M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002826S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002827F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002828
David Woodhouse6c8909b2008-10-18 16:12:17 +01002829INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002830M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002831L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002832T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002834F: drivers/pci/intel-iommu.c
2835F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002836
Dan Williamsb3e5f262007-08-07 10:26:35 -07002837INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002838M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07002839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002840F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002841
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002842INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002843M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002845F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
2846F: arch/arm/mach-ixp4xx/include/mach/npe.h
2847F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
2848F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
2849F: drivers/net/arm/ixp4xx_eth.c
2850F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002851
Michael Buesch844dd052006-06-26 00:24:59 -07002852INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002853M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07002854S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002855F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07002856
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002857INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002858M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002859L: netdev@vger.kernel.org
2860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002861F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08002862
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002863INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07002864M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2865M: Jesse Brandeburg <jesse.brandeburg@intel.com>
2866M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002867M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002868M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
2869M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08002870L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08002871W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002873F: drivers/net/e100.c
2874F: drivers/net/e1000/
2875F: drivers/net/e1000e/
2876F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08002877F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07002878F: drivers/net/ixgb/
2879F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
James Ketrenos826d2ab2005-11-07 18:56:59 -06002881INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002882M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002884M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002885L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002886W: http://ipw2100.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002887S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002888F: Documentation/networking/README.ipw2100
2889F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002890
2891INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Zhu Yi <yi.zhu@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07002893M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002894M: Intel Linux Wireless <ilw@linux.intel.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07002895L: linux-wireless@vger.kernel.org
James Ketrenos826d2ab2005-11-07 18:56:59 -06002896W: http://ipw2200.sourceforge.net
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002897S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002898F: Documentation/networking/README.ipw2200
2899F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06002900
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002901INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002903M: linux-wimax@intel.com
2904L: wimax@linuxwimax.org
2905S: Supported
2906W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07002907F: Documentation/wimax/README.i2400m
2908F: drivers/net/wimax/i2400m/
2909F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08002910
Zhu Yib481de92007-09-25 17:54:57 -07002911INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Zhu Yi <yi.zhu@intel.com>
2913M: Reinette Chatre <reinette.chatre@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07002914M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07002915L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07002916W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07002917T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07002918S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002919F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07002920
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08002921INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
2922M: Samuel Ortiz <samuel.ortiz@intel.com>
2923M: Zhu Yi <yi.zhu@intel.com>
2924M: Intel Linux Wireless <ilw@linux.intel.com>
2925L: linux-wireless@vger.kernel.org
2926S: Supported
2927W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
2928F: drivers/net/wireless/iwmc3200wifi/
2929
Ralf Baechlecb109a02007-08-30 23:56:30 -07002930IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002931M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932L: linux-mips@linux-mips.org
2933S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002934F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Ralf Baechlecb109a02007-08-30 23:56:30 -07002936IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: Pat Gefre <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
Joe Perches8b58be82009-07-29 15:04:30 -07002943M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002945F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Francois Romieu1202d6f2007-09-17 17:13:55 -07002947IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002948M: Francois Romieu <romieu@fr.zoreil.com>
2949M: Sorbica Shieh <sorbica@icplus.com.tw>
2950M: Jesse Huang <jesse@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07002951L: netdev@vger.kernel.org
2952S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002953F: drivers/net/ipg.c
Francois Romieu1202d6f2007-09-17 17:13:55 -07002954
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002955IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002956M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002957L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07002958T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002960F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08002961
Corey Minyard4409ebe2006-04-20 02:43:12 -07002962IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002963M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08002964L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07002965W: http://openipmi.sourceforge.net/
2966S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002967F: Documentation/IPMI.txt
2968F: drivers/char/ipmi/
2969F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07002970
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002971IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002972M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002973L: linux-scsi@vger.kernel.org
2974W: http://www.adaptec.com/
2975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002976F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002977
2978IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07002979M: Wensong Zhang <wensong@linux-vs.org>
2980M: Simon Horman <horms@verge.net.au>
2981M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002982L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002983L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002985F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07002986F: include/net/ip_vs.h
2987F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07002988F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Randy Dunlape7839f22008-10-12 16:11:45 -07002990IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002991M: Jiri Kosina <jkosina@suse.cz>
2992M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01002993S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07002994T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07002995F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01002996
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002997IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002998M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002999L: netdev@vger.kernel.org
3000S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003001F: include/linux/ipx.h
3002F: include/net/ipx.h
3003F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003006M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003007L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003009S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003010T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003011F: Documentation/networking/irda.txt
3012F: drivers/net/irda/
3013F: include/net/irda/
3014F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003016ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003017M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003019F: Documentation/isapnp.txt
3020F: drivers/pnp/isapnp/
3021F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003022
Mike Christie14816b12007-11-28 16:22:06 -08003023ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003024M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08003025L: open-iscsi@googlegroups.com
3026W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003027T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003029F: drivers/scsi/*iscsi*
3030F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003034L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003036T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003038F: Documentation/isdn/
3039F: drivers/isdn/
3040F: include/linux/isdn.h
3041F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003044M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003045L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046W: http://www.melware.de
3047S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003048F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
Hans Verkuil91821ff2007-12-02 09:35:33 -03003050IVTV VIDEO4LINUX DRIVER
Hans Verkuil8e21cbb2010-01-13 16:56:48 -02003051M: Andy Walls <awalls@radix.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003052L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003053L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003054T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003055W: http://www.ivtvdriver.org
3056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003057F: Documentation/video4linux/*.ivtv
3058F: drivers/media/video/ivtv/
3059F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003060
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003061JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003062M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003063L: jfs-discussion@lists.sourceforge.net
3064W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003065T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003066S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003067F: Documentation/filesystems/jfs.txt
3068F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003069
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003070JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003071M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003072L: netdev@vger.kernel.org
3073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003074F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003075
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003077M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003078L: linux-mtd@lists.infradead.org
3079W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: fs/jffs2/
3082F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
Josh Triplettde456d32006-07-30 03:04:00 -07003084JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003085M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003086M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003087L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: fs/jbd*/
3090F: include/linux/ext*jbd*.h
3091F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003092
Rudolf Marek4660cb32006-10-08 22:01:26 +02003093K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003094M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003095L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003097F: Documentation/hwmon/k8temp
3098F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
3100KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07003101M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003102L: linux-kbuild@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003104F: Documentation/kbuild/kconfig-language.txt
3105F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Vivek Goyalea6c2082006-05-20 14:59:55 -07003107KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Vivek Goyal <vgoyal@redhat.com>
3109M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003110L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003111W: http://lse.sourceforge.net/kdump/
3112S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003113F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003116M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117L: autofs@linux.kernel.org
3118S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003119F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
3121KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003122M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123L: autofs@linux.kernel.org
3124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003125F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Joe Perches7d2c86b2009-04-07 20:59:01 -07003127KERNEL BUILD
Michal Marek5ce45962009-12-14 17:57:43 -08003128M: Michal Marek <mmarek@suse.cz>
3129T: git git://repo.or.cz/linux-kbuild.git for-next
3130T: git git://repo.or.cz/linux-kbuild.git for-linus
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003131L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003133F: Documentation/kbuild/
3134F: Makefile
3135F: scripts/Makefile.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003138L: kernel-janitors@vger.kernel.org
Joe Perchesee709b02009-10-26 16:49:43 -07003139W: http://janitor.kernelnewbies.org/
3140S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003142KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003143M: "J. Bruce Fields" <bfields@fieldses.org>
3144M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003145L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003147S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003148F: fs/nfsd/
3149F: include/linux/nfsd/
3150F: fs/lockd/
3151F: fs/nfs_common/
3152F: net/sunrpc/
3153F: include/linux/lockd/
3154F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Avi Kivity426d62e2006-12-13 00:34:03 -08003156KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003157M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003158M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003159L: kvm@vger.kernel.org
3160W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003161S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003162F: Documentation/*/kvm.txt
3163F: arch/*/kvm/
3164F: arch/*/include/asm/kvm*
3165F: include/linux/kvm*
3166F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003167
Joerg Roedelad8003d2008-09-10 20:01:07 +02003168KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003169M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003170L: kvm@vger.kernel.org
3171W: http://kvm.qumranet.com
3172S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003173F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003174F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003175
Hollis Blanchard513014b2008-04-16 23:28:08 -05003176KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Joe Perches8b58be82009-07-29 15:04:30 -07003177M: Hollis Blanchard <hollisb@us.ibm.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003178L: kvm-ppc@vger.kernel.org
3179W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003180S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003181F: arch/powerpc/include/asm/kvm*
3182F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003183
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003184KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003185M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003186L: kvm-ia64@vger.kernel.org
3187W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003188S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003189F: Documentation/ia64/kvm.txt
3190F: arch/ia64/include/asm/kvm*
3191F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003192
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003193KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003194M: Carsten Otte <cotte@de.ibm.com>
3195M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003196M: linux390@de.ibm.com
3197L: linux-s390@vger.kernel.org
3198W: http://www.ibm.com/developerworks/linux/linux390/
3199S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003200F: Documentation/s390/kvm.txt
3201F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003202F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003203F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003204
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003205KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003207W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003208L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003210F: include/linux/kexec.h
3211F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003212
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003213KGDB
Joe Perches8b58be82009-07-29 15:04:30 -07003214M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003215L: kgdb-bugreport@lists.sourceforge.net
3216S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003217F: Documentation/DocBook/kgdb.tmpl
3218F: drivers/misc/kgdbts.c
3219F: drivers/serial/kgdboc.c
3220F: include/linux/kgdb.h
3221F: kernel/kgdb.c
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003222
Pekka Enberg456db8c2008-04-28 22:47:29 +03003223KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003224M: Vegard Nossum <vegardno@ifi.uio.no>
Joe Perches410d7a92009-11-17 14:06:15 -08003225M: Pekka Enberg <penberg@cs.helsinki.fi>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003226S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003227F: Documentation/kmemcheck.txt
3228F: arch/x86/include/asm/kmemcheck.h
3229F: arch/x86/mm/kmemcheck/
3230F: include/linux/kmemcheck.h
3231F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003232
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003233KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003235S: Maintained
3236F: Documentation/kmemleak.txt
3237F: include/linux/kmemleak.h
3238F: mm/kmemleak.c
3239F: mm/kmemleak-test.c
3240
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003241KMEMTRACE
Joe Perches8b58be82009-07-29 15:04:30 -07003242M: Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003243S: Maintained
Joe Perchesdc8c7f82009-04-21 12:24:45 -07003244F: Documentation/trace/kmemtrace.txt
Joe Perches898f96f2009-06-18 16:49:25 -07003245F: include/linux/kmemtrace.h
Joe Perches679655d2009-04-07 20:44:32 -07003246F: kernel/trace/kmemtrace.c
Eduard - Gabriel Munteanub9ce08c2008-08-10 20:14:03 +03003247
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003248KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003249M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3250M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3251M: "David S. Miller" <davem@davemloft.net>
3252M: Masami Hiramatsu <mhiramat@redhat.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003254F: Documentation/kprobes.txt
3255F: include/linux/kprobes.h
3256F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003257
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003258KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003259M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003260W: http://miguelojeda.es/auxdisplay.htm
3261W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: Documentation/auxdisplay/ks0108
3264F: drivers/auxdisplay/ks0108.c
3265F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003269S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003270F: Documentation/networking/lapb-module.txt
3271F: include/*/lapb.h
3272F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276L: linux-scsi@vger.kernel.org
3277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003278F: Documentation/scsi/53c700.txt
3279F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
Richard Purdie263de9b2006-05-15 09:44:16 -07003281LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003282M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003284F: drivers/leds/
3285F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003286
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003288M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289L: legousb-devel@lists.sourceforge.net
3290W: http://legousb.sourceforge.net/
3291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003292F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
Rusty Russell568a17f2007-10-25 14:12:24 +10003294LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003295M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003296L: lguest@ozlabs.org
3297W: http://lguest.ozlabs.org/
3298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003299F: Documentation/lguest/
3300F: arch/x86/lguest/
3301F: drivers/lguest/
3302F: include/linux/lguest*.h
3303F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003304
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003306M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307W: http://www.ibm.com/linux/ltc/projects/ppc
3308S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003309F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003311LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003312M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3313M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314W: http://www.penguinppc.org/
3315L: linuxppc-dev@ozlabs.org
Joe Perches54e58812009-04-07 21:08:10 -07003316T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003318F: Documentation/powerpc/
3319F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
3321LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003322M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323W: http://www.penguinppc.org/
3324L: linuxppc-dev@ozlabs.org
3325S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003326F: arch/powerpc/platforms/powermac/
3327F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Grant Likely77a76362008-07-12 12:11:43 -06003329LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003330M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003332T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003334F: arch/powerpc/platforms/512x/
3335F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
3337LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003338M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3339M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003341L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003342T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003344F: arch/powerpc/platforms/40x/
3345F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Grant Likely260c02a2007-10-02 12:15:34 +10003347LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003348M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003349W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003350L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003351T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003353F: arch/powerpc/*/*virtex*
3354F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Tom Rinie93adf12005-07-26 12:49:53 -07003356LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003357M: Vitaly Bordug <vitb@kernel.crashing.org>
3358M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003359W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003360L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003361S: Maintained
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003364M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003365W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003366L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003367S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003368F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
Olof Johanssonab06ff32006-09-06 14:44:54 -05003370LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003371M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003372W: http://www.pasemi.com/
3373L: linuxppc-dev@ozlabs.org
3374S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003375F: arch/powerpc/platforms/pasemi/
3376F: drivers/*/*pasemi*
3377F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003378
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003380M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003381L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003382T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383S: Supported
3384
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003385LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003386M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003388F: include/linux/llc.h
3389F: include/net/llc*
3390F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003391
Pavel Machek455fbdd2008-11-12 13:27:02 -08003392LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003393M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003394S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003395F: Documentation/hwmon/lis3lv02d
3396F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003397
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003398LM73 HARDWARE MONITOR DRIVER
3399M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3400L: lm-sensors@lm-sensors.org
3401S: Maintained
3402F: drivers/hwmon/lm73.c
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003405M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003406L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003408F: Documentation/hwmon/lm83
3409F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
3411LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003412M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003413L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003415F: Documentation/hwmon/lm90
3416F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003418LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003419M: Peter Zijlstra <peterz@infradead.org>
3420M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003421T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003422S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003423F: Documentation/lockdep*.txt
3424F: Documentation/lockstat.txt
3425F: include/linux/lockdep.h
3426F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003427
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003428LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003429M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003430L: linux-ntfs-dev@lists.sourceforge.net
3431W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003433F: Documentation/ldm.txt
3434F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003436LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003437M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003438M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003439L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003440L: linux-scsi@vger.kernel.org
3441W: http://www.lsilogic.com/support
3442S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003443F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003446M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447L: linux-scsi@vger.kernel.org
3448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003449F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Mike Frysinger81365c32008-10-29 14:01:12 -07003451LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08003452M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
3453M: Garrett Cooper <yanegomi@gmail.com>
3454M: Mike Frysinger <vapier@gentoo.org>
3455M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07003456L: ltp-list@lists.sourceforge.net (subscribers-only)
3457W: http://ltp.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003458T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
Mike Frysinger81365c32008-10-29 14:01:12 -07003459S: Maintained
3460
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003461M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003462M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003463L: linux-m32r@ml.linux-m32r.org
3464L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3465W: http://www.linux-m32r.org/
3466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003467F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003468
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003470M: Geert Uytterhoeven <geert@linux-m68k.org>
3471M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472L: linux-m68k@lists.linux-m68k.org
3473W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003474T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003476F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003477F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003480M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003482L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003484F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
3486M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003487M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488W: http://www.tazenda.demon.co.uk/phil/linux-hp
3489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003490F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Jiri Benc64a327a2007-05-05 11:47:08 -07003492MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003493M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003494L: linux-wireless@vger.kernel.org
3495W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003496T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003498F: Documentation/networking/mac80211-injection.txt
3499F: include/net/mac80211.h
3500F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003501
Stefano Brivio1036d862007-12-23 04:46:27 +01003502MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003503M: Stefano Brivio <stefano.brivio@polimi.it>
3504M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003505L: linux-wireless@vger.kernel.org
3506W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003507T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003509F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003510
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003511MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003513L: netdev@vger.kernel.org
3514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: drivers/net/macvlan.c
3516F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003517
Michael Kerriskfaf16682005-07-31 22:34:47 -07003518MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003520W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003521L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003522S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003523
Stefano Brivio74cda162007-11-19 20:27:46 +01003524MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003525M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003526L: libertas-dev@lists.infradead.org
3527S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003528F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003529
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003530MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003531M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003532L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003533S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003534F: drivers/net/mv643xx_eth.*
3535F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003537MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01003538M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003539L: linux-wireless@vger.kernel.org
Lennert Buytenheka040d532010-02-23 09:34:38 +01003540S: Maintained
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003541F: drivers/net/wireless/mwl8k.c
3542
Pierre Ossman2a695672009-03-16 19:52:26 +01003543MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003544M: Nicolas Pitre <nico@fluxnic.net>
Pierre Ossman2a695672009-03-16 19:52:26 +01003545S: Maintained
3546
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003547MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003548M: Mirko Lindner <mlindner@syskonnect.de>
3549M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003550W: http://www.syskonnect.com
3551S: Supported
3552
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003554M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003555L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003557F: drivers/video/matrox/matroxfb_*
3558F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003560MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003561M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003562L: lm-sensors@lm-sensors.org
3563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003564F: Documentation/hwmon/max6650
3565F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003566
Joe Perches127c49a2009-04-08 08:34:04 -07003567MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003568M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003569P: LinuxTV.org Project
3570L: linux-media@vger.kernel.org
3571W: http://linuxtv.org
3572T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3573S: Maintained
3574F: Documentation/dvb/
3575F: Documentation/video4linux/
3576F: drivers/media/
3577F: include/media/
3578F: include/linux/dvb/
3579F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003580
3581MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003582M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003583L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003584W: http://megaraid.lsilogic.com
3585S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003586F: Documentation/scsi/megaraid.txt
3587F: drivers/scsi/megaraid.*
3588F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003589
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003590MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592W: http://www.linux-mm.org
3593S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003594F: include/linux/mm.h
3595F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003596
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003597MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003598M: Balbir Singh <balbir@linux.vnet.ibm.com>
3599M: Pavel Emelyanov <xemul@openvz.org>
3600M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003601L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003603F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003606M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607W: http://www.linux-mtd.infradead.org/
3608L: linux-mtd@lists.infradead.org
Josh Boyer2c560ac2005-11-23 15:43:57 -08003609T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003611F: drivers/mtd/
3612F: include/linux/mtd/
3613F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Michal Simekc6375b02009-03-27 14:25:52 +01003615MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003617L: microblaze-uclinux@itee.uq.edu.au
3618W: http://www.monstr.eu/fdt/
3619T: git git://git.monstr.eu/linux-2.6-microblaze.git
3620S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003621F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
3623MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003624M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003626F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
3628MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003629M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003630W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003632T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003634F: Documentation/mips/
3635F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
3637MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003638M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: Documentation/ia64/mca.txt
3641F: Documentation/mca.txt
3642F: drivers/mca/
3643F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
3645MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003646M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003648F: include/linux/module.h
3649F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003652M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653W: http://popies.net/meye/
3654S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003655F: Documentation/video4linux/meye.txt
3656F: drivers/media/video/meye.*
3657F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Pavel Pisac58ff042007-05-16 01:10:41 +02003659MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003660M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003663F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003664
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003666M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003668F: drivers/input/mouse/
3669F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Jiri Slabyb9705b62008-04-30 00:53:48 -07003671MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003672M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003674F: Documentation/serial/moxa-smartio
3675F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003676
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003677MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003678M: Lennart Poettering <mzxreary@0pointer.de>
Matthew Garrettd0944852010-02-11 10:40:13 -05003679L: platform-driver-x86@vger.kernel.org
Joe Perches04bdfb92007-12-22 14:03:27 -08003680W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003681W: http://0pointer.de/lennart/tchibo.html
3682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003683F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003684
Anisse Astier0f1006b2009-12-17 11:28:49 +01003685MSI WMI SUPPORT
3686M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05003687L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01003688S: Supported
3689F: drivers/platform/x86/msi-wmi.c
3690
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003691MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003692M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003693T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003694S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003695F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003696
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003697MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossman3822a0e32009-07-31 12:27:28 +02003698S: Orphan
Andrew Mortonb2503a92009-08-18 14:11:12 -07003699L: linux-mmc@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -07003700F: drivers/mmc/
3701F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003702
David Brownell15a05802007-08-08 09:12:54 -07003703MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003704M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003705S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003706F: drivers/mmc/host/mmc_spi.c
3707F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003708
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003710M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003712F: Documentation/sound/oss/MultiSound
3713F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714
Jiri Slabyd7354102006-12-08 02:38:35 -08003715MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003718F: drivers/char/isicom.c
3719F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003720
Felipe Balbi550a7372008-07-24 12:27:36 +03003721MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003722M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003723L: linux-usb@vger.kernel.org
Felipe Balbi8a700f32009-12-15 11:08:45 +02003724T: git git://gitorious.org/usb/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003725S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003726F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003727
Brice Goglin2d3cf582008-05-17 12:45:36 +02003728MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003729M: Andrew Gallatin <gallatin@myri.com>
3730M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003731L: netdev@vger.kernel.org
3732W: http://www.myri.com/scs/download-Myri10GE.html
3733S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003734F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003735
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003737M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003739F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
3741NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003742M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003744F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
3746NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003747M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748L: linux-scsi@vger.kernel.org
3749S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003750F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003752NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: Faisal Latif <faisal.latif@intel.com>
3754M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003755L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003756W: http://www.neteffect.com
3757S: Supported
3758F: drivers/infiniband/hw/nes/
3759
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003760NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003761M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003762L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003763S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003764F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003765
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003766NETERION (S2IO) 10GbE DRIVER (xframe/vxge)
Joe Perches8b58be82009-07-29 15:04:30 -07003767M: Ramkrishna Vepa <ram.vepa@neterion.com>
3768M: Rastapur Santosh <santosh.rastapur@neterion.com>
3769M: Sivakumar Subramani <sivakumar.subramani@neterion.com>
3770M: Sreenivasa Honnur <sreenivasa.honnur@neterion.com>
3771M: Anil Murthy <anil.murthy@neterion.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003772L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003773W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3774W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003775S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003776F: Documentation/networking/s2io.txt
3777F: drivers/net/s2io*
Jiri Slaby4a584482007-08-30 23:56:39 -07003778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779NETFILTER/IPTABLES/IPCHAINS
3780P: Rusty Russell
3781P: Marc Boucher
3782P: James Morris
3783P: Harald Welte
3784P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003786L: netfilter-devel@vger.kernel.org
3787L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003788L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789W: http://www.netfilter.org/
3790W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08003791T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003793F: include/linux/netfilter*
3794F: include/linux/netfilter/
3795F: include/net/netfilter/
3796F: net/*/netfilter.c
3797F: net/*/netfilter/
3798F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799
Paul Moore4cc67732006-09-25 15:57:13 -07003800NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003801M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003802W: http://netlabel.sf.net
3803L: netdev@vger.kernel.org
3804S: Supported
Joe Perches80811492009-04-08 20:20:27 -07003805F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07003806F: include/net/netlabel.h
3807F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07003808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02003812W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003814F: include/linux/netrom.h
3815F: include/net/netrom.h
3816F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Pavel Machek5ddb88c2006-09-29 02:01:29 -07003818NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003819M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003821F: Documentation/blockdev/nbd.txt
3822F: drivers/block/nbd.c
3823F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Neil Horman6e436502009-10-05 03:56:55 +00003825NETWORK DROP MONITOR
3826M: Neil Horman <nhorman@tuxdriver.com>
3827L: netdev@vger.kernel.org
3828S: Maintained
3829W: https://fedorahosted.org/dropwatch/
3830F: net/core/drop_monitor.c
3831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003834L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003835W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00003836W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00003837T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08003838T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003840F: net/
3841F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003842F: include/linux/in.h
3843F: include/linux/net.h
3844F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
3846NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: "David S. Miller" <davem@davemloft.net>
3848M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
3849M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
3850M: James Morris <jmorris@namei.org>
3851M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
3852M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003853L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003854T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003856F: net/ipv4/
3857F: net/ipv6/
3858F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
James Morris10e2ff12007-08-25 14:41:28 -07003860NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07003861M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07003862L: netdev@vger.kernel.org
3863S: Maintained
3864
John W. Linville29f8f632006-01-18 14:52:48 -08003865NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08003867L: linux-wireless@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003868T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08003869S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07003870F: net/mac80211/
3871F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07003872F: net/wireless/
3873F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07003874F: include/linux/wireless.h
Joe Perches34b921c2009-08-07 13:16:15 -07003875F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08003876
Joe Perches788873a2009-04-16 09:38:45 +00003877NETWORKING DRIVERS
3878L: netdev@vger.kernel.org
3879W: http://www.linuxfoundation.org/en/Net
3880T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08003881T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00003882S: Odd Fixes
3883F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00003884F: include/linux/if_*
3885F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00003886
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003887NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00003888M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003889L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00003890W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003891S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003892F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04003893
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003894NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07003895M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05003896L: linux-nfs@vger.kernel.org
3897W: http://client.linux-nfs.org
3898T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003900F: fs/lockd/
3901F: fs/nfs/
3902F: fs/nfs_common/
3903F: net/sunrpc/
3904F: include/linux/lockd/
3905F: include/linux/nfs*
3906F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003909M: Jan-Pascal van Best <janpascal@vanbest.org>
3910M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003911L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003913F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003915NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09003917L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003918W: http://www.nilfs.org/en/
3919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003920F: Documentation/filesystems/nilfs2.txt
3921F: fs/nilfs2/
3922F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07003923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003925M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3927S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003928F: Documentation/scsi/NinjaSCSI.txt
3929F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003932M: GOTO Masanori <gotom@debian.or.jp>
3933M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
3935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003936F: Documentation/scsi/NinjaSCSI.txt
3937F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003940M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07003942W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07003943T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003945F: Documentation/filesystems/ntfs.txt
3946F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003948NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003949M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003950L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003952F: drivers/video/riva/
3953F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Tony Lindgrenf5525782009-05-28 13:23:53 -07003955OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07003956M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003957L: linux-omap@vger.kernel.org
3958W: http://www.muru.com/linux/omap/
3959W: http://linux.omap.com/
3960T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
3961S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07003962F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07003963
3964OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003965M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003966L: linux-omap@vger.kernel.org
3967S: Maintained
3968F: arch/arm/*omap*/*clock*
3969
3970OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003971M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003972L: linux-omap@vger.kernel.org
3973S: Maintained
3974F: arch/arm/*omap*/*pm*
3975
3976OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003977M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07003978L: alsa-devel@alsa-project.org (subscribers-only)
3979L: linux-omap@vger.kernel.org
3980S: Maintained
3981F: sound/soc/omap/
3982
3983OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen3043c102010-01-07 13:06:51 +02003984M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003985L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07003986L: linux-omap@vger.kernel.org
3987S: Maintained
3988F: drivers/video/omap/
3989
Tomi Valkeinen676eec02010-01-07 13:18:04 +02003990OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03003991M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
3992L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02003993L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03003994S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02003995F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03003996F: Documentation/arm/OMAP/DSS
3997
Tony Lindgrenf5525782009-05-28 13:23:53 -07003998OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003999M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004000L: linux-omap@vger.kernel.org
4001S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004002F: drivers/mmc/host/omap.c
4003
4004OMAP HS MMC SUPPORT
4005M: Madhusudhan Chikkature <madhu.cr@ti.com>
4006L: linux-omap@vger.kernel.org
4007S: Maintained
4008F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004009
4010OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004011M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004012S: Maintained
4013F: drivers/char/hw_random/omap-rng.c
4014
4015OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004016M: Felipe Balbi <felipe.balbi@nokia.com>
4017M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004018L: linux-usb@vger.kernel.org
4019L: linux-omap@vger.kernel.org
4020S: Maintained
4021
Bob Copeland0ad122d2008-07-25 19:45:18 -07004022OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004023M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004024L: linux-karma-devel@lists.sourceforge.net
4025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004026F: Documentation/filesystems/omfs.txt
4027F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004028
Harald Weltec1986ee2005-11-13 16:06:29 -08004029OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004030M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004032F: drivers/char/pcmcia/cm4000_cs.c
4033F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004034
Harald Welte77c44ab2005-11-13 16:06:26 -08004035OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004036M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004038F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004039
Jonathan Corbet77d51402007-03-22 19:44:17 -03004040OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004041M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004042L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004043T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004045F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004046
Thomas Gleixner431bca72007-05-02 09:31:35 +02004047ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004048M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004049L: linux-mtd@lists.infradead.org
4050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004051F: drivers/mtd/onenand/
4052F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004053
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004055M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056L: osst-users@lists.sourceforge.net
4057L: linux-scsi@vger.kernel.org
4058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004059F: drivers/scsi/osst*
4060F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004062OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004063M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004064L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004066F: Documentation/i2c/busses/i2c-ocores
4067F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004068
Grant Likely860c44c2009-10-26 16:49:49 -07004069OPEN FIRMWARE AND FLATTENED DEVICE TREE
4070M: Grant Likely <grant.likely@secretlab.ca>
4071L: devicetree-discuss@lists.ozlabs.org
4072W: http://fdt.secretlab.ca
4073S: Maintained
4074F: drivers/of
4075F: include/linux/of*.h
4076K: of_get_property
4077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004079M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080L: oprofile-list@lists.sf.net
4081S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004082F: arch/*/oprofile/
4083F: drivers/oprofile/
4084F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004086ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004087M: Mark Fasheh <mfasheh@suse.com>
4088M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004089L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4090W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004091T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004092S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004093F: Documentation/filesystems/ocfs2.txt
4094F: Documentation/filesystems/dlmfs.txt
4095F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004096
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004098M: Pavel Roskin <proski@gnu.org>
4099M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07004100L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004101L: orinoco-users@lists.sourceforge.net
4102L: orinoco-devel@lists.sourceforge.net
4103W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004105F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004107OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004108M: Boaz Harrosh <bharrosh@panasas.com>
4109M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004110L: osd-dev@open-osd.org
4111W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004112T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004113S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004114F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004115F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004116F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004117
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004118P54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004119M: Michael Wu <flamingice@sourmilk.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004120L: linux-wireless@vger.kernel.org
4121W: http://prism54.org
Joe Perches54e58812009-04-07 21:08:10 -07004122T: git git://git.kernel.org/pub/scm/linux/kernel/git/mwu/mac80211-drivers.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004123S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004124F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004125
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004126PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004127M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004128L: netdev@vger.kernel.org
4129S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004130F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004131
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004132PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004133M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004134L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004135S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004136F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004137
Harald Welte709ee532008-09-23 17:46:57 +02004138PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004139M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004140L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004143
David Howells4fa97182008-10-13 10:42:44 +01004144PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004145M: David Howells <dhowells@redhat.com>
4146M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004147L: linux-am33-list@redhat.com (moderated for non-subscribers)
4148W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004150F: Documentation/mn10300/
4151F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004152
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004154L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004155S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004156F: drivers/parport/
4157F: include/linux/parport*.h
4158F: drivers/char/ppdev.c
4159F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004161PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004162M: Jeremy Fitzhardinge <jeremy@xensource.com>
4163M: Chris Wright <chrisw@sous-sol.org>
4164M: Alok Kataria <akataria@vmware.com>
4165M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004166L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004168F: Documentation/ia64/paravirt_ops.txt
4169F: arch/*/kernel/paravirt*
4170F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004171
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004173M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004174L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175W: http://www.torque.net/linux-pp.html
4176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004177F: Documentation/blockdev/paride.txt
4178F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
4180PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004181M: Kyle McMartin <kyle@mcmartin.ca>
4182M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004183M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004184L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185W: http://www.parisc-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07004186T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004188F: arch/parisc/
4189F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Jim Cromie1662d322006-10-06 00:43:59 -07004191PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004192M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004193L: lm-sensors@lm-sensors.org
4194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004195F: Documentation/hwmon/pc87360
4196F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004197
4198PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004199M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004200S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004201F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004202
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004203PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004204M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004205S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004206F: drivers/leds/leds-pca9532.c
4207F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004208
Wolfram Sanga1867d32009-09-18 22:45:51 +02004209PCA9564/PCA9665 I2C BUS DRIVER
4210M: Wolfram Sang <w.sang@pengutronix.de>
4211L: linux-i2c@vger.kernel.org
4212S: Maintained
4213F: drivers/i2c/algos/i2c-algo-pca.c
4214F: drivers/i2c/busses/i2c-pca-*
4215F: include/linux/i2c-algo-pca.h
4216F: include/linux/i2c-pca-platform.h
4217
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004218PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004219M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004220L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004221S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004222F: Documentation/PCI/pci-error-recovery.txt
4223F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004224
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004226M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004227L: linux-pci@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004228T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004230F: Documentation/PCI/
4231F: drivers/pci/
4232F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004234PCI HOTPLUG
4235M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004236L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004237S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004238F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004239
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004241P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004242L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004243W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004244T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004246F: Documentation/pcmcia/
4247F: drivers/pcmcia/
4248F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004251M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004252L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004254F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004256PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004257M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: include/linux/delayacct.h
4260F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004261
Ingo Molnar57c0c152009-09-21 12:20:38 +02004262PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4264M: Paul Mackerras <paulus@samba.org>
4265M: Ingo Molnar <mingo@elte.hu>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004266S: Supported
Vincent Legolla0032362009-10-13 14:48:14 +02004267F: kernel/perf_event.c
4268F: include/linux/perf_event.h
4269F: arch/*/*/kernel/perf_event.c
4270F: arch/*/include/asm/perf_event.h
4271F: arch/*/lib/perf_event.c
4272F: arch/*/kernel/perf_callchain.c
4273F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004274
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004275PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004276M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004277L: linux-abi-devel@lists.sourceforge.net
4278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004279F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004280
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004282M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283L: linux-mtd@lists.infradead.org
4284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004285F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286
Peter Osterlund249a6772005-09-27 21:45:30 -07004287PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004288M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004289S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004290F: drivers/block/pktcdvd.c
4291F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004292
Anil Ravindranath89a36812009-08-25 17:35:18 -07004293PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004294M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004295L: linux-scsi@vger.kernel.org
4296W: http://www.pmc-sierra.com/
4297S: Supported
4298F: drivers/scsi/pmcraid.*
4299
jack wangdbf9bfe2009-10-14 16:19:21 +08004300PMC SIERRA PM8001 DRIVER
4301M: jack_wang@usish.com
4302M: lindar_liu@usish.com
4303L: linux-scsi@vger.kernel.org
4304S: Supported
4305F: drivers/scsi/pm8001/
4306
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004308M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004310F: fs/timerfd.c
4311F: include/linux/timer*
4312F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
Anton Vorontsov3be86142007-07-15 04:43:36 +04004314POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004315M: Anton Vorontsov <cbou@mail.ru>
4316M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004317T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004318S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004319F: include/linux/power_supply.h
4320F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004323M: Adam Belay <abelay@mit.edu>
4324M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004326F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Vitaly Wool999445d2007-01-04 13:07:03 +01004328PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004329M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004330L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004332F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004333
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004335M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336L: linux-ppp@vger.kernel.org
4337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004338F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
4340PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004341M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: net/atm/pppoatm.c
4344F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
4346PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004347M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004349F: drivers/net/pppoe.c
4350F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
James Chapmana6d23702007-06-27 15:53:17 -07004352PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004353M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004355F: drivers/net/pppol2tp.c
4356F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004357
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004358PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004359M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004360W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4361L: linuxpps@ml.enneenne.com (subscribers-only)
4362S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004363F: Documentation/pps/
4364F: drivers/pps/
4365F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004368M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369L: kpreempt-tech@lists.sourceforge.net
4370W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4371S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004372F: Documentation/preempt-locking.txt
4373F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004376M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004377L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378W: http://prism54.org
4379S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004380F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381
4382PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004383M: Peter Denison <promise@pnd-pc.demon.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384W: http://www.pnd-pc.demon.co.uk/promise/
4385S: Maintained
4386
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004387PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004388M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004389L: linux-ide@vger.kernel.org
4390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004391F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004392
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004393PS3 NETWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004394M: Geoff Levand <geoffrey.levand@am.sony.com>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004395L: netdev@vger.kernel.org
4396L: cbe-oss-dev@ozlabs.org
4397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004398F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004399
Geoff Levandf58a9d12006-11-23 00:46:51 +01004400PS3 PLATFORM SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: Geoff Levand <geoffrey.levand@am.sony.com>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004402L: linuxppc-dev@ozlabs.org
4403L: cbe-oss-dev@ozlabs.org
4404S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004405F: arch/powerpc/boot/ps3*
4406F: arch/powerpc/include/asm/lv1call.h
4407F: arch/powerpc/include/asm/ps3*.h
4408F: arch/powerpc/platforms/ps3/
4409F: drivers/*/ps3*
4410F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004411F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004412F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004413F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004414
Jim Pariscffb4add2009-01-06 11:32:10 +00004415PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004416M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004417L: cbe-oss-dev@ozlabs.org
4418S: Maintained
4419
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004420PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004421M: Roland McGrath <roland@redhat.com>
4422M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004423S: Maintained
4424F: include/asm-generic/syscall.h
4425F: include/linux/ptrace.h
4426F: include/linux/regset.h
4427F: include/linux/tracehook.h
4428F: kernel/ptrace.c
4429
Michael Krufky83202042006-07-03 00:24:18 -07004430PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004431M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004432L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004433L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004434W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004435T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004437F: Documentation/video4linux/README.pvrusb2
4438F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004439
Eric Miao30ec2612008-06-12 15:21:41 -07004440PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004441M: Eric Miao <eric.y.miao@gmail.com>
4442M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004443L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004445F: arch/arm/mach-pxa/
4446F: drivers/pcmcia/pxa2xx*
4447F: drivers/spi/pxa2xx*
4448F: drivers/usb/gadget/pxa2*
4449F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004450F: sound/arm/pxa*
4451F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004453PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004454M: Eric Miao <eric.y.miao@gmail.com>
4455M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004456L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004457T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004458S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004459
Eric Miao5fa82eb2009-03-20 12:52:24 +08004460PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004463T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004464S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004465
Pierre Ossman272f1332007-05-14 21:25:26 +02004466PXA MMCI DRIVER
4467S: Orphan
4468
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004469PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004470M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004471L: rtc-linux@googlegroups.com
4472S: Maintained
4473
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004475M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004476M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477L: linux-scsi@vger.kernel.org
4478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004479F: Documentation/scsi/LICENSE.qla2xxx
4480F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481
Ron Mercer5a4faa82006-07-25 00:40:21 -07004482QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004483M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07004484M: linux-driver@qlogic.com
4485L: netdev@vger.kernel.org
4486S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004487F: Documentation/networking/LICENSE.qla3xxx
4488F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07004489
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004490QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
4491M: Amit Kumar Salecha <amit.salecha@qlogic.com>
4492M: linux-driver@qlogic.com
4493L: netdev@vger.kernel.org
4494S: Supported
4495F: drivers/net/qlcnic/
4496
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004497QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004498M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004499M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004500L: netdev@vger.kernel.org
4501S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004502F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004505M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506W: http://www.alarsen.net/linux/qnx4fs/
4507S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004508F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004509F: include/linux/qnx4_fs.h
4510F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
4512RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004513M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004514L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004516F: drivers/video/aty/radeon*
4517F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004520M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004521L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004523F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Randy Dunlape7839f22008-10-12 16:11:45 -07004525RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004526P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01004527M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01004528M: Gertjan van Wingerde <gwingerde@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004529L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01004530L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004531W: http://rt2x00.serialmonkey.com/
4532S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004533T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004534F: drivers/net/wireless/rt2x00/
4535
Nick Piggin9db55792008-02-08 04:19:49 -08004536RAMDISK RAM BLOCK DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004537M: Nick Piggin <npiggin@suse.de>
Nick Piggin9db55792008-02-08 04:19:49 -08004538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004539F: Documentation/blockdev/ramdisk.txt
4540F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004541
Matt Mackall9e95ce22005-04-16 15:25:56 -07004542RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004546
Matt Porter394b7012005-11-07 01:00:15 -08004547RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004549S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004550F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004551
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004552RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004553M: Corey Thomas <coreythomas@charter.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004554L: linux-wireless@vger.kernel.org
4555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004557
4558RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004559M: Josh Triplett <josh@freedesktop.org>
4560M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004561S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004562F: Documentation/RCU/torture.txt
4563F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004564
Florian Fainellic1f766b2008-02-06 22:39:44 +01004565RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004567S: Maintained
4568
Florian Fainellidb17f392007-12-19 11:30:30 +01004569RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004570M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004571L: netdev@vger.kernel.org
4572S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004573F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004574
Andy Grovera09ed662009-02-24 15:30:41 +00004575RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004576M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004577L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004578S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004579F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004580
Josh Triplett595182b2006-10-04 02:17:21 -07004581READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004582M: Dipankar Sarma <dipankar@in.ibm.com>
4583M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004584W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004585S: Supported
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004586F: Documentation/RCU/
4587F: include/linux/rcu*
4588F: include/linux/srcu*
4589F: kernel/rcu*
4590F: kernel/srcu*
4591X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07004592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004594M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004596F: Documentation/rtc.txt
4597F: drivers/rtc/
4598F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004600REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004601M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004602L: rtc-linux@googlegroups.com
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004604F: Documentation/rtc.txt
4605F: drivers/rtc/
4606F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004607
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004609L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004611F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
Ivo van Doorne08976452008-04-12 19:23:55 +02004613RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004614M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004615L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004616S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08004617F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07004618F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004619
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004620RISCOM8 DRIVER
4621S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/serial/riscom8.txt
4623F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004624
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625ROCKETPORT DRIVER
4626P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627W: http://www.comtrol.com
4628S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004629F: Documentation/serial/rocket.txt
4630F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631
4632ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004633M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004635W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004637F: include/linux/rose.h
4638F: include/net/rose.h
4639F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Larry Finger59840482008-11-12 17:13:09 -06004641RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004642M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004643L: linux-wireless@vger.kernel.org
4644W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004645T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004646S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004647F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004648
Larry Finger59840482008-11-12 17:13:09 -06004649RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4651M: Hin-Tak Leung <htl10@users.sourceforge.net>
4652M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004653L: linux-wireless@vger.kernel.org
4654W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004655T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004656S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004657F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004658
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004659S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004660M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004661L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004663F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665S390
Joe Perches8b58be82009-07-29 15:04:30 -07004666M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4667M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004669L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004670W: http://www.ibm.com/developerworks/linux/linux390/
4671S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004672F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01004673F: drivers/s390/
Heiko Carstens5238da42006-02-11 17:56:01 -08004674
4675S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004676M: Ursula Braun <ursula.braun@de.ibm.com>
4677M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004678M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004679L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004680W: http://www.ibm.com/developerworks/linux/linux390/
4681S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004682F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004683
Felix Beckfeed9b62009-03-26 15:24:23 +01004684S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004685M: Felix Beck <felix.beck@de.ibm.com>
4686M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004687M: linux390@de.ibm.com
4688L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01004689W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01004690S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004691F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004692
Heiko Carstens5238da42006-02-11 17:56:01 -08004693S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004694M: Christof Schmitt <christof.schmitt@de.ibm.com>
4695M: Martin Peschke <mp3@de.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004696M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01004697L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004698W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004700F: Documentation/s390/zfcpdump.txt
4701F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Ursula Braundd96df22007-09-19 13:09:02 +02004703S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004704M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004705M: linux390@de.ibm.com
4706L: linux-s390@vger.kernel.org
4707W: http://www.ibm.com/developerworks/linux/linux390/
4708S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004709F: drivers/s390/net/*iucv*
4710F: include/net/iucv/
4711F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004712
Ben Dooks4dde7f72008-06-30 22:40:38 +01004713S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004714M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004715L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004717F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004718
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004720M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004721L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004722T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723W: http://www.mihu.de/linux/saa7146
4724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004725F: drivers/media/common/saa7146*
4726F: drivers/media/video/*7146*
4727F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004729TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03004730M: Huang Shijie <shijie8@gmail.com>
4731M: Kang Yong <kangyong@telegent.com>
4732M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004733S: Supported
4734F: drivers/media/video/tlg2300
4735
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004737M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004739F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
4741SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004742M: Ingo Molnar <mingo@elte.hu>
4743M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004745F: kernel/sched*
4746F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
Chen Liqin6bcf6732009-06-13 15:24:33 +08004748SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07004749M: Chen Liqin <liqin.chen@sunplusct.com>
4750M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08004751W: http://www.sunplusct.com
4752S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07004753F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08004754
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004756M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757L: linux-scsi@vger.kernel.org
4758W: http://www.kernel.dk
4759S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004760F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761
4762SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004763M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764L: linux-scsi@vger.kernel.org
4765W: http://www.torque.net/sg
4766S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004767F: drivers/scsi/sg.c
4768F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
4770SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00004771M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004773T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
4774T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
4775T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004777F: drivers/scsi/
4778F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
4780SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004781M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782L: linux-scsi@vger.kernel.org
4783S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004784F: Documentation/scsi/st.txt
4785F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07004788M: Vlad Yasevich <vladislav.yasevich@hp.com>
4789M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07004790L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07004791W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01004792S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004793F: Documentation/networking/sctp.txt
4794F: include/linux/sctp.h
4795F: include/net/sctp/
4796F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
4798SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004799M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004800S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004801F: Documentation/i2c/busses/scx200_acb
4802F: arch/x86/kernel/scx200_32.c
4803F: drivers/watchdog/scx200_wdt.c
4804F: drivers/i2c/busses/scx200*
4805F: drivers/mtd/maps/scx200_docflash.c
4806F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07004807
4808SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004809M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004810S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004811F: drivers/char/scx200_gpio.c
4812F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07004813
4814SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004815M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004816S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004817F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
Sascha Sommer6a369132008-07-15 14:21:29 +02004819SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004820M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02004821L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
4822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004823F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02004824
Randy Dunlape7839f22008-10-12 16:11:45 -07004825SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07004826S: Orphan
4827L: linux-mmc@vger.kernel.org
4828F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004829
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004830SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03004832L: linuxppc-dev@ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07004833L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07004835F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836
Ben Dooks0d1bb412009-06-14 13:52:37 +01004837SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07004839L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01004840S: Maintained
4841F: drivers/mmc/host/sdhci-s3c.c
4842
James Morris8711cca2008-12-04 03:19:45 +11004843SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004844M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11004845L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08004846T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11004847W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11004848S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07004849F: security/
James Morris8711cca2008-12-04 03:19:45 +11004850
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07004852M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853S: Supported
4854
4855SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Stephen Smalley <sds@tycho.nsa.gov>
4857M: James Morris <jmorris@namei.org>
4858M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004859L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04004860W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07004861T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004863F: include/linux/selinux*
4864F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Jiri Slabycef2cf02007-05-08 00:31:45 -07004866SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07004867M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07004868S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004869F: drivers/misc/phantom.c
4870F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07004871
Randy Dunlap4480f15b2008-10-12 16:11:58 -07004872SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004873M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004875T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004877F: drivers/ata/
4878F: include/linux/ata.h
4879F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304881SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Joe Perches3387f652009-11-11 14:26:11 -08004882M: Jayamohan Kallickal <jayamohank@serverengines.com>
4883L: linux-scsi@vger.kernel.org
4884W: http://www.serverengines.com
4885S: Supported
4886F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05304887
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004888SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004889M: Sathya Perla <sathyap@serverengines.com>
4890M: Subbu Seetharaman <subbus@serverengines.com>
Ajit Khapardef66d7442010-02-19 14:00:03 +00004891M: Sarveshwar Bandi <sarveshwarb@serverengines.com>
4892M: Ajit Khaparde <ajitk@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004893L: netdev@vger.kernel.org
4894W: http://www.serverengines.com
4895S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004896F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07004897
Ben Hutchings8ceee662008-04-27 12:55:59 +01004898SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00004899M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
4900M: Steve Hodgson <shodgson@solarflare.com>
4901M: Ben Hutchings <bhutchings@solarflare.com>
4902L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01004903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004904F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01004905
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004906SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004907M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004909F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004910
4911SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004912M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004913L: linux-ia64@vger.kernel.org
4914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004915F: Documentation/ia64/serial.txt
4916F: drivers/serial/ioc?_serial.c
4917F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004918
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07004920M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921L: linux-visws-devel@lists.sf.net
4922W: http://linux-visws.sf.net
4923S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07004924F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Jack Steiner75312612008-08-15 00:40:42 -07004926SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004927M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07004928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004929F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07004930
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004931SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07004932M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004933W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07004934L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004935S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004936F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
4937F: arch/arm/mach-lh7a40x/
4938F: drivers/serial/serial_lh7a40x.c
4939F: drivers/usb/gadget/lh7a40*
4940F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004941
Len Brown6349d992009-08-14 15:07:14 -04004942SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07004943M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04004944L: sfi-devel@simplefirmware.org
4945W: http://simplefirmware.org/
4946T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004947S: Supported
Len Brown6349d992009-08-14 15:07:14 -04004948F: arch/x86/kernel/*sfi*
4949F: drivers/sfi/
4950F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004951
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952SIMTEC EB110ATX (Chalice CATS)
4953P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004954M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955W: http://www.simtec.co.uk/products/EB110ATX/
4956S: Supported
4957
4958SIMTEC EB2410ITX (BAST)
4959P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07004960M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961W: http://www.simtec.co.uk/products/EB2410ITX/
4962S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004963F: arch/arm/mach-s3c2410/
4964F: drivers/*/*s3c2410*
4965F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966
Kevin Hilman4c5adde2009-06-19 12:02:33 -07004967TI DAVINCI MACHINE SUPPORT
4968P: Kevin Hilman
4969M: davinci-linux-open-source@linux.davincidsp.com
4970S: Supported
4971F: arch/arm/mach-davinci
4972
Francois Romieu92aab3c2005-07-30 13:11:18 +02004973SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004974M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02004975L: netdev@vger.kernel.org
4976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004977F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02004978
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004980M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07004982L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004986SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004988L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004990F: Documentation/i2c/busses/i2c-sis96x
4991F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04004992
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004994M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03004996S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004997F: Documentation/fb/sisfb.txt
4998F: drivers/video/sis/
4999F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
5001SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005002M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003W: http://www.winischhofer.at/linuxsisusbvga.shtml
5004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005005F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005007SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005008M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005009L: netdev@vger.kernel.org
5010S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005011F: drivers/net/skge.*
5012F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005013
Christoph Lameter415ad262007-07-26 10:40:56 -07005014SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: Christoph Lameter <cl@linux-foundation.org>
5016M: Pekka Enberg <penberg@cs.helsinki.fi>
5017M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07005018L: linux-mm@kvack.org
5019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005020F: include/linux/sl?b*.h
5021F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005022
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005024M: Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005026F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005028SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005029M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005030L: lm-sensors@lm-sensors.org
5031S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005032F: Documentation/hwmon/smsc47b397
5033F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005034
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005035SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005036M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005037L: netdev@vger.kernel.org
5038S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005039F: include/linux/smsc911x.h
5040F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005041
Steve Glendinning2cb37722008-12-11 20:54:30 -08005042SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005043M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005044L: netdev@vger.kernel.org
5045S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005046F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005047
Ben Nizetteb54f2862008-03-13 22:27:30 +11005048SMX UIO Interface
Joe Perches8b58be82009-07-29 15:04:30 -07005049M: Ben Nizette <bn@niasdigital.com>
Ben Nizetteb54f2862008-03-13 22:27:30 +11005050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005051F: drivers/uio/uio_smx.c
Ben Nizetteb54f2862008-03-13 22:27:30 +11005052
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005053SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005055L: linux-altix@sgi.com
5056L: linux-ia64@vger.kernel.org
5057W: http://www.sgi.com/altix
5058S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005059F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005060
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005061SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005062M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005063L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005064T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005065S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005066F: include/media/v4l2*
5067F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005068
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005069SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005070M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005071S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005072F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005073
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005075M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005077S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005078F: drivers/md/
5079F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005082M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005083L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005085F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
Michael Buesch61e115a2007-09-18 15:12:50 -04005087SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005088M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005089L: netdev@vger.kernel.org
5090S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005091F: drivers/ssb/
5092F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005093
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005095M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005096L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005097W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005099F: Documentation/laptops/sony-laptop.txt
5100F: drivers/char/sonypi.c
5101F: drivers/platform/x86/sony-laptop.c
5102F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Alex Dubovbaf85322008-02-09 10:20:54 -08005104SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005105M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005106W: http://tifmxx.berlios.de/
5107S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005108F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005109
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005111M: Jaroslav Kysela <perex@perex.cz>
5112M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005113L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005114W: http://www.alsa-project.org/
5115T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5116T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005118F: Documentation/sound/
5119F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005120F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
Mark Brownbd903bd2008-11-19 19:16:05 +00005122SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07005123M: Liam Girdwood <lrg@slimlogic.co.uk>
5124M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005125T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005126L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005127W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005128S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005129F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005130F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005131
Sam Ravnborg473321f2009-01-04 15:47:49 -08005132SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005133M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134L: sparclinux@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005135T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5136T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005138F: arch/sparc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
5140SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005141M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005143F: Documentation/serial/specialix.txt
5144F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005146SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005147M: David Brownell <dbrownell@users.sourceforge.net>
Grant Likelyd33c8612009-11-25 07:32:25 -07005148M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005149L: spi-devel-general@lists.sourceforge.net
5150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005151F: Documentation/spi/
5152F: drivers/spi/
5153F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005154
Jim Lewis2752e402006-09-29 02:01:19 -07005155SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07005156M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
5157M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07005158L: netdev@vger.kernel.org
5159S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005160F: Documentation/networking/spider_net.txt
5161F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005162
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005163SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005164M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005165L: linuxppc-dev@ozlabs.org
5166L: cbe-oss-dev@ozlabs.org
5167W: http://www.ibm.com/developerworks/power/cell/
5168S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005169F: Documentation/filesystems/spufs.txt
5170F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005171
Phillip Lougherfc555842009-01-05 08:46:29 +00005172SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005173M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00005174L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5175W: http://squashfs.org.uk
5176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005177F: Documentation/filesystems/squashfs.txt
5178F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005179
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07005181M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005183F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
Linus Torvalds26e9a392008-10-17 09:50:12 -07005185STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07005186M: Greg Kroah-Hartman <greg@kroah.com>
5187M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005188L: stable@kernel.org
5189S: Maintained
5190
Linus Torvalds26e9a392008-10-17 09:50:12 -07005191STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005192M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07005193T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005194L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005195S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005196F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005197
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005199M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07005200S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005201F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
5203STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
Jean Delvarebaaea1d2008-09-20 12:34:33 +02005204S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005205F: drivers/net/wireless/strip.c
5206F: include/linux/if_strip.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207
5208STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005209M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210W: http://www.stradis.com/
5211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005212F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005214SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07005215M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005216W: http://sammy.net/sun3/
5217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005218F: arch/m68k/kernel/*sun3*
5219F: arch/m68k/sun3*/
5220F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005221
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005222SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07005223M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005224L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225W: http://www.linux-sh.org
Joe Perches54e58812009-04-07 21:08:10 -07005226T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005227S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005228F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005229F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005230F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005232SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07005233M: Len Brown <len.brown@intel.com>
5234M: Pavel Machek <pavel@ucw.cz>
5235M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005236L: linux-pm@lists.linux-foundation.org
5237S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005238F: Documentation/power/
5239F: arch/x86/kernel/acpi/
5240F: drivers/base/power/
5241F: kernel/power/
5242F: include/linux/suspend.h
5243F: include/linux/freezer.h
5244F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
5246SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248L: linux-video@atrey.karlin.mff.cuni.cz
5249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005250F: Documentation/svga.txt
5251F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252
5253SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005256F: Documentation/filesystems/sysv-fs.txt
5257F: fs/sysv/
5258F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
Alan Cox4e688522008-04-30 00:52:11 -07005260TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005261M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005263F: Documentation/accounting/taskstats*
5264F: include/linux/taskstats*
5265F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005266
Stephen Hemminger781b4562006-07-10 20:25:29 -07005267TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b4562006-07-10 20:25:29 -07005269L: netdev@vger.kernel.org
5270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005271F: include/linux/pkt_cls.h
5272F: include/net/pkt_cls.h
5273F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005274
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005275TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005276M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5277M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005278W: http://tcp-lp-mod.sourceforge.net/
5279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005281
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005282TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005283M: Alexander Indenbaum <baum@tehutinetworks.net>
5284M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005285L: netdev@vger.kernel.org
5286S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005287F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005288
Alan Cox4e688522008-04-30 00:52:11 -07005289Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005290M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005292F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005293
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005294TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005295M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005296S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005297F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005298
5299THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005300M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005301L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05005302L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005303W: http://ibm-acpi.sourceforge.net
5304W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005305T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005307F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005308
Alex Dubov4020f2d2006-10-04 02:15:37 -07005309TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005312F: drivers/misc/tifm*
5313F: drivers/mmc/host/tifm_sd.c
5314F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005315
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005316TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005317M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005318L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5319S: Maintained
5320F: sound/soc/codecs/twl4030*
5321
Per Lidene86eaa32006-01-12 16:45:18 +01005322TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: Per Liden <per.liden@ericsson.com>
5324M: Jon Maloy <jon.maloy@ericsson.com>
5325M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005326L: tipc-discussion@lists.sourceforge.net
5327W: http://tipc.sourceforge.net/
5328W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005329T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005331F: include/linux/tipc*.h
5332F: include/net/tipc/
5333F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005334
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005336M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005337L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338W: http://sourceforge.net/projects/tlan/
5339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005340F: Documentation/networking/tlan.txt
5341F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005343TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: Kentaro Takeda <takedakn@nttdata.co.jp>
5345M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005346L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5347L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5348L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5349W: http://tomoyo.sourceforge.jp/
5350T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.2.x/tomoyo-lsm/patches/
5351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005352F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005353
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005354TOPSTAR LAPTOP EXTRAS DRIVER
5355M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05005356L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005357S: Maintained
5358F: drivers/platform/x86/topstar-laptop.c
5359
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005361L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02005362S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005363F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364
5365TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005366M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367L: tlinux-users@tce.toshiba-dme.co.jp
5368W: http://www.buzzard.org.uk/toshiba/
5369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005370F: drivers/char/toshiba.c
5371F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Pierre Ossmand719f902009-03-24 21:06:09 +01005373TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005374M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005375S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005376F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005377
Hugh Dickins98f32602009-05-21 20:33:58 +01005378TMPFS (SHMEM FILESYSTEM)
Joe Perches8b58be82009-07-29 15:04:30 -07005379M: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Hugh Dickins98f32602009-05-21 20:33:58 +01005380L: linux-mm@kvack.org
5381S: Maintained
5382F: include/linux/shmem_fs.h
5383F: mm/shmem.c
5384
Alan Cox4e688522008-04-30 00:52:11 -07005385TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005386M: Debora Velarde <debora@linux.vnet.ibm.com>
5387M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005388W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005389M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005390W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005391L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005392S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005393F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005394
Joe Perchesd6f005a2009-10-26 16:49:40 -07005395TRACING
5396M: Steven Rostedt <rostedt@goodmis.org>
5397M: Frederic Weisbecker <fweisbec@gmail.com>
5398M: Ingo Molnar <mingo@redhat.com>
5399T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git tracing/core
5400S: Maintained
5401F: Documentation/trace/ftrace.txt
5402F: arch/*/*/*/ftrace.h
5403F: arch/*/kernel/ftrace.c
5404F: include/*/ftrace.h
5405F: include/linux/trace*.h
5406F: include/trace/
5407F: kernel/trace/
5408
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005410M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005411T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412S: Maintained
5413
Alan Cox4e688522008-04-30 00:52:11 -07005414TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005415M: Greg Kroah-Hartman <gregkh@suse.de>
5416S: Maintained
5417T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005418F: drivers/char/tty_*
5419F: drivers/serial/serial_core.c
5420F: include/linux/serial_core.h
5421F: include/linux/serial.h
5422F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005423
Grant Grundler740db6d2008-02-17 11:53:49 -07005424TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005425M: Grant Grundler <grundler@parisc-linux.org>
5426M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005427L: netdev@vger.kernel.org
5428S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005429F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
5431TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005432M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433L: vtun@office.satix.net
5434W: http://vtun.sourceforge.net/tun
5435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005436F: Documentation/networking/tuntap.txt
5437F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005439TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005442F: drivers/tc/
5443F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005444
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005446M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447L: linux-scsi@vger.kernel.org
5448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005449F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005451UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005452M: Artem Bityutskiy <dedekind1@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005453M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005454L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005455T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005456W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005458F: Documentation/filesystems/ubifs.txt
5459F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005460
Alan Coxcc2020e2008-05-19 14:21:51 +01005461UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005462M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005463W: http://www.uclinux.org/
5464L: uclinux-dev@uclinux.org (subscribers-only)
5465S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005466F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005467
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005468UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005469M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005470W: http://uclinux-h8.sourceforge.jp/
5471S: Supported
5472
Linus Torvalds1da177e2005-04-16 15:20:36 -07005473UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005474M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475W: http://linux-udf.sourceforge.net
5476S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005477F: Documentation/filesystems/udf.txt
5478F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
Alan Coxcc2020e2008-05-19 14:21:51 +01005480UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005481M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005482S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005483F: Documentation/filesystems/ufs.txt
5484F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005485
David Vrabel18332a82008-09-17 16:34:44 +01005486ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005487M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005488L: linux-usb@vger.kernel.org
5489S: Supported
David Vrabel355ffe62009-12-22 13:13:28 +00005490F: drivers/uwb/
5491X: drivers/uwb/wlp/
5492X: drivers/uwb/i1480/i1480u-wlp/
5493X: drivers/uwb/i1480/i1480-wlp.h
Joe Perches679655d2009-04-07 20:44:32 -07005494F: include/linux/uwb.h
5495F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005496
Tony Finchd8379ab2009-11-27 15:50:30 +00005497UNIFDEF
5498M: Tony Finch <dot@dotat.at>
5499W: http://dotat.at/prog/unifdef
5500S: Maintained
5501F: scripts/unifdef.c
5502
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005504M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505W: http://www.kernel.dk
5506S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005507F: Documentation/cdrom/
5508F: drivers/cdrom/cdrom.c
5509F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005511UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005512M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005513W: http://www.linux-mtd.infradead.org/
5514L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005515T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005516S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005517F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005518F: include/linux/mtd/ubi.h
5519F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005520
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005522M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005523L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005525F: Documentation/usb/acm.txt
5526F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
5528USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005529M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005530L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005532F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08005535M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005536L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005538F: drivers/net/usb/cdc_*.c
5539F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005541USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005542M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005543L: linux-usb@vger.kernel.org
5544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005545F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005546
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005547USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005548M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005549L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005550W: http://www.linux-usb.org/usbnet
5551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005552F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005553
Alan Coxcc2020e2008-05-19 14:21:51 +01005554USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005555M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005556L: rio500-users@lists.sourceforge.net
5557W: http://rio500.sourceforge.net
5558S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005559F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005560
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005562M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005563L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005564S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005565F: Documentation/usb/ehci.txt
5566F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567
Luca Risolia7ce08c92006-01-11 02:06:59 +00005568USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005569M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005570L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005571L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005572T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005573W: http://www.linux-projects.org
5574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005576
David Brownell69ae9e32006-11-14 02:03:31 -08005577USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005578M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005579L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005580W: http://www.linux-usb.org/gadget
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: drivers/usb/gadget/
5583F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005584
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005585USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005587L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005588T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005590F: Documentation/usb/hiddev.txt
5591F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592
Olav Kongas959eea22005-11-03 17:38:14 +02005593USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005594M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005595L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005597F: drivers/usb/host/isp116x*
5598F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005599
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005601M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005602L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005604F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005608L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005609L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610S: Maintained
5611W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005612F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
5614USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005615M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005616L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005617S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005618F: Documentation/usb/ohci.txt
5619F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Matthias Urlichsba460e42005-07-14 00:33:47 -07005621USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005622M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005623L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005626
Linus Torvalds1da177e2005-04-16 15:20:36 -07005627USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005628M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005629L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630W: http://alpha.dyndns.org/ov511/
5631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005632F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
5634USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005635M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005636L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005637L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638W: http://pegasus2.sourceforge.net/
5639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005640F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005642USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005643M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005644L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005646F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647
5648USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005649M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005650L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005651L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652W: http://pegasus2.sourceforge.net/
5653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005654F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655
5656USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005657M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005658L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659W: http://www.chello.nl/~j.vreeken/se401/
5660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005661F: Documentation/video4linux/se401.txt
5662F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Alan Cox4e688522008-04-30 00:52:11 -07005664USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005665M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005666L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005668F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07005669
5670USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005671M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005672L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005673S: Maintained
5674W: http://geocities.com/i0xox0i
5675W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07005676F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07005677
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005679M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680W: http://www.reiner-sct.de/support/treiber_cyberjack.php
5681S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005682F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683
5684USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005685M: Peter Berger <pberger@brimson.com>
5686M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005687L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005689F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
5691USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005692M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005693L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005695F: Documentation/usb/usb-serial.txt
5696F: drivers/usb/serial/generic.c
5697F: drivers/usb/serial/usb-serial.c
5698F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005701M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005702L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005704F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005705
5706USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005707M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005708L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709W: http://www.kroah.com/linux/
5710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005711F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712
5713USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005714M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005715L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716W: http://www.connecttech.com
5717S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005718F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005719
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005720USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005721M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005722L: netdev@vger.kernel.org
5723S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005724F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00005725
Luca Risoliaf423b9a2007-03-26 16:12:04 -03005726USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005727M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005728L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005729L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005730T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731W: http://www.linux-projects.org
5732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005733F: Documentation/video4linux/sn9c102.txt
5734F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
5736USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005738L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08005740T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005742F: Documentation/usb/
5743F: drivers/net/usb/
5744F: drivers/usb/
5745F: include/linux/usb.h
5746F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
5748USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005749M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005750L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005752F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
David Brownell69ae9e32006-11-14 02:03:31 -08005754USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005755M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005756L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005757W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005759F: drivers/net/usb/usbnet.c
5760F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005761
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005762USB VIDEO CLASS
Joe Perches8b58be82009-07-29 15:04:30 -07005763M: Laurent Pinchart <laurent.pinchart@skynet.be>
Jiri Slabya67534a2008-12-10 09:09:27 -03005764L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005765L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005766T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005767W: http://linux-uvc.berlios.de
5768S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005769F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03005770
Linus Torvalds1da177e2005-04-16 15:20:36 -07005771USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005772M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005773L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005774L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005775T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005776W: http://www.linux-projects.org
5777S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005778F: Documentation/video4linux/w9968cf.txt
5779F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005781USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07005782M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005783L: linux-wireless@vger.kernel.org
5784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005785F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02005786
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005787USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08005788M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005789L: linux-usb@vger.kernel.org
5790S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08005791F: drivers/usb/host/xhci*
5792F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07005793
Luca Risolia60f78052006-02-06 16:29:35 +00005794USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005795M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005796L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005797L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005798T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00005799W: http://www.linux-projects.org
5800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005801F: Documentation/video4linux/zc0301.txt
5802F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00005803
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804USB ZD1201 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005805M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005806L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005807W: http://linux-lc100020.sourceforge.net
5808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005809F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005811USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005812M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005813L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005814L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005815T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005816W: http://royale.zerezo.com/zr364xx/
5817S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005818F: Documentation/video4linux/zr364xx.txt
5819F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005820
Randy Dunlape7839f22008-10-12 16:11:45 -07005821USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07005822M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823L: user-mode-linux-devel@lists.sourceforge.net
5824L: user-mode-linux-user@lists.sourceforge.net
5825W: http://user-mode-linux.sourceforge.net
5826S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005827F: Documentation/uml/
5828F: arch/um/
5829F: fs/hostfs/
5830F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005831
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005832USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07005833M: "Hans J. Koch" <hjk@linutronix.de>
5834M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005836F: Documentation/DocBook/uio-howto.tmpl
5837F: drivers/uio/
5838F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01005839
Karel Zakf899b0a2008-05-23 13:04:21 -07005840UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07005841M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07005842L: util-linux-ng@vger.kernel.org
5843W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07005844T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07005845S: Maintained
5846
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005847UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005848M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005849L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005850W: http://dev.gentoo.org/~spock/projects/uvesafb/
5851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005852F: Documentation/fb/uvesafb.txt
5853F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07005854
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005855VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005856M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005858F: Documentation/filesystems/vfat.txt
5859F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00005861VIRTIO HOST (VHOST)
5862M: "Michael S. Tsirkin" <mst@redhat.com>
5863L: kvm@vger.kernel.org
5864L: virtualization@lists.osdl.org
5865L: netdev@vger.kernel.org
5866S: Maintained
5867F: drivers/vhost/
5868F: include/linux/vhost.h
5869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005871M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005873F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874
Jean Delvare32c0a522005-09-22 21:47:58 +02005875VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005876M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01005877L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02005878S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005879F: Documentation/i2c/busses/i2c-viapro
5880F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02005881
Harald Weltef0bf7f62009-06-17 20:22:39 +02005882VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005883M: Joseph Chan <JosephChan@via.com.tw>
5884M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02005885S: Maintained
5886F: drivers/mmc/host/via-sdmmc.c
5887
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005888VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005889M: Joseph Chan <JosephChan@via.com.tw>
5890M: Scott Fang <ScottFang@viatech.com.cn>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005891L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005892S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005893F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07005894
Francois Romieu01f20732007-01-26 00:57:17 -08005895VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005896M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08005897L: netdev@vger.kernel.org
5898S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005899F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Patrick McHardybe7f8272007-10-23 20:26:36 -07005901VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07005902M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07005903L: netdev@vger.kernel.org
5904S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005905F: drivers/net/macvlan.c
5906F: include/linux/if_*vlan.h
5907F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07005908
Florian Fainelli55e331c2009-06-16 15:33:53 -07005909VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005910M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07005911L: openwrt-devel@lists.openwrt.org
5912S: Maintained
5913F: drivers/vlynq/vlynq.c
5914F: include/linux/vlynq.h
5915
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07005916VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08005917M: Shreyas Bhatewara <sbhatewara@vmware.com>
5918M: "VMware, Inc." <pv-drivers@vmware.com>
5919L: netdev@vger.kernel.org
5920S: Maintained
5921F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07005922
Alok Kataria851b1642009-10-13 14:51:05 -07005923VMware PVSCSI driver
5924M: Alok Kataria <akataria@vmware.com>
5925M: VMware PV-Drivers <pv-drivers@vmware.com>
5926L: linux-scsi@vger.kernel.org
5927S: Maintained
5928F: drivers/scsi/vmw_pvscsi.c
5929F: drivers/scsi/vmw_pvscsi.h
5930
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005931VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07005932M: Liam Girdwood <lrg@slimlogic.co.uk>
5933M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005934W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00005935W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07005936T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005937S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005938F: drivers/regulator/
5939F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01005940
Juerg Haefligerab413192006-09-24 20:54:04 +02005941VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005942M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02005943L: lm-sensors@lm-sensors.org
5944S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005945F: Documentation/hwmon/vt1211
5946F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02005947
Roger Lucas1de9e372005-11-26 20:20:05 +01005948VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01005950L: lm-sensors@lm-sensors.org
5951S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005952F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01005953
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07005955M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005957F: Documentation/w1/
5958F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959
Charles Spirakis13927072006-07-05 18:05:15 +02005960W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005961M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02005962L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04005963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005964F: Documentation/hwmon/w83791d
5965F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02005966
Rudolf Marek61db0112006-12-12 18:18:30 +01005967W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01005969L: lm-sensors@lm-sensors.org
5970S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005971F: Documentation/hwmon/w83793
5972F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01005973
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005975M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005977F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005979WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005980M: Wim Van Sebroeck <wim@iguana.be>
Joe Perches54e58812009-04-07 21:08:10 -07005981T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005982S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005983F: Documentation/watchdog/
5984F: drivers/watchdog/
5985F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01005986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987WAVELAN NETWORK DRIVER & WIRELESS EXTENSIONS
Joe Perches8b58be82009-07-29 15:04:30 -07005988M: Jean Tourrilhes <jt@hpl.hp.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07005989L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990W: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/
5991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005992F: Documentation/networking/wavelan.txt
5993F: drivers/net/wireless/wavelan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994
5995WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997L: linux-scsi@vger.kernel.org
5998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005999F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000
David Härdemane258b802009-09-21 17:04:53 -07006001WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006002M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006003S: Maintained
6004F: drivers/input/misc/winbond-cir.c
6005
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006006WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006008M: linux-wimax@intel.com
6009L: wimax@linuxwimax.org
6010S: Supported
6011W: http://linuxwimax.org
6012
David Vrabel18332a82008-09-17 16:34:44 +01006013WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006014M: David Vrabel <david.vrabel@csr.com>
David Vrabel355ffe62009-12-22 13:13:28 +00006015L: netdev@vger.kernel.org
David Vrabel18332a82008-09-17 16:34:44 +01006016S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006017F: include/linux/wlp.h
6018F: drivers/uwb/wlp/
David Vrabel355ffe62009-12-22 13:13:28 +00006019F: drivers/uwb/i1480/i1480u-wlp/
6020F: drivers/uwb/i1480/i1480-wlp.h
David Vrabel18332a82008-09-17 16:34:44 +01006021
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006022WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006023M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006024S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006025F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006026
Kalle Valo834da342009-07-21 14:26:08 +03006027WL1251 WIRELESS DRIVER
Kalle Valo54f2d732010-02-18 21:47:51 +02006028M: Kalle Valo <kalle.valo@iki.fi>
Kalle Valo834da342009-07-21 14:26:08 +03006029L: linux-wireless@vger.kernel.org
6030W: http://wireless.kernel.org
6031T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6032S: Maintained
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006033F: drivers/net/wireless/wl12xx/*
6034X: drivers/net/wireless/wl12xx/wl1271*
6035
6036WL1271 WIRELESS DRIVER
6037M: Luciano Coelho <luciano.coelho@nokia.com>
6038L: linux-wireless@vger.kernel.org
6039W: http://wireless.kernel.org
6040T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6041S: Maintained
6042F: drivers/net/wireless/wl12xx/wl1271*
Kalle Valo834da342009-07-21 14:26:08 +03006043
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006045M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006046L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006047W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006049F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
Mark Brownfebf1df2008-04-02 00:51:09 -04006051WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006052M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6053M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006054L: linux-input@vger.kernel.org
6055T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6056W: http://opensource.wolfsonmicro.com/node/7
6057S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006058F: drivers/input/touchscreen/*wm97*
6059F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006060
Mark Brownb75ea162009-07-02 16:43:08 +01006061WOLFSON MICROELECTRONICS PMIC DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006062M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownb75ea162009-07-02 16:43:08 +01006063T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
6064W: http://opensource.wolfsonmicro.com/node/8
6065S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006066F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006067F: drivers/leds/leds-wm83*.c
6068F: drivers/mfd/wm8*.c
6069F: drivers/power/wm83*.c
6070F: drivers/rtc/rtc-wm83*.c
6071F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006072F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006073F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006074F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006075F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006076F: include/linux/mfd/wm8400*
6077F: sound/soc/codecs/wm8350.*
6078F: sound/soc/codecs/wm8400.*
Mark Brownb75ea162009-07-02 16:43:08 +01006079
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006081M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006083S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006084F: Documentation/networking/x25*
6085F: include/net/x25*
6086F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006088X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006089M: Thomas Gleixner <tglx@linutronix.de>
6090M: Ingo Molnar <mingo@redhat.com>
6091M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006092M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006093T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006095F: Documentation/x86/
6096F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006097
Matthew Garrettd0944852010-02-11 10:40:13 -05006098X86 PLATFORM DRIVERS
6099M: Matthew Garrett <mjg@redhat.com>
6100L: platform-driver-x86@vger.kernel.org
6101S: Maintained
6102F: drivers/platform/x86
6103
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006104XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07006105M: Jeremy Fitzhardinge <jeremy@xensource.com>
6106M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006107L: virtualization@lists.osdl.org
6108L: xen-devel@lists.xensource.com
6109S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006110F: arch/x86/xen/
6111F: drivers/*/xen-*front.c
6112F: drivers/xen/
6113F: arch/x86/include/asm/xen/
6114F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006115
Linus Torvalds1da177e2005-04-16 15:20:36 -07006116XFS FILESYSTEM
6117P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05006118M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006120L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006122T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006124F: Documentation/filesystems/xfs.txt
6125F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006127XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006128M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006129W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006131F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006132
Peter Korsgaard238b8722006-12-06 20:35:17 -08006133XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006134M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08006135L: linux-serial@vger.kernel.org
6136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006137F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006138
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006140M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141L: linux-hams@vger.kernel.org
6142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006143F: drivers/net/hamradio/yam*
6144F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
Henkaf64a5e2005-10-12 15:02:56 +02006146YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006147M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02006148L: usbb2k-api-dev@nongnu.org
6149S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006150F: Documentation/input/yealink.txt
6151F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006152
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006154M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155W: http://yaina.de/jreuter/
6156W: http://www.qsl.net/dl1bke/
6157L: linux-hams@vger.kernel.org
6158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006159F: Documentation/networking/z8530drv.txt
6160F: drivers/net/hamradio/*scc.c
6161F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006163ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Daniel Drake <dsd@gentoo.org>
6165M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006166W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006167L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006168L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006170F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006171
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006174L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006175W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006176T: Mercurial http://linuxtv.org/hg/v4l-dvb
6177S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006178F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006180ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006181M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006183F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006184
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07006186M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07006187L: linux-kernel@vger.kernel.org
Joe Perchescfe81f72009-04-07 21:09:58 -07006188T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006190F: *
6191F: */