blob: aa0f81e5d64c93c66c9c31c0dc1a87dea679c4a9 [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
Joe Perches8a6e2532010-03-05 13:43:11 -080074 Q: Patchwork web based patch tracking system site
Joe Perchesc7c4fb12009-10-26 16:49:48 -070075 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
76 S: Status, one of the following:
77 Supported: Someone is actually paid to look after this.
78 Maintained: Someone actually looks after it.
79 Odd Fixes: It has a maintainer but they don't have time to do
80 much other than throw the odd patch in. See below..
81 Orphan: No current maintainer [but maybe you could take the
82 role as you write your new code].
83 Obsolete: Old code. Something tagged obsolete generally means
84 it has been replaced by a better system and you
85 should be using that.
86 F: Files and directories with wildcard patterns.
87 A trailing slash includes all files and subdirectory files.
88 F: drivers/net/ all files in and below drivers/net
89 F: drivers/net/* all files in drivers/net, but not below
90 F: */net/* all files in "any top level directory"/net
91 One pattern per line. Multiple F: lines acceptable.
92 X: Files and directories that are NOT maintained, same rules as F:
93 Files exclusions are tested before file matches.
94 Can be useful for excluding a specific subdirectory, for instance:
95 F: net/
96 X: net/ipv6/
97 matches all files in and below net excluding net/ipv6/
98 K: Keyword perl extended regex pattern to match content in a
99 patch or file. For instance:
100 K: of_get_profile
101 matches patches or files that contain "of_get_profile"
102 K: \b(printk|pr_(info|err))\b
103 matches patches or files that contain one or more of the words
104 printk, pr_info or pr_err
105 One regex pattern per line. Multiple K: lines acceptable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107Note: For the hard of thinking, this list is meant to remain in alphabetical
108order. If you could add yourselves to it in alphabetical order that would be
109so much easier [Ed]
110
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700111Maintainers List (try to look for most precise areas first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Joe Perchesc7c4fb12009-10-26 16:49:48 -0700113 -----------------------------------
Joe Perches679655d2009-04-07 20:44:32 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153C505 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700116M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700117L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700119F: drivers/net/3c505*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Steffen Klasserta6d89912007-08-10 14:05:27 -07001213C59X NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700122M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Steffen Klasserta6d89912007-08-10 14:05:27 -0700123L: netdev@vger.kernel.org
124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700125F: Documentation/networking/vortex.txt
126F: drivers/net/3c59x.c
Steffen Klasserta6d89912007-08-10 14:05:27 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283CR990 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700129M: David Dillow <dave@thedillows.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700130L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700132F: drivers/net/typhoon*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
adam radfordc4de0ce2010-03-08 12:40:36 -08001343WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
135M: Adam Radford <linuxraid@lsi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136L: linux-scsi@vger.kernel.org
adam radfordc4de0ce2010-03-08 12:40:36 -0800137W: http://www.lsi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138S: Supported
adam radfordc4de0ce2010-03-08 12:40:36 -0800139F: drivers/scsi/3w-*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
14153C700 AND 53C700-66 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700142M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143L: linux-scsi@vger.kernel.org
144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700145F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
1476PACK NETWORK DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -0700148M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149L: linux-hams@vger.kernel.org
150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700151F: drivers/net/hamradio/6pack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538169 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700154M: Francois Romieu <romieu@fr.zoreil.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700155L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700157F: drivers/net/r8169.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
1598250/16?50 (AND CLONE UARTS) SERIAL DRIVER
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700160M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161L: linux-serial@vger.kernel.org
162W: http://serial.sourceforge.net
Greg Kroah-Hartman8ee16a12010-10-06 13:29:44 -0700163S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -0800164T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -0700165F: drivers/serial/8250*
166F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
1688390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Ralf Baechle979b6c12005-06-13 14:30:40 -0700169L: netdev@vger.kernel.org
Paul Gortmaker0cf445c2011-01-01 13:28:30 +0000170S: Orphan / Obsolete
Joe Perches679655d2009-04-07 20:44:32 -0700171F: drivers/net/*8390*
172F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001749P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700175M: Eric Van Hensbergen <ericvh@gmail.com>
176M: Ron Minnich <rminnich@sandia.gov>
177M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100178L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500179W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800180Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800181T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100182S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700183F: Documentation/filesystems/9p.txt
184F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700187M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188L: linux-m68k@lists.linux-m68k.org
189S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700190F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700192AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700194L: linux-scsi@vger.kernel.org
195W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700197F: Documentation/scsi/aacraid.txt
198F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700201M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200202L: lm-sensors@lm-sensors.org
203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700204F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200205
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700206ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700207M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700208L: lm-sensors@lm-sensors.org
209S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700210F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700213M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214L: linux-acenic@sunsite.dk
215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700216F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Peter Feuerere86435e2009-06-21 18:53:03 +0200218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700219M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500220L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700221W: http://piie.net/?section=acerhdf
222S: Maintained
223F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200224
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000225ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700226M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000227L: aceracpi@googlegroups.com (subscribers-only)
Matthew Garrettd0944852010-02-11 10:40:13 -0500228L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000229W: http://code.google.com/p/aceracpi
230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700231F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700234M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500235L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400236W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800237Q: http://patchwork.kernel.org/project/linux-acpi/list/
Joe Perches54e58812009-04-07 21:08:10 -0700238T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500239S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700240F: drivers/acpi/
241F: drivers/pnp/pnpacpi/
242F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700243F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500244
Len Brown8b59a452007-01-08 19:03:28 -0500245ACPI FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700246M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500247L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300248W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700250F: drivers/acpi/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Shaohua Li8e0af512009-07-27 18:11:02 -0400252ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700253M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400254L: linux-acpi@vger.kernel.org
255W: http://www.lesswatts.org/projects/acpi/
256S: Supported
257F: drivers/acpi/acpi_pad.c
258
Len Brown8b59a452007-01-08 19:03:28 -0500259ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700260M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500261L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300262W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500263S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700264F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700265
Len Brown359acec2007-02-10 01:59:24 -0500266ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700267M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500268L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300269W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500270S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700271F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500272
Carlos Corbachobff431e2008-02-05 02:17:04 +0000273ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700274M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -0500275L: platform-driver-x86@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +0200276W: http://www.lesswatts.org/projects/acpi/
277S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700278F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000279
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100280AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700281M: Kyle McMartin <kyle@mcmartin.ca>
282M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200283W: http://wiki.parisc-linux.org/AD1889
284L: linux-parisc@vger.kernel.org
285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700286F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100287
Michael Hennerich527a1a82010-10-28 11:31:28 +0000288AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
289M: Michael Hennerich <michael.hennerich@analog.com>
290L: device-driver-devel@blackfin.uclinux.org
291W: http://wiki-analog.com/AD5254
292S: Supported
293F: drivers/misc/ad525x_dpot.c
294
295AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
296M: Michael Hennerich <michael.hennerich@analog.com>
297L: device-driver-devel@blackfin.uclinux.org
298W: http://wiki-analog.com/AD5398
299S: Supported
300F: drivers/regulator/ad5398.c
301
302AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
303M: Michael Hennerich <michael.hennerich@analog.com>
304L: device-driver-devel@blackfin.uclinux.org
305W: http://wiki-analog.com/AD7142
306S: Supported
307F: drivers/input/misc/ad714x.c
308
309AD7877 TOUCHSCREEN DRIVER
310M: Michael Hennerich <michael.hennerich@analog.com>
311L: device-driver-devel@blackfin.uclinux.org
312W: http://wiki-analog.com/AD7877
313S: Supported
314F: drivers/input/touchscreen/ad7877.c
315
316AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
317M: Michael Hennerich <michael.hennerich@analog.com>
318L: device-driver-devel@blackfin.uclinux.org
319W: http://wiki-analog.com/AD7879
320S: Supported
321F: drivers/input/touchscreen/ad7879.c
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700324M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200325L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700327F: Documentation/hwmon/adm1025
328F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Corentin Labbecae2caa2007-02-14 21:15:04 +0100330ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700331M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100332L: lm-sensors@lm-sensors.org
333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700334F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100335
Michael Wucc0b88c2007-08-31 01:15:25 -0400336ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400337L: linux-wireless@vger.kernel.org
338W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400339S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700340F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400341
Michael Hennerich527a1a82010-10-28 11:31:28 +0000342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M: Michael Hennerich <michael.hennerich@analog.com>
344L: device-driver-devel@blackfin.uclinux.org
345W: http://wiki-analog.com/ADP5520
346S: Supported
347F: drivers/mfd/adp5520.c
348F: drivers/video/backlight/adp5520_bl.c
349F: drivers/led/leds-adp5520.c
350F: drivers/gpio/adp5520-gpio.c
351F: drivers/input/keyboard/adp5520-keys.c
352
353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
354M: Michael Hennerich <michael.hennerich@analog.com>
355L: device-driver-devel@blackfin.uclinux.org
356W: http://wiki-analog.com/ADP5588
357S: Supported
358F: drivers/input/keyboard/adp5588-keys.c
359F: drivers/gpio/adp5588-gpio.c
360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M: Michael Hennerich <michael.hennerich@analog.com>
363L: device-driver-devel@blackfin.uclinux.org
364W: http://wiki-analog.com/ADP8860
365S: Supported
366F: drivers/video/backlight/adp8860_bl.c
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700369M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700371F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Jean Delvareb058b852009-12-09 20:36:08 +0100373ADT7475 HARDWARE MONITOR DRIVER
374M: Jean Delvare <khali@linux-fr.org>
375L: lm-sensors@lm-sensors.org
376S: Maintained
377F: Documentation/hwmon/adt7475
378F: drivers/hwmon/adt7475.c
379
Michael Hennerich527a1a82010-10-28 11:31:28 +0000380ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
381M: Michael Hennerich <michael.hennerich@analog.com>
382L: device-driver-devel@blackfin.uclinux.org
383W: http://wiki-analog.com/ADXL345
384S: Supported
385F: drivers/input/misc/adxl34x.c
386
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400387ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700388M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400389L: linux-scsi@vger.kernel.org
390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700391F: Documentation/scsi/advansys.txt
392F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700395M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700397F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700400M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700402F: Documentation/filesystems/affs.txt
403F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700405AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700406M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700407L: linux-afs@lists.infradead.org
408S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700409F: fs/afs/
410F: include/net/af_rxrpc.h
411F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700414M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700415T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700417F: drivers/char/agp/
418F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700421M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422L: linux-scsi@vger.kernel.org
423S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700424F: drivers/scsi/aha152x*
425F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Hannes Reinecke64624d42007-10-19 10:32:29 +0200427AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700428M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200429L: linux-scsi@vger.kernel.org
430S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700431F: drivers/scsi/aic7xxx/
432F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200433
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700434AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700435M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700436L: linux-aio@kvack.org
437S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700438F: fs/aio.c
439F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700442M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700443L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444W: http://www.linux-usb.org/SpeedTouch/
445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700446F: drivers/usb/atm/speedtch.c
447F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Pierre Ossman272f1332007-05-14 21:25:26 +0200449ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700450M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200451S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700452F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200453
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000454ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700455M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100456L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700458F: Documentation/i2c/busses/i2c-ali1563
459F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700462M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700463M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500464M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700465L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700466F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700468AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700469M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700470L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700471S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700472F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700473
Jordan Crousef90b8112006-01-06 00:12:14 -0800474AMD GEODE PROCESSOR/CHIPSET SUPPORT
Andres Salomon69006092010-12-21 17:24:23 -0800475P: Andres Salomon <dilinger@queued.net>
Jordan Crouse67d76712008-05-12 14:02:22 -0700476L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800477W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700479F: drivers/char/hw_random/geode-rng.c
480F: drivers/crypto/geode*
481F: drivers/video/geode/
482F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800483
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200484AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700485M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200486L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700487T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700489F: arch/x86/kernel/amd_iommu*.c
490F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200491
Peter Orubae7f5b302008-07-28 18:44:11 +0200492AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700493M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700494L: amd64-microcode@amd64.org
495S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700496F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200497
Stelian Pop284f42b2006-12-12 18:18:31 +0100498AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700499M: Stelian Pop <stelian@popies.net>
500M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100501S: Supported
Jean Delvarebd5f47e2010-10-28 20:31:50 +0200502F: drivers/macintosh/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100503
Tom Tuckerf94b5332006-09-22 15:22:48 -0700504AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700505M: Tom Tucker <tom@opengridcomputing.com>
506M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700507L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700509F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700510
Michael Hennerich527a1a82010-10-28 11:31:28 +0000511ANALOG DEVICES INC ASOC CODEC DRIVERS
512L: device-driver-devel@blackfin.uclinux.org
513L: alsa-devel@alsa-project.org (moderated for non-subscribers)
514W: http://wiki-analog.com/
515S: Supported
516F: sound/soc/codecs/ad1*
517F: sound/soc/codecs/adau*
518F: sound/soc/codecs/adav*
519F: sound/soc/codecs/ssm*
520
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400521ANALOG DEVICES INC ASOC DRIVERS
522L: uclinux-dist-devel@blackfin.uclinux.org
523L: alsa-devel@alsa-project.org (moderated for non-subscribers)
524W: http://blackfin.uclinux.org/
525S: Supported
526F: sound/soc/blackfin/*
Mike Frysinger4bdef3b2010-08-11 23:52:23 -0400527
Johannes Berg42269062006-07-25 16:15:50 +0200528AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700529M: Johannes Berg <johannes@sipsolutions.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +1000530L: linuxppc-dev@lists.ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700531L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700533F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537L: linux-laptop@vger.kernel.org
538W: http://www.canb.auug.org.au/~sfr/
539S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700540F: arch/x86/kernel/apm_32.c
541F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700543APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700544M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700545L: linux-input@vger.kernel.org
546S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700547F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700548
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700549APPLE SMC DRIVER
Henrik Rydbergd6185402010-04-14 16:14:11 +0200550M: Henrik Rydberg <rydberg@euromail.se>
551L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700552S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700553F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700556M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700558F: drivers/net/appletalk/
559F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Jaya Kumar1154ea72005-06-21 17:17:04 -0700561ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700562M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700564F: drivers/video/arcfb.c
565F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700568M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700570F: arch/arm/lib/floppydma.S
571F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Russell Kingd4275352009-04-16 14:05:27 +0100573ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700574M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700575L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100576W: http://www.arm.linux.org.uk/
577S: Maintained
578F: arch/arm/
579
Russell Kingcefbf4e2009-11-22 17:40:28 +0000580ARM PRIMECELL AACI PL041 DRIVER
581M: Russell King <linux@arm.linux.org.uk>
582S: Maintained
583F: sound/arm/aaci.*
584
585ARM PRIMECELL CLCD PL110 DRIVER
586M: Russell King <linux@arm.linux.org.uk>
587S: Maintained
588F: drivers/video/amba-clcd.*
589
590ARM PRIMECELL KMI PL050 DRIVER
591M: Russell King <linux@arm.linux.org.uk>
592S: Maintained
593F: drivers/input/serio/ambakmi.*
594F: include/linux/amba/kmi.h
595
Russell King2761f5c2007-05-24 06:56:08 +0200596ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200597S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700598F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200599
Russell Kingcefbf4e2009-11-22 17:40:28 +0000600ARM PRIMECELL BUS SUPPORT
601M: Russell King <linux@arm.linux.org.uk>
602S: Maintained
603F: drivers/amba/
604F: include/linux/amba/bus.h
605
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800606ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700607M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700608L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700610F: arch/arm/mach-ixp23xx/
611F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800612
613ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700614M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700615L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800616S: Maintained
617
Sergey Lapin9c784f92008-08-03 02:29:48 +0100618ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700619M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700620L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100621S: Maintained
622
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800623ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700624M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700625L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800626S: Maintained
627
Andrew Victord4a89c72006-12-04 13:56:21 +0100628ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700629M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700630L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200631W: http://maxim.org.za/at91_26.html
632S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100633
Leo Chen57a473f2009-08-12 22:08:48 +0100634ARM/BCMRING ARM ARCHITECTURE
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000635M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100636M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700637L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800638S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100639F: arch/arm/mach-bcmring
640
641ARM/BCMRING MTD NAND DRIVER
Jiandong Zhengd6db4662010-12-14 21:55:49 +0000642M: Jiandong Zheng <jdzheng@broadcom.com>
Russell Kingddd559b2009-09-12 12:02:26 +0100643M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100644L: linux-mtd@lists.infradead.org
645S: Maintained
646F: drivers/mtd/nand/bcm_umi_nand.c
647F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100648F: drivers/mtd/nand/nand_bcm_umi.h
649
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300650ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
651M: Anton Vorontsov <avorontsov@mvista.com>
652S: Maintained
653F: arch/arm/mach-cns3xxx/
654T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
655
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800656ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100657M: Hartley Sweeten <hsweeten@visionengravers.com>
658M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700659L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800660S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100661F: arch/arm/mach-ep93xx/
662F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800663
664ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700665M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700666L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800667S: Maintained
668
Russell Kingd4275352009-04-16 14:05:27 +0100669ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700670M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100672F: arch/arm/common/clkdev.c
673F: arch/arm/include/asm/clkdev.h
674
Mike Rapoportd48134e2008-08-20 09:03:26 +0100675ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700676M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700677L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100678S: Maintained
679
Hubert Feurstein94150092009-10-07 08:36:07 +0100680ARM/CONTEC MICRO9 MACHINE SUPPORT
681M: Hubert Feurstein <hubert.feurstein@contec.at>
682S: Maintained
683F: arch/arm/mach-ep93xx/micro9.c
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700686M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687S: Maintained
688
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200689ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100690M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700691L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100692T: git git://git.berlios.de/gemini-board
693S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300694F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200695
Russell Kingd4275352009-04-16 14:05:27 +0100696ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700697M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100699W: http://www.arm.linux.org.uk/
700S: Maintained
701F: arch/arm/mach-ebsa110/
702F: drivers/net/arm/am79c961a.*
703
Russell Kinga9da4f72008-07-12 21:42:04 +0100704ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700705M: Daniel Ribeiro <drwyrm@gmail.com>
706M: Stefan Schmidt <stefan@openezx.org>
707M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100708L: openezx-devel@lists.openezx.org (subscribers-only)
709W: http://www.openezx.org/
710S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200711T: topgit git://git.openezx.org/openezx.git
712F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100713
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200714ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100715M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700716L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100717S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700718T: git git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300719F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200720
Russell Kingd4275352009-04-16 14:05:27 +0100721ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700722M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100724W: http://www.arm.linux.org.uk/
725S: Maintained
726F: arch/arm/include/asm/hardware/dec21285.h
727F: arch/arm/mach-footbridge/
728
Sascha Hauer86183a52008-07-24 23:50:35 +0200729ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700730M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700731L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200732S: Maintained
Joe Perches1fa7e542010-10-26 14:23:02 -0700733T: git git://git.pengutronix.de/git/imx/linux-2.6.git
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100734F: arch/arm/mach-mx*/
735F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200736
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800737ARM/FREESCALE IMX51
738M: Amit Kucheria <amit.kucheria@canonical.com>
739L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
740S: Maintained
741F: arch/arm/mach-mx5/
742
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800743ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700744M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700745L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800746S: Maintained
747
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100748ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700749M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100751S: Maintained
752
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200753ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700754M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200755S: Maintained
756F: arch/arm/mach-pxa/hx4700.c
757F: arch/arm/mach-pxa/include/mach/hx4700.h
758
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100759ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700760M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200761W: www.jlime.com
762S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700763T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
764F: arch/arm/mach-sa1100/jornada720.c
765F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100766
Marek Vasut403d2972010-05-22 00:29:39 +0200767ARM/INCOME PXA270 SUPPORT
768M: Marek Vasut <marek.vasut@gmail.com>
769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
770S: Maintained
Joe Perchesec154082010-10-26 14:22:59 -0700771F: arch/arm/mach-pxa/colibri-pxa270-income.c
Marek Vasut403d2972010-05-22 00:29:39 +0200772
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800773ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700774M: Lennert Buytenhek <kernel@wantstofly.org>
775M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700776L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700777S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100778
779ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700780M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700781L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700782S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800783
784ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700785M: Lennert Buytenhek <kernel@wantstofly.org>
786M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700787L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700788S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800789
790ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700791M: Lennert Buytenhek <kernel@wantstofly.org>
792M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700793L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700794S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800795
796ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700797M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700798L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800799S: Maintained
800
801ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700802M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700803L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800804S: Maintained
805
806ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700807M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700808L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800809S: Maintained
810
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200811ARM/INTEL IXP4XX ARM ARCHITECTURE
812M: Imre Kaloz <kaloz@openwrt.org>
813M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100814L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200815S: Maintained
816F: arch/arm/mach-ixp4xx/
817
Joe Perches838553c2010-10-26 14:22:59 -0700818ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100819M: Jonathan Cameron <jic23@cam.ac.uk>
820L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
821S: Maintained
822F: arch/arm/mach-pxa/stargate2.c
823F: drivers/pcmcia/pxa2xx_stargate2.c
824
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800825ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700826M: Lennert Buytenhek <kernel@wantstofly.org>
827M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700829S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800830
831ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700832M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700833L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800834S: Maintained
835
836ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700837M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700838L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800839S: Maintained
840
Philipp Zabel3b8861712008-07-09 21:27:15 +0100841ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700842M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100843S: Maintained
844
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400845ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400846M: Lennert Buytenhek <kernel@wantstofly.org>
847M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700848L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400849S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400850F: arch/arm/mach-loki/
851F: arch/arm/mach-kirkwood/
852F: arch/arm/mach-mv78xx0/
853F: arch/arm/mach-orion5x/
854F: arch/arm/plat-orion/
855
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200856ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700857M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200859F: arch/arm/mach-pxa/mioa701.c
860S: Maintained
861
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100862ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700863M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100864S: Maintained
865
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100866ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700867M: Alessandro Rubini <rubini@unipv.it>
Linus Walleij87572882010-12-22 09:18:29 +0100868M: Linus Walleij <linus.walleij@stericsson.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -0700869M: STEricsson <STEricsson_nomadik_linux@list.st.com>
870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
871S: Maintained
872F: arch/arm/mach-nomadik/
873F: arch/arm/plat-nomadik/
Linus Walleij87572882010-12-22 09:18:29 +0100874F: drivers/i2c/busses/i2c-nomadik.c
875T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100876
Andy Green9d762952009-05-19 06:41:42 -0300877ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700878M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300879L: openmoko-kernel@lists.openmoko.org (subscribers-only)
880W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
881S: Supported
882
Daniel Walker0c19d212009-12-07 16:53:51 -0800883ARM/QUALCOMM MSM MACHINE SUPPORT
884M: David Brown <davidb@codeaurora.org>
885M: Daniel Walker <dwalker@codeaurora.org>
886M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800887L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800888F: arch/arm/mach-msm/
889F: drivers/video/msm/
890F: drivers/mmc/host/msm_sdcc.c
891F: drivers/mmc/host/msm_sdcc.h
892F: drivers/serial/msm_serial.h
893F: drivers/serial/msm_serial.c
Daniel Walker6c965ff2010-12-09 15:45:27 -0800894T: git git://codeaurora.org/quic/kernel/davidb/linux-msm.git
Daniel Walker0c19d212009-12-07 16:53:51 -0800895S: Maintained
896
Dirk Opfer8459c152005-11-06 14:27:52 +0000897ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
899M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000900S: Maintained
901
Marek Vasut5d783a22009-07-16 13:26:48 +0200902ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700903M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200904L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100905W: http://hackndev.com
906S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700907F: arch/arm/mach-pxa/include/mach/palmtx.h
908F: arch/arm/mach-pxa/palmtx.c
909F: arch/arm/mach-pxa/include/mach/palmt5.h
910F: arch/arm/mach-pxa/palmt5.c
911F: arch/arm/mach-pxa/include/mach/palmld.h
912F: arch/arm/mach-pxa/palmld.c
913F: arch/arm/mach-pxa/include/mach/palmte2.h
914F: arch/arm/mach-pxa/palmte2.c
915F: arch/arm/mach-pxa/include/mach/palmtc.h
916F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100917
Joe Perchesb57fe922009-12-14 18:00:52 -0800918ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700919M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200920L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200921W: http://hackndev.com
922S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800923F: arch/arm/mach-pxa/include/mach/palmtreo.h
924F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200925
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100926ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200928L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700929W: http://hackndev.com
930S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700931F: arch/arm/mach-pxa/include/mach/palmz72.h
932F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700935M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
937S: Maintained
938
939ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700940M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942W: http://www.arm.linux.org.uk/
943S: Maintained
944
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800945ARM/RADISYS ENP2611 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
Russell Kingd4275352009-04-16 14:05:27 +0100950ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700951M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700952L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100953W: http://www.arm.linux.org.uk/
954S: Maintained
955F: arch/arm/common/time-acorn.c
956F: arch/arm/include/asm/hardware/entry-macro-iomd.S
957F: arch/arm/include/asm/hardware/ioc.h
958F: arch/arm/include/asm/hardware/iomd.h
959F: arch/arm/include/asm/hardware/memc.h
960F: arch/arm/mach-rpc/
961F: drivers/net/arm/ether*
962F: drivers/scsi/arm/
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700965M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966W: http://www.shark-linux.de/shark.html
967S: Maintained
968
Ben Dooksb21477f2009-06-13 10:46:34 +0100969ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700970M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -0700971M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100973W: http://www.fluff.org/ben/linux/
974S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -0700975F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +0100976F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -0700977F: arch/arm/plat-s5p/
Ben Dooksb21477f2009-06-13 10:46:34 +0100978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700980M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700981L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982W: http://www.fluff.org/ben/linux/
983S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100984F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Joe Perches85743532010-10-26 14:23:00 -0700986ARM/S3C244x ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700987M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700988L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989W: http://www.fluff.org/ben/linux/
990S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100991F: arch/arm/mach-s3c2440/
Ben Dooksb21477f2009-06-13 10:46:34 +0100992F: arch/arm/mach-s3c2443/
993
Joe Perchesf9962312010-10-26 14:23:01 -0700994ARM/S3C64xx ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700995M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700996L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100997W: http://www.fluff.org/ben/linux/
998S: Maintained
Joe Perchesf9962312010-10-26 14:23:01 -0700999F: arch/arm/mach-s3c64xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Kukjin Kimf556cb02010-09-30 15:15:35 -07001001ARM/S5P ARM ARCHITECTURES
1002M: Kukjin Kim <kgene.kim@samsung.com>
1003L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1005S: Maintained
1006F: arch/arm/mach-s5p*/
1007
Kyungmin Parkaaac7d92010-10-07 12:59:28 -07001008ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1009M: Kyungmin Park <kyungmin.park@samsung.com>
1010M: Sylwester Nawrocki <s.nawrocki@samsung.com>
1011L: linux-arm-kernel@lists.infradead.org
1012L: linux-media@vger.kernel.org
1013S: Maintained
1014F: arch/arm/plat-s5p/dev-fimc*
1015F: arch/arm/plat-samsung/include/plat/*fimc*
1016F: drivers/media/video/s5p-fimc/
1017
Paul Mundtd48d38e2010-02-08 12:50:24 +09001018ARM/SHMOBILE ARM ARCHITECTURE
1019M: Paul Mundt <lethal@linux-sh.org>
1020M: Magnus Damm <magnus.damm@gmail.com>
1021L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +09001022W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +09001023Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtd22c0e52010-11-10 18:09:14 +09001024T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest
Paul Mundtd48d38e2010-02-08 12:50:24 +09001025S: Supported
1026F: arch/arm/mach-shmobile/
1027F: drivers/sh/
1028
Thomas Gleixner448352a2010-09-17 20:27:30 +02001029ARM/TELECHIPS ARM ARCHITECTURE
1030M: "Hans J. Koch" <hjk@linutronix.de>
1031L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032S: Maintained
1033F: arch/arm/plat-tcc/
1034F: arch/arm/mach-tcc8k/
1035
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001036ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001038L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001039S: Maintained
1040
Mark F. Brown1bbd7082010-09-12 23:51:34 -04001041ARM/TETON BGA MACHINE SUPPORT
1042M: Mark F. Brown <mark.brown314@gmail.com>
1043L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1044S: Maintained
1045
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001046ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001047M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001048L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001049S: Maintained
1050
wanzongshun98ad6e32009-02-13 06:04:32 +01001051ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001053L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -07001054W: http://www.mcuos.com
1055S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001056F: arch/arm/mach-w90x900/
1057F: arch/arm/mach-nuc93x/
1058F: drivers/input/keyboard/w90p910_keypad.c
1059F: drivers/input/touchscreen/w90p910_ts.c
1060F: drivers/watchdog/nuc900_wdt.c
1061F: drivers/net/arm/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -07001062F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -07001063F: drivers/rtc/rtc-nuc900.c
1064F: drivers/spi/spi_nuc900.c
1065F: drivers/usb/host/ehci-w90x900.c
1066F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +01001067
Linus Walleij54274d72010-04-04 10:58:03 +01001068ARM/U300 MACHINE SUPPORT
1069M: Linus Walleij <linus.walleij@stericsson.com>
1070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1071S: Supported
1072F: arch/arm/mach-u300/
1073F: drivers/i2c/busses/i2c-stu300.c
1074F: drivers/rtc/rtc-coh901331.c
1075F: drivers/watchdog/coh901327_wdt.c
1076F: drivers/dma/coh901318*
Linus Walleij87572882010-12-22 09:18:29 +01001077F: drivers/mfd/ab3100*
1078F: drivers/rtc/rtc-ab3100.c
1079F: drivers/rtc/rtc-coh901331.c
1080T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Linus Walleij54274d72010-04-04 10:58:03 +01001081
Linus Walleij87572882010-12-22 09:18:29 +01001082ARM/Ux500 ARM ARCHITECTURE
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001083M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Linus Walleij87572882010-12-22 09:18:29 +01001084M: Linus Walleij <linus.walleij@stericsson.com>
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001085L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1086S: Maintained
1087F: arch/arm/mach-ux500/
Linus Walleij87572882010-12-22 09:18:29 +01001088F: drivers/dma/ste_dma40*
1089F: drivers/mfd/ab3550*
1090F: drivers/mfd/abx500*
1091F: drivers/mfd/ab8500*
1092F: drivers/mfd/stmpe*
1093F: drivers/rtc/rtc-ab8500.c
1094T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001095
Russell Kingd4275352009-04-16 14:05:27 +01001096ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001098L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001099W: http://www.arm.linux.org.uk/
1100S: Maintained
1101F: arch/arm/vfp/
1102
Marek Vasute66b6d82010-03-26 06:51:32 +01001103ARM/VOIPAC PXA270 SUPPORT
1104M: Marek Vasut <marek.vasut@gmail.com>
1105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106S: Maintained
1107F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001108F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001109
1110ARM/ZIPIT Z2 SUPPORT
1111M: Marek Vasut <marek.vasut@gmail.com>
1112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113S: Maintained
1114F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001115F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001116
George Josephd58de032010-03-05 22:17:25 +01001117ASC7621 HARDWARE MONITOR DRIVER
1118M: George Joseph <george.joseph@fairview5.com>
1119L: lm-sensors@lm-sensors.org
1120S: Maintained
1121F: Documentation/hwmon/asc7621
1122F: drivers/hwmon/asc7621.c
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001125M: Corentin Chary <corentincj@iksaif.net>
1126M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001128L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001129W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001131F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001133ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001134M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001135L: lm-sensors@lm-sensors.org
1136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001137F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001138
Corentin Chary85091b72007-01-26 14:04:30 +01001139ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001140M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +01001141L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001142L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001143W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +01001144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001145F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +01001146
Andrew Morton953a6472008-11-06 12:53:28 -08001147ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001148M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001149W: http://sourceforge.net/projects/xscaleiop
1150S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001151F: Documentation/crypto/async-tx-api.txt
1152F: crypto/async_tx/
1153F: drivers/dma/
1154F: include/linux/dmaengine.h
1155F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001156
Wolfram Sanga1867d32009-09-18 22:45:51 +02001157AT24 EEPROM DRIVER
1158M: Wolfram Sang <w.sang@pengutronix.de>
1159L: linux-i2c@vger.kernel.org
1160S: Maintained
1161F: drivers/misc/eeprom/at24.c
1162F: include/linux/i2c/at24.h
1163
Randy Dunlape7839f22008-10-12 16:11:45 -07001164ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001165M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166W: http://www.coraid.com/support/linux
1167S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001168F: Documentation/aoe/
1169F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Joe Perches9a10a872010-12-01 09:37:55 -08001171ATHEROS ATH GENERIC UTILITIES
1172M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1173L: linux-wireless@vger.kernel.org
1174S: Supported
1175F: drivers/net/wireless/ath/*
1176
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001177ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001178M: Jiri Slaby <jirislaby@gmail.com>
1179M: Nick Kossifidis <mickflemm@gmail.com>
1180M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1181M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001182L: linux-wireless@vger.kernel.org
1183L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001184W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001185S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001186F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001187
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001188ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001189M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1190M: Jouni Malinen <jmalinen@atheros.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001191M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1192M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001193L: linux-wireless@vger.kernel.org
1194L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001195W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001196S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001197F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001198
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001199ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001200M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001201L: linux-wireless@vger.kernel.org
1202W: http://wireless.kernel.org/en/users/Drivers/ar9170
1203S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001204F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001205
Christian Lamparter1d7e1e62010-09-06 01:10:25 +02001206CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1207M: Christian Lamparter <chunkeey@googlemail.com>
1208L: linux-wireless@vger.kernel.org
1209W: http://wireless.kernel.org/en/users/Drivers/carl9170
1210S: Maintained
1211F: drivers/net/wireless/ath/carl9170/
1212
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001213ATK0110 HWMON DRIVER
1214M: Luca Tettamanti <kronos.it@gmail.com>
1215L: lm-sensors@lm-sensors.org
1216S: Maintained
1217F: drivers/hwmon/asus_atk0110.c
1218
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001219ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001221S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001222F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001223
Chris Snook7ae115b2008-09-09 03:26:57 -04001224ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001225M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001226M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001227M: Jie Yang <jie.yang@atheros.com>
Chris Snooke443e382010-09-16 22:00:28 -07001228L: netdev@vger.kernel.org
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001229W: http://sourceforge.net/projects/atl1
1230W: http://atl1.sourceforge.net
1231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001232F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001235M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001236L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001237L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238W: http://linux-atm.sourceforge.net
1239S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001240F: drivers/atm/
1241F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Pierre Ossman272f1332007-05-14 21:25:26 +02001243ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001244M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001245L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001246W: http://www.atmel.com/products/AT91/
1247W: http://www.at91.com/
1248S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001249F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001250
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001251ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001252M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001253S: Maintained
1254F: drivers/mmc/host/atmel-mci.c
1255F: drivers/mmc/host/atmel-mci-regs.h
1256
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001257ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001258M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001259S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001260F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001261
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001262ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001263M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001264L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001266F: drivers/video/atmel_lcdfb.c
1267F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001268
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001269ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001270M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001271S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001272F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001273
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001274ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001275M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001277F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001278
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001279ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001280M: Nicolas Ferre <nicolas.ferre@atmel.com>
1281L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001282W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1283S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001284F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001287M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001288L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289W: http://www.thekelleys.org.uk/atmel
1290W: http://atmelwlandriver.sourceforge.net/
1291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001292F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Chris Wrighta92b7b82005-07-07 18:12:23 -07001294AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001295M: Al Viro <viro@zeniv.linux.org.uk>
1296M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001297L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001298W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001299T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001300S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001301F: include/linux/audit.h
1302F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001303
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001304AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001305M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001306W: http://miguelojeda.es/auxdisplay.htm
1307W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001308S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001309F: drivers/auxdisplay/
1310F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001311
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001312AVR32 ARCHITECTURE
Hans-Christian Egtvedtf5665512010-09-22 13:04:58 -07001313M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001314W: http://www.atmel.com/products/AVR32/
1315W: http://avr32linux.org/
1316W: http://avrfreaks.net/
1317S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001318F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001319
1320AVR32/AT32AP MACHINE SUPPORT
Hans-Christian Egtvedtf5665512010-09-22 13:04:58 -07001321M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001322S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001323F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001326M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001328W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001330F: include/linux/ax25.h
1331F: include/net/ax25.h
1332F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001334B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001335M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001336L: linux-wireless@vger.kernel.org
1337W: http://linuxwireless.org/en/users/Drivers/b43
1338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001339F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001340
1341B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001342M: Larry Finger <Larry.Finger@lwfinger.net>
1343M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001344L: linux-wireless@vger.kernel.org
1345W: http://linuxwireless.org/en/users/Drivers/b43
1346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001347F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001348
Richard Purdie300abeb2007-02-07 22:21:07 +00001349BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001350M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001351S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001352F: drivers/video/backlight/
1353F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001354
Sven Eckelmannc6c8fea2010-12-13 11:19:28 +00001355BATMAN ADVANCED
1356M: Marek Lindner <lindner_marek@yahoo.de>
1357M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
1358M: Sven Eckelmann <sven@narfation.org>
1359L: b.a.t.m.a.n@lists.open-mesh.org
1360W: http://www.open-mesh.org/
1361S: Maintained
1362F: net/batman-adv/
1363
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001364BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001365M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001366L: linux-hams@vger.kernel.org
1367W: http://www.baycom.org/~tom/ham/ham.html
1368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001369F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001370
1371BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001372S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001373F: Documentation/filesystems/befs.txt
1374F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001375
1376BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001377M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001378S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001379F: Documentation/filesystems/bfs.txt
1380F: fs/bfs/
1381F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001382
Bryan Wu1394f032007-05-06 14:50:22 -07001383BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001384M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001385L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001386W: http://blackfin.uclinux.org
1387S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001388F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001389
Bryan Wue190d6b2007-07-17 14:43:44 +08001390BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001392L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001393W: http://blackfin.uclinux.org
1394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001395F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001396
Mike Frysinger566da5b2007-06-11 15:31:30 +08001397BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001399L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001400W: http://blackfin.uclinux.org
1401S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001402F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001403
Mike Frysinger936ed492010-03-10 15:20:38 -08001404BLACKFIN SDH DRIVER
1405M: Cliff Cai <cliff.cai@analog.com>
1406L: uclinux-dist-devel@blackfin.uclinux.org
1407W: http://blackfin.uclinux.org
1408S: Supported
1409F: drivers/mmc/host/bfin_sdh.c
1410
Bryan Wu1394f032007-05-06 14:50:22 -07001411BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001412M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001413L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001414W: http://blackfin.uclinux.org
1415S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001416F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001417
Bryan Wu1e6d3202007-07-15 02:50:02 +08001418BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001419M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001420L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001421W: http://blackfin.uclinux.org
1422S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001423F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001424
Bryan Wud24ecfc2007-05-01 23:26:32 +02001425BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001426M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001427L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001428W: http://blackfin.uclinux.org/
1429S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001430F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001433M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001434T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001436F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Joern Engel2b54aae2008-02-06 01:38:02 -08001438BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001439M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001440L: linux-mtd@lists.infradead.org
1441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001442F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001443
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001444BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001445M: Marcel Holtmann <marcel@holtmann.org>
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001446M: Gustavo F. Padovan <padovan@profusion.mobi>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001447L: linux-bluetooth@vger.kernel.org
1448W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001449T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001450S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001451F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001454M: Marcel Holtmann <marcel@holtmann.org>
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001455M: Gustavo F. Padovan <padovan@profusion.mobi>
Pavel Machek781c2842008-03-20 15:41:02 -07001456L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001457W: http://www.bluez.org/
Gustavo F. Padovanb3c05982010-10-08 09:13:28 -03001458T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001460F: net/bluetooth/
1461F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001464M: Jay Vosburgh <fubar@us.ibm.com>
Simon Hormana6c36ee2010-11-21 09:58:04 -08001465L: netdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01001466W: http://sourceforge.net/projects/bonding/
1467S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001468F: drivers/net/bonding/
1469F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Gary Zambrano39105892006-06-22 17:26:20 -07001471BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001472M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001473L: netdev@vger.kernel.org
1474S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001475F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001476
Michael Chan948c51e2006-06-04 02:51:39 -07001477BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001478M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001479L: netdev@vger.kernel.org
1480S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001481F: drivers/net/bnx2.*
1482F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001483
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001484BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001485M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001486L: netdev@vger.kernel.org
1487S: Supported
Dmitry Kravkov49efec12010-07-27 12:37:58 +00001488F: drivers/net/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001489
Michael Chan948c51e2006-06-04 02:51:39 -07001490BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001491M: Matt Carlson <mcarlson@broadcom.com>
1492M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001493L: netdev@vger.kernel.org
1494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001495F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001496
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001497BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1498M: Brett Rudley <brudley@broadcom.com>
1499M: Henry Ptasinski <henryp@broadcom.com>
Henry Ptasinski818c07b2010-12-08 13:09:49 -08001500M: Dowan Kim <dowan@broadcom.com>
1501M: Roland Vossen <rvossen@broadcom.com>
1502M: Arend van Spriel <arend@broadcom.com>
Henry Ptasinskia9533e72010-09-08 21:04:42 -07001503L: linux-wireless@vger.kernel.org
1504S: Supported
1505F: drivers/staging/brcm80211/
1506
Jing Huang7725ccf2009-09-23 17:46:15 -07001507BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001508M: Jing Huang <huangj@brocade.com>
1509L: linux-scsi@vger.kernel.org
1510S: Supported
1511F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001512
Rasesh Mody8b230ed2010-08-23 20:24:12 -07001513BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1514M: Rasesh Mody <rmody@brocade.com>
1515M: Debashis Dutt <ddutt@brocade.com>
1516L: netdev@vger.kernel.org
1517S: Supported
1518F: drivers/net/bna/
1519
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001520BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001522L: linux-scsi@vger.kernel.org
1523S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001524F: block/bsg.c
1525F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001526
Michael Bueschff1d5c22008-07-25 01:46:10 -07001527BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001528M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001529W: http://bu3sch.de/btgpio.php
1530S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001531F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001532
Joe Percheseb1eb042009-01-21 10:49:16 -05001533BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001534M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001535L: linux-btrfs@vger.kernel.org
1536W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001537Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001538T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001540F: Documentation/filesystems/btrfs.txt
1541F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001544M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001545L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001546W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001547T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001549F: Documentation/video4linux/bttv/
1550F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
David Howellsa5432f52009-04-20 15:46:45 +01001552CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001553M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001554L: linux-cachefs@redhat.com
1555S: Supported
1556F: Documentation/filesystems/caching/cachefiles.txt
1557F: fs/cachefiles/
1558
Jonathan Corbet77d51402007-03-22 19:44:17 -03001559CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001561L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001562T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001563S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001564F: Documentation/video4linux/cafe_ccic
1565F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001566
Joe Perches201b6ba2010-09-07 20:33:24 +00001567CAIF NETWORK LAYER
1568M: Sjur Braendeland <sjur.brandeland@stericsson.com>
1569L: netdev@vger.kernel.org
1570S: Supported
1571F: Documentation/networking/caif/
1572F: drivers/net/caif/
1573F: include/linux/caif/
1574F: include/net/caif/
1575F: net/caif/
1576
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001577CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001578M: Muli Ben-Yehuda <muli@il.ibm.com>
1579M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001580L: discuss@x86-64.org
1581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001582F: arch/x86/kernel/pci-calgary_64.c
1583F: arch/x86/kernel/tce_64.c
1584F: arch/x86/include/asm/calgary.h
1585F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001586
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001587CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001588M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001589M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001590M: Urs Thuermann <urs.thuermann@volkswagen.de>
1591L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001592L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001593W: http://developer.berlios.de/projects/socketcan/
1594S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001595F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001596F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001597F: include/linux/can/core.h
1598F: include/linux/can/bcm.h
1599F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001600
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001601CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001602M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001603L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001604L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001605W: http://developer.berlios.de/projects/socketcan/
1606S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001607F: drivers/net/can/
1608F: include/linux/can/dev.h
1609F: include/linux/can/error.h
1610F: include/linux/can/netlink.h
1611F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001612
Arnd Bergmannb8154542008-05-16 11:10:59 +02001613CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001614M: Arnd Bergmann <arnd@arndb.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10001615L: linuxppc-dev@lists.ozlabs.org
1616L: cbe-oss-dev@lists.ozlabs.org
Arnd Bergmannb8154542008-05-16 11:10:59 +02001617W: http://www.ibm.com/developerworks/power/cell/
1618S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001619F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001620F: arch/powerpc/include/asm/spu*.h
1621F: arch/powerpc/oprofile/*cell*
1622F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001623
Sage Weil9030aaf2009-10-06 11:31:15 -07001624CEPH DISTRIBUTED FILE SYSTEM CLIENT
1625M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001626L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001627W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001628T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001629S: Supported
1630F: Documentation/filesystems/ceph.txt
1631F: fs/ceph
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001632F: net/ceph
1633F: include/linux/ceph
Sage Weil9030aaf2009-10-06 11:31:15 -07001634
David Vrabel18332a82008-09-17 16:34:44 +01001635CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01001636L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01001637S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001638F: Documentation/usb/WUSB-Design-overview.txt
1639F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001640F: drivers/usb/host/hwa-hc.c
1641F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001642F: drivers/usb/wusbcore/
1643F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001644
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001645CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001646M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001647W: http://miguelojeda.es/auxdisplay.htm
1648W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001650F: drivers/auxdisplay/cfag12864b.c
1651F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001652
1653CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001654M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001655W: http://miguelojeda.es/auxdisplay.htm
1656W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001658F: drivers/auxdisplay/cfag12864bfb.c
1659F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001660
Johannes Berg704232c2007-04-23 12:20:05 -07001661CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001662M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001663L: linux-wireless@vger.kernel.org
1664S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001665F: include/linux/nl80211.h
1666F: include/net/cfg80211.h
1667F: net/wireless/*
1668X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001669
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001670CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001671M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001672S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001673F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001674
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001675CISCO VIC ETHERNET NIC DRIVER
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001676M: Vasanthy Kolluri <vkolluri@cisco.com>
1677M: Roopa Prabhu <roprabhu@cisco.com>
Vasanthy Kolluri94d57c42010-09-30 13:36:05 +00001678M: David Wang <dwang2@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001679S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001680F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001681
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001682CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001683M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001684L: netdev@vger.kernel.org
1685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001686F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001687
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001688CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001689M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001690L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001691S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001692F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001693
Timur Tabid9e9d822008-04-24 08:45:26 +10001694CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001695M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001696L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001697S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001698F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001699
Russell Kingd4275352009-04-16 14:05:27 +01001700CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001701M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001702F: include/linux/clk.h
1703
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001704CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001705M: Abhijeet Joglekar <abjoglek@cisco.com>
1706M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001707L: linux-scsi@vger.kernel.org
1708S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001709F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001710
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001711CMPC ACPI DRIVER
1712M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1713M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001714L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001715S: Supported
1716F: drivers/platform/x86/classmate-laptop.c
1717
Nicolas Palix74425ee2010-06-06 17:15:01 +02001718COCCINELLE/Semantic Patches (SmPL)
1719M: Julia Lawall <julia@diku.dk>
1720M: Gilles Muller <Gilles.Muller@lip6.fr>
Nicolas Palixaf78f212010-10-08 21:27:36 +02001721M: Nicolas Palix <npalix.work@gmail.com>
Nicolas Palix74425ee2010-06-06 17:15:01 +02001722L: cocci@diku.dk (moderated for non-subscribers)
1723W: http://coccinelle.lip6.fr/
1724S: Supported
1725F: scripts/coccinelle/
1726F: scripts/coccicheck
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001729M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730M: coda@cs.cmu.edu
1731L: codalist@coda.cs.cmu.edu
1732W: http://www.coda.cs.cmu.edu/
1733S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001734F: Documentation/filesystems/coda.txt
1735F: fs/coda/
1736F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001738COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001739M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001740L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001741L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001742W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001743Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001744T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001745S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001746F: Documentation/filesystems/cifs.txt
1747F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001750M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001751L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001753F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001756M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001757L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001758S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001759F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001762M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001763L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001765F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001767COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001768M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001769L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001771F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001774M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001777F: Documentation/serial/computone.txt
1778F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Simon Arlott949be0f2007-03-06 02:47:46 -08001780CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001781M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001782L: accessrunner-general@lists.sourceforge.net
1783W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001784S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001785F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001786
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001787CONFIGFS
Joel Beckerd6351db2011-01-07 18:10:32 -08001788M: Joel Becker <jlbec@evilplan.org>
1789T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001790S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001791F: fs/configfs/
1792F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001793
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001794CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001795M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001796L: netdev@vger.kernel.org
1797S: Maintained
1798F: drivers/connector/
1799
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001800CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001801M: Paul Menage <menage@google.com>
1802M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001803L: containers@lists.linux-foundation.org
1804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001805F: include/linux/cgroup*
1806F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001807F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001808
Rudolf Marekbebe4672007-05-08 17:22:02 +02001809CORETEMP HARDWARE MONITORING DRIVER
Fenghua Yu96859122010-08-25 15:42:14 +02001810M: Fenghua Yu <fenghua.yu@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001811L: lm-sensors@lm-sensors.org
1812S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001813F: Documentation/hwmon/coretemp
1814F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001817M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818W: http://www.fi.muni.cz/~kas/cosa/
1819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001820F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Florian Fainelli4371ee32009-06-01 02:43:17 -07001822CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001823M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001824L: netdev@vger.kernel.org
1825S: Maintained
1826F: drivers/net/cpmac.c
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001829M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001830L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001832T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001834F: arch/x86/kernel/cpu/cpufreq/
1835F: drivers/cpufreq/
1836F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001839M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001841F: arch/x86/kernel/cpuid.c
1842F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Paul Jacksoned90fb42005-09-27 21:45:37 -07001844CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001845M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001846W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001847W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001848S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001849F: Documentation/cgroups/cpusets.txt
1850F: include/linux/cpuset.h
1851F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001854W: http://sourceforge.net/projects/cramfs/
1855S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001856F: Documentation/filesystems/cramfs.txt
1857F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001860M: Mikael Starvik <starvik@axis.com>
1861M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001862L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863W: http://developer.axis.com
1864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001865F: arch/cris/
Jesper Nilsson395bc512010-11-01 11:01:14 +01001866F: drivers/serial/crisv10.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001869M: Herbert Xu <herbert@gondor.apana.org.au>
1870M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001872T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001874F: Documentation/crypto/
1875F: arch/*/crypto/
1876F: crypto/
1877F: drivers/crypto/
1878F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Neil Horman5b07bd52009-02-05 16:03:04 +11001880CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001882L: linux-crypto@vger.kernel.org
1883S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07001884F: crypto/ansi_cprng.c
1885F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11001886
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001887CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001888M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001891
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001892CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001893M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001894L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001895L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001896T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001897W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001898W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001900F: Documentation/video4linux/cx18.txt
1901F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001902
Steve Wisee5ec3782008-05-20 14:06:33 -07001903CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001904M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001905L: netdev@vger.kernel.org
1906W: http://www.chelsio.com
1907S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001908F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001909
1910CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001911M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001912L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001913W: http://www.openfabrics.org
1914S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001915F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001916
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001917CXGB4 ETHERNET DRIVER (CXGB4)
1918M: Dimitris Michailidis <dm@chelsio.com>
1919L: netdev@vger.kernel.org
1920W: http://www.chelsio.com
1921S: Supported
1922F: drivers/net/cxgb4/
1923
1924CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
1925M: Steve Wise <swise@chelsio.com>
1926L: linux-rdma@vger.kernel.org
1927W: http://www.openfabrics.org
1928S: Supported
1929F: drivers/infiniband/hw/cxgb4/
1930
Casey Leedom5c20a5c2010-07-19 17:55:33 -07001931CXGB4VF ETHERNET DRIVER (CXGB4VF)
1932M: Casey Leedom <leedom@chelsio.com>
1933L: netdev@vger.kernel.org
1934W: http://www.chelsio.com
1935S: Supported
1936F: drivers/net/cxgb4vf/
1937
Giuseppe Cavallarob52b97a2010-11-18 09:32:02 -08001938STMMAC ETHERNET DRIVER
1939M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
1940L: netdev@vger.kernel.org
1941W: http://www.stlinux.com
1942S: Supported
1943F: drivers/net/stmmac/
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001946M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001947L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948W: http://www.arm.linux.org.uk/
1949S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001950F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001953M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001954W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001956F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001960S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001961F: drivers/char/cyclades.c
1962F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001966S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001967F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001970M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971W: http://yaina.de/jreuter/
1972W: http://www.qsl.net/dl1bke/
1973L: linux-hams@vger.kernel.org
1974S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001975F: net/ax25/af_ax25.c
1976F: net/ax25/ax25_dev.c
1977F: net/ax25/ax25_ds_*
1978F: net/ax25/ax25_in.c
1979F: net/ax25/ax25_out.c
1980F: net/ax25/ax25_timer.c
1981F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001983DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001984M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001985L: netdev@vger.kernel.org
1986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001987F: Documentation/networking/dmfe.txt
1988F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001989
1990DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001991M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001992W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001993M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001994S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001995F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001998M: Oliver Neukum <oliver@neukum.name>
1999M: Ali Akcaagac <aliakc@web.de>
2000M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07002002L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003L: http://lists.twibble.org/mailman/listinfo/dc395x/
2004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002005F: Documentation/scsi/dc395x.txt
2006F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002008DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07002009M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002010L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08002011W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002013F: include/linux/dccp.h
2014F: include/linux/tfrc.h
2015F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07002016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018W: http://linux-decnet.sourceforge.net
2019L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00002020S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002021F: Documentation/networking/decnet.txt
2022F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002025M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002027F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002029DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002030M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05002031L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002033F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002036M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037W: http://www.debian.org/~dz/i8k/
2038S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002039F: drivers/char/i8k.c
2040F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Doug Warzecha90563ec2005-09-06 15:17:15 -07002042DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07002043M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07002044S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002045F: Documentation/dcdbas.txt
2046F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07002047
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002048DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002049M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002050S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07002051F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00002052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07002054M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056S: Maintained
2057
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002058DEVICE-MAPPER (LVM)
2059P: Alasdair Kergon
2060L: dm-devel@redhat.com
2061W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08002062Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002063S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002064F: Documentation/device-mapper/
2065F: drivers/md/dm*
2066F: include/linux/device-mapper.h
2067F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002070M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071L: Eng.Linux@digi.com
2072W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002073S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002074F: Documentation/serial/digiepca.txt
2075F: drivers/char/epca*
2076F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Randy Dunlape7839f22008-10-12 16:11:45 -07002078DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07002079M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04002080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002081F: Documentation/filesystems/dnotify.txt
2082F: fs/notify/dnotify/
2083F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07002086M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2088W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2089W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2090S: Maintained
2091
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002092DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002095F: Documentation/filesystems/quota.txt
2096F: fs/quota/
2097F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Randy Dunlape7839f22008-10-12 16:11:45 -07002099DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07002100M: Christine Caulfield <ccaulfie@redhat.com>
2101M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002102L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002103W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002104T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002105S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002106F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002107
Dan Williamsb3e5f262007-08-07 10:26:35 -07002108DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002109M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07002110S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002111F: drivers/dma/
2112F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002113
Juerg Haefligerb8250372007-06-09 10:11:16 -04002114DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002115M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04002116L: lm-sensors@lm-sensors.org
2117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002118F: Documentation/hwmon/dme1737
2119F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04002120
Martin Waitzba483d52005-06-17 13:20:59 -07002121DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002122M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07002123S: Maintained
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002124F: scripts/kernel-doc
Martin Waitzba483d52005-06-17 13:20:59 -07002125
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002126DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002127M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002128L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05002129S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002130F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04002131
Joe Perches7d2c86b2009-04-07 20:59:01 -07002132DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07002133M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02002134L: linux-doc@vger.kernel.org
Randy Dunlap5d3efe02010-11-18 12:27:37 -08002135T: quilt oss.oracle.com/~rdunlap/kernel-doc-patches/current/
Jean Delvare795fb7e2008-09-20 12:33:08 +02002136S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002137F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002140M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141L: blinux-list@redhat.com
2142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002143F: drivers/char/dtlk.c
2144F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002146DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002147M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002148L: linux-scsi@vger.kernel.org
2149W: http://www.adaptec.com/
2150S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002151F: drivers/scsi/dpt*
2152F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002153
Philipp Reisnerb411b362009-09-25 16:07:19 -07002154DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002155P: Philipp Reisner
2156P: Lars Ellenberg
2157M: drbd-dev@lists.linbit.com
2158L: drbd-user@lists.linbit.com
2159W: http://www.drbd.org
2160T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2161T: git git://git.drbd.org/drbd-8.3.git
2162S: Supported
2163F: drivers/block/drbd/
2164F: lib/lru_cache.c
2165F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002166
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002167DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002168M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartmane658e9f2010-11-09 09:12:42 -08002169T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002171F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002172F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002173F: fs/sysfs/
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002174F: fs/debugfs/
Joe Perches679655d2009-04-07 20:44:32 -07002175F: include/linux/kobj*
Greg Kroah-Hartman87544652010-09-21 06:39:23 -07002176F: include/linux/debugfs.h
Joe Perches679655d2009-04-07 20:44:32 -07002177F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002180M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002181L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002182T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002184F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002185F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Chris Wilson8daf7472010-09-28 14:07:26 +01002187INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2188M: Chris Wilson <chris@chris-wilson.co.uk>
Joe Perchescc840f72010-11-23 22:36:42 -08002189L: intel-gfx@lists.freedesktop.org (subscribers-only)
Chris Wilson8daf7472010-09-28 14:07:26 +01002190L: dri-devel@lists.freedesktop.org
2191T: git git://git.kernel.org/pub/scm/linux/kernel/git/ickle/drm-intel.git
2192S: Supported
2193F: drivers/gpu/drm/i915
2194F: include/drm/i915*
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002197M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002198L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002200F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002202DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002203M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002204S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002205F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002208M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002209L: linux-eata@i-connect.net
2210L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002212F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
2214EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002215M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216L: linux-scsi@vger.kernel.org
2217S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002218F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002221M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002222L: linux-eata@i-connect.net
2223L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002228M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229L: ebtables-user@lists.sourceforge.net
2230L: ebtables-devel@lists.sourceforge.net
2231W: http://ebtables.sourceforge.net/
2232S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002233F: include/linux/netfilter_bridge/ebt_*.h
2234F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Michael Halcrow237fead2006-10-04 02:16:22 -07002236ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002237M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2238M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08002239L: ecryptfs-devel@lists.launchpad.net
2240W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002241S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002242F: Documentation/filesystems/ecryptfs.txt
2243F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002244
Alan Coxda9bb1d2006-01-18 17:44:13 -08002245EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002246M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002247L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002248W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002249S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002250F: Documentation/edac.txt
2251F: drivers/edac/edac_*
2252F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002253
Borislav Petkovc476c232009-05-20 20:31:58 +02002254EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002255M: Doug Thompson <dougthompson@xmission.com>
2256M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002257L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2258W: bluesmoke.sourceforge.net
2259S: Supported
2260F: drivers/edac/amd64_edac*
2261
Dave Peterson0e438e32006-03-26 01:38:55 -08002262EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002263M: Mark Gross <mark.gross@intel.com>
2264M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002265L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002266W: bluesmoke.sourceforge.net
2267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002269
2270EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002271M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002272L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002273W: bluesmoke.sourceforge.net
2274S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002275F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002276
Douglas Thompson6bc78402007-07-19 01:50:12 -07002277EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002278M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002279L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002280W: bluesmoke.sourceforge.net
2281S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002282F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002283
2284EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002285M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002286L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002287W: bluesmoke.sourceforge.net
2288S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002289F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002290
2291EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002292M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002293L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002294W: bluesmoke.sourceforge.net
2295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002296F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002297
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002298EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002299M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002300L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002301W: bluesmoke.sourceforge.net
2302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002303F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002304
Mauro Carvalho Chehab3c9c92b2010-09-22 09:36:54 -03002305EDAC-I7300
2306M: Mauro Carvalho Chehab <mchehab@redhat.com>
2307L: linux-edac@vger.kernel.org
2308W: bluesmoke.sourceforge.net
2309S: Maintained
2310F: drivers/edac/i7300_edac.c
2311
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002312EDAC-I7CORE
2313M: Mauro Carvalho Chehab <mchehab@redhat.com>
2314L: linux-edac@vger.kernel.org
2315W: bluesmoke.sourceforge.net
2316S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002317F: drivers/edac/i7core_edac.c
2318F: drivers/edac/edac_mce.c
2319F: include/linux/edac_mce.h
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002320
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002321EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Ranganathan Desikan <ravi@jetztechnologies.com>
2323M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002324L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002325W: bluesmoke.sourceforge.net
2326S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002327F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002328
2329EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002330M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002331L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002332W: bluesmoke.sourceforge.net
2333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002334F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002335
Dave Peterson0e438e32006-03-26 01:38:55 -08002336EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002337M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002338L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002339W: bluesmoke.sourceforge.net
2340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002341F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002342
Eric Coopere59f8792008-03-13 12:55:46 +01002343EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002344M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01002345L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05002346L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00002347W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002348S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002349F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002350
Corentin Chary4c4edfa2010-11-29 08:14:11 +01002351EEEPC WMI EXTRAS DRIVER
2352M: Corentin Chary <corentincj@iksaif.net>
2353L: acpi4asus-user@lists.sourceforge.net
2354L: platform-driver-x86@vger.kernel.org
2355W: http://acpi4asus.sf.net
2356S: Maintained
2357F: drivers/platform/x86/eeepc-wmi.c
2358
Peter Jones85a00d92010-09-22 13:05:04 -07002359EFIFB FRAMEBUFFER DRIVER
2360L: linux-fbdev@vger.kernel.org
2361M: Peter Jones <pjones@redhat.com>
2362S: Maintained
2363F: drivers/video/efifb.c
2364
Josh Triplett0bee8d22006-07-30 03:03:58 -07002365EFS FILESYSTEM
2366W: http://aeschi.ch.eu.org/efs/
2367S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002368F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002369
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002370EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002371M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2372M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002373L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002375F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002376
Breno Leitaoaa8a9e22010-09-01 13:10:53 -07002377EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
2378M: Breno Leitao <leitao@linux.vnet.ibm.com>
2379L: netdev@vger.kernel.org
2380S: Maintained
2381F: drivers/net/ehea/
2382
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002383EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002384M: Paul Gortmaker <paul.gortmaker@windriver.com>
2385M: Matt Mackall <mpm@selenic.com>
2386M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002387L: linux-embedded@vger.kernel.org
2388S: Maintained
2389
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002390EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002391M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002392L: linux-scsi@vger.kernel.org
2393W: http://sourceforge.net/projects/lpfcxxxx
2394S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002395F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002396
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002397ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002398M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002399S: Maintained
2400F: drivers/misc/cb710/
2401F: drivers/mmc/host/cb710-mmc.*
2402F: include/linux/cb710.h
2403
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002404ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2405M: Maxim Levitsky <maximlevitsky@gmail.com>
2406S: Maintained
2407F: drivers/media/IR/ene_ir.c
2408F: drivers/media/IR/ene_ir.h
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002411M: Christopher Hoover <ch@murgatroid.com>
2412M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002414F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002416EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002417M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002418S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002419T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002420F: drivers/video/s1d13xxxfb.c
2421F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002424M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002425L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002427F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002430M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002431L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002432L: netdev@vger.kernel.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002433W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002435F: include/linux/netfilter_bridge/
2436F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
2438ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002439M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002441F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002444M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002445L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002447F: Documentation/filesystems/ext2.txt
2448F: fs/ext2/
2449F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002452M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002454M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002455L: linux-ext4@vger.kernel.org
2456S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002457F: Documentation/filesystems/ext3.txt
2458F: fs/ext3/
2459F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002460
2461EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002462M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002463M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002464L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002465W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002466Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002468F: Documentation/filesystems/ext4.txt
2469F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Jean Delvaree53004e2006-01-09 23:26:14 +01002471F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002472M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002473L: lm-sensors@lm-sensors.org
2474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002475F: Documentation/hwmon/f71805f
2476F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002477
Eric Paris88b2dbd2010-08-18 12:25:50 -04002478FANOTIFY
2479M: Eric Paris <eparis@redhat.com>
2480S: Maintained
2481F: fs/notify/fanotify/
2482F: include/linux/fanotify.h
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002485M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486W: http://www.farsite.co.uk/
2487S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002488F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Akinobu Mitac5408b82007-04-23 14:41:20 -07002490FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002491M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002492S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002493F: Documentation/fault-injection/
2494F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002495
Robert Lovecae727d2010-02-16 12:16:00 -08002496FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2497M: Robert Love <robert.w.love@intel.com>
2498L: devel@open-fcoe.org
2499W: www.Open-FCoE.org
2500S: Supported
2501F: drivers/scsi/libfc/
2502F: drivers/scsi/fcoe/
2503F: include/scsi/fc/
2504F: include/scsi/libfc.h
2505F: include/scsi/libfcoe.h
2506
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002507FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002508M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002509L: linux-fsdevel@vger.kernel.org
2510S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002511F: include/linux/fcntl.h
2512F: include/linux/fs.h
2513F: fs/fcntl.c
2514F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002515
2516FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002517M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002518L: linux-fsdevel@vger.kernel.org
2519S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002520F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002521
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002522FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002523M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002524L: lm-sensors@lm-sensors.org
2525S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002526F: drivers/hwmon/f75375s.c
2527F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002528
Joe Perches7d2c86b2009-04-07 20:59:01 -07002529FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002530M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002531L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002532W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002533T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002534S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002535F: drivers/firewire/
2536F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002537F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002538
2539FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002540S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002541F: Documentation/firmware_class/
2542F: drivers/base/firmware*.c
2543F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002544
2545FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002546M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002547W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002549F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002550
2551FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002552M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002553L: netdev@vger.kernel.org
2554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002555F: drivers/net/wan/dlci.c
2556F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558FRAMEBUFFER LAYER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002559L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560W: http://linux-fbdev.sourceforge.net/
Paul Mundtb22fe372010-11-17 13:08:58 +09002561Q: http://patchwork.kernel.org/project/linux-fbdev/list/
Paul Mundtfc5fef52010-11-15 13:25:31 +09002562T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6.git
Andrew Morton36025a82009-06-17 16:25:56 -07002563S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002564F: Documentation/fb/
Paul Mundtb22fe372010-11-17 13:08:58 +09002565F: drivers/video/
2566F: include/video/
Joe Perches679655d2009-04-07 20:44:32 -07002567F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Zhang Wei173acc72008-03-01 07:42:48 -07002569FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002570M: Li Yang <leoli@freescale.com>
2571M: Zhang Wei <zw@zh-kernel.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002572L: linuxppc-dev@lists.ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002573S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002574F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002575
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002576FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002577M: Jochen Friedrich <jochen@scram.de>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002578L: linuxppc-dev@lists.ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002579L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002581F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002582
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002583FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002584M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002585L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002586L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002588F: arch/arm/plat-mxc/include/mach/imxfb.h
2589F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002590
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002591FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002592M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2593M: Vitaly Bordug <vbordug@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002594L: linuxppc-dev@lists.ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002595L: netdev@vger.kernel.org
2596S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002597F: drivers/net/fs_enet/
2598F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002599
Timur Tabid9e9d822008-04-24 08:45:26 +10002600FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002601M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002602L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002603S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002604F: arch/powerpc/sysdev/qe_lib/
2605F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002606
Joe Perchesb55ef922009-10-26 16:49:46 -07002607FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002608M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002609L: linux-usb@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002610L: linuxppc-dev@lists.ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002611S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002612F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002613
Li Yangbeaf53b2007-05-25 13:54:02 +08002614FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002615M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002616L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002617L: linuxppc-dev@lists.ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002618S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002619F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002620
Timur Tabid9e9d822008-04-24 08:45:26 +10002621FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002622M: Timur Tabi <timur@freescale.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002623L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002624S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002625F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002626
2627FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002628M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002629L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002630L: linuxppc-dev@lists.ozlabs.org
Timur Tabid9e9d822008-04-24 08:45:26 +10002631S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002632F: sound/soc/fsl/fsl*
2633F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002636M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2638S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002639F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Pavel Machek71038f52009-01-15 13:51:02 -08002641FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002642M: Pavel Machek <pavel@ucw.cz>
2643M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002644L: linux-pm@lists.linux-foundation.org
2645S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002646F: Documentation/power/freezing-of-tasks.txt
2647F: include/linux/freezer.h
2648F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002649
David Howellsa5432f52009-04-20 15:46:45 +01002650FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002651M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002652L: linux-cachefs@redhat.com
2653S: Supported
2654F: Documentation/filesystems/caching/
2655F: fs/fscache/
2656F: include/linux/fscache*.h
2657
David Howells5ab7ffe2007-04-10 15:10:45 +01002658FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002659M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002661F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Jonathan Woithe20b93732008-06-11 10:14:56 +09302663FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002664M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002665L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002667F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302668
Miklos Szeredi04578f12005-09-09 13:10:22 -07002669FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002670M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002671L: fuse-devel@lists.sourceforge.net
2672W: http://fuse.sourceforge.net/
2673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002674F: fs/fuse/
2675F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002676
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002678M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002680S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002681F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002684M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685L: linux-scsi@vger.kernel.org
2686W: http://www.icp-vortex.com/
2687S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002688F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002690GENERIC GPIO I2C DRIVER
Andrew Morton880b0e22010-10-07 12:59:28 -07002691M: Haavard Skinnemoen <hskinnemoen@gmail.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002692S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002693F: drivers/i2c/busses/i2c-gpio.c
2694F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002695
Peter Korsgaard92ed1a72011-01-10 22:11:23 +01002696GENERIC GPIO I2C MULTIPLEXER DRIVER
2697M: Peter Korsgaard <peter.korsgaard@barco.com>
2698L: linux-i2c@vger.kernel.org
2699S: Supported
2700F: drivers/i2c/muxes/gpio-i2cmux.c
2701F: include/linux/gpio-i2cmux.h
2702F: Documentation/i2c/muxes/gpio-i2cmux
2703
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002704GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002705M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2707S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002708F: drivers/net/wan/c101.c
2709F: drivers/net/wan/hd6457*
2710F: drivers/net/wan/hdlc*
2711F: drivers/net/wan/n2.c
2712F: drivers/net/wan/pc300too.c
2713F: drivers/net/wan/pci200syn.c
2714F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002716GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002717M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002718L: linux-arch@vger.kernel.org
2719T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2720S: Maintained
2721F: include/asm-generic
2722
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002723GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002724M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002725L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002726S: Supported
2727F: drivers/uio/uio_pci_generic.c
2728
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002729GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002730M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002731L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002732W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002733T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2734T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002735S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002736F: Documentation/filesystems/gfs2*.txt
2737F: fs/gfs2/
2738F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002739
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002740GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002741M: Hansjoerg Lipp <hjlipp@web.de>
2742M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002743L: gigaset307x-common@lists.sourceforge.net
2744W: http://gigaset307x.sourceforge.net/
2745S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002746F: Documentation/isdn/README.gigaset
2747F: drivers/isdn/gigaset/
2748F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002749
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002750GRETH 10/100/1G Ethernet MAC device driver
2751M: Kristoffer Glembo <kristoffer@gaisler.com>
2752L: netdev@vger.kernel.org
2753S: Maintained
2754F: drivers/net/greth*
2755
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002756HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002757M: Frank Seidel <frank@f-seidel.de>
Jean Delvarebd9fc3a2010-10-05 12:08:57 +02002758L: platform-driver-x86@vger.kernel.org
Frank Seidel211e3e02009-02-17 19:59:54 +01002759W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002760S: Maintained
Jean Delvarebd9fc3a2010-10-05 12:08:57 +02002761F: drivers/platform/x86/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002762
Andi Kleen7bc98b92009-12-16 12:19:57 +01002763HWPOISON MEMORY FAILURE HANDLING
2764M: Andi Kleen <andi@firstfloor.org>
2765L: linux-mm@kvack.org
2766L: linux-kernel@vger.kernel.org
2767T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2768S: Maintained
2769F: mm/memory-failure.c
2770F: mm/hwpoison-inject.c
2771
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002772HYPERVISOR VIRTUAL CONSOLE DRIVER
Stephen Rothwella4724ed2010-08-20 19:52:45 +10002773L: linuxppc-dev@lists.ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002774S: Odd Fixes
2775F: drivers/char/hvc_*
2776
Konrad Rzeszutek Wilkc4d14092010-02-26 03:53:00 +00002777iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
2778M: Peter Jones <pjones@redhat.com>
2779M: Konrad Rzeszutek Wilk <konrad@kernel.org>
2780S: Maintained
2781F: drivers/firmware/iscsi_ibft*
2782
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002783GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002784M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002785L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002786T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002788F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002789
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002790GSPCA GL860 SUBDRIVER
2791M: Olivier Lorin <o.lorin@laposte.net>
2792L: linux-media@vger.kernel.org
2793T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2794S: Maintained
2795F: drivers/media/video/gspca/gl860/
2796
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002797GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002798M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002799L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002800T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002801S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002802F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002803
2804GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002805M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002806L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002807T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002808S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002809F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002810
Brian Johnson261982f2009-07-19 15:58:56 -03002811GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002812M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002813L: linux-media@vger.kernel.org
2814T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2815S: Maintained
2816F: drivers/media/video/gspca/sn9c20x.c
2817
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002818GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002819M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002820L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002821T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002823F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002824
2825GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002826M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002827W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002828L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002829T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002830S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002831F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae2008-10-22 10:57:37 -03002832
Jean Delvare5b543962005-08-15 19:51:02 +02002833HARDWARE MONITORING
Jean Delvare9e012c12010-09-17 17:24:11 +02002834M: Jean Delvare <khali@linux-fr.org>
2835M: Guenter Roeck <guenter.roeck@ericsson.com>
Jean Delvare5b543962005-08-15 19:51:02 +02002836L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002837W: http://www.lm-sensors.org/
Jean Delvare9e012c12010-09-17 17:24:11 +02002838T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
Guenter Roeck885374e2010-09-24 08:43:44 -07002839T: quilt kernel.org/pub/linux/kernel/people/groeck/linux-staging/
2840T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
Jean Delvare9e012c12010-09-17 17:24:11 +02002841S: Maintained
Jean Delvare047f4ec2009-12-09 20:35:46 +01002842F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002843F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002844F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002845
Michael Buesch844dd052006-06-26 00:24:59 -07002846HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002847M: Matt Mackall <mpm@selenic.com>
2848M: Herbert Xu <herbert@gondor.apana.org.au>
2849S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002850F: Documentation/hw_random.txt
2851F: drivers/char/hw_random/
2852F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002855M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002856L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002858F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002860HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002861M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002862L: iss_storagedev@hp.com
2863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002864F: Documentation/blockdev/cpqarray.txt
2865F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002866
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002867HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
2868M: Stephen M. Cameron <scameron@beardog.cce.hp.com>
2869L: iss_storagedev@hp.com
2870S: Supported
2871F: Documentation/scsi/hpsa.txt
2872F: drivers/scsi/hpsa*.[ch]
2873F: include/linux/cciss*.h
2874
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002875HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002876M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002877L: iss_storagedev@hp.com
2878S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002879F: Documentation/blockdev/cciss.txt
2880F: drivers/block/cciss*
2881F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002884M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002886F: Documentation/filesystems/hfs.txt
2887F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
2889HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002890M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891L: linux-nvidia@lists.surfsouth.com
2892W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002894F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002896HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002897M: Pavel Machek <pavel@ucw.cz>
2898M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002899L: linux-pm@lists.linux-foundation.org
2900S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002901F: arch/x86/power/
2902F: drivers/base/power/
2903F: kernel/power/
2904F: include/linux/suspend.h
2905F: include/linux/freezer.h
2906F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002907F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002908
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002909HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002910M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002911L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002912T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002914F: drivers/hid/
2915F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002916
Ingo Molnar38bed542007-02-22 09:09:34 +01002917HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002918M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/timers/
2921F: kernel/hrtimer.c
Thomas Gleixner88606e82010-12-14 21:37:13 +01002922F: kernel/time/clockevents.c
2923F: kernel/time/tick*.*
2924F: kernel/time/timer_*.c
2925F include/linux/clockevents.h
Joe Perches679655d2009-04-07 20:44:32 -07002926F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002929M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930L: linux-hams@vger.kernel.org
2931W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002933F: drivers/net/hamradio/dmascc.c
2934F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002936HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002937M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002938W: http://www.highpoint-tech.com
2939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002940F: Documentation/scsi/hptiop.txt
2941F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002944M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945L: linux-hippi@sunsite.dk
2946S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002947F: include/linux/hippidevice.h
2948F: include/linux/if_hippi.h
2949F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Jouni Malinenff1d2762005-05-12 22:54:16 -04002951HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002952M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002953L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002954L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002955W: http://hostap.epitest.fi/
2956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002957F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002958
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002959HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002960M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -05002961L: platform-driver-x86@vger.kernel.org
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002962S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002963F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002964
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002965HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002966M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002967S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002968F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002969
Joe Perches7d2c86b2009-04-07 20:59:01 -07002970HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002971M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002972S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002973F: Documentation/timers/hpet.txt
2974F: drivers/char/hpet.c
2975F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002976
Jiri Kosinae07b5d72010-03-18 10:59:57 +01002977HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07002978M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002980F: arch/x86/kernel/hpet.c
2981F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002984M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2986S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002987F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Joe Perches7d2c86b2009-04-07 20:59:01 -07002989HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002990M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002991W: http://www.pharscape.org
2992S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002993F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002994
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002995HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002997L: linux-input@vger.kernel.org
2998S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002999F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04003000
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003002M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003004F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003006I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003007M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01003008L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003010F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04003011
Jean Delvare5b543962005-08-15 19:51:02 +02003012I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003013M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
3014M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003015L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01003016W: http://i2c.wiki.kernel.org/
3017T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01003018T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003020F: Documentation/i2c/
3021F: drivers/i2c/
3022F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01003023F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Till Harbaume8c76ee2007-05-01 23:26:35 +02003025I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01003027L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07003028W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02003029S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003030F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07003033M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003035F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036
3037i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07003038M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07003039T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040S: Maintained
3041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07003043M: Tony Luck <tony.luck@intel.com>
3044M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045L: linux-ia64@vger.kernel.org
3046W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07003047T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003049F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003052M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053W: http://www.uni-mainz.de/~langm000/linux.html
3054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003055F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07003058M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003060F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061
Santiago Leon9d348af2010-09-03 18:29:53 +00003062IBM Power Virtual Ethernet Device Driver
3063M: Santiago Leon <santil@linux.vnet.ibm.com>
3064L: netdev@vger.kernel.org
3065S: Supported
3066F: drivers/net/ibmveth.*
3067
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068IBM ServeRAID RAID DRIVER
3069P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07003070M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03003072S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003073F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01003075IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003076M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003078Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07003079T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003081F: Documentation/ide/
3082F: drivers/ide/
3083F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02003085IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003086M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01003087L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01003088S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003089F: Documentation/cdrom/ide-cd
3090F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Andy Henroid27471fd2008-10-09 11:45:22 -07003092IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07003093M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07003094L: linux-pm@lists.linux-foundation.org
3095S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003096F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07003097
Joe Perches7d2c86b2009-04-07 20:59:01 -07003098IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003099M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01003101W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07003102T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Stefan Richter958a29c2009-12-26 01:36:12 +01003103S: Obsolete
Stefan Richter544df552009-10-03 10:17:29 +02003104F: Documentation/debugging-via-ohci1394.txt
Joe Perches679655d2009-04-07 20:44:32 -07003105F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Sergey Lapin02cf2282009-06-08 12:18:50 +00003107IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3109M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04003110L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00003111W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00003112T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00003113S: Maintained
3114F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07003115F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00003116
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003117INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07003118M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003119S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003120F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05003121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003123L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09003124S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003125F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
3127INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003128M: Roland Dreier <rolandd@cisco.com>
3129M: Sean Hefty <sean.hefty@intel.com>
3130M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003131L: linux-rdma@vger.kernel.org
Roland Dreier605841f2010-09-27 17:51:24 -07003132W: http://www.openfabrics.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08003133Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07003134T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003136F: Documentation/infiniband/
3137F: drivers/infiniband/
3138F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
Robert Lovec9f04f52005-07-15 12:21:07 -04003140INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07003141M: John McCutchan <john@johnmccutchan.com>
3142M: Robert Love <rlove@rlove.org>
3143M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04003144S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003145F: Documentation/filesystems/inotify.txt
3146F: fs/notify/inotify/
3147F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04003148
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003149INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
3151M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003152L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003153Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07003154T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003156F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003157
Henrik Rydberg3267a872010-06-24 19:10:40 -07003158INPUT MULTITOUCH (MT) PROTOCOL
3159M: Henrik Rydberg <rydberg@euromail.se>
3160L: linux-input@vger.kernel.org
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003161T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
Henrik Rydberg3267a872010-06-24 19:10:40 -07003162S: Maintained
3163F: Documentation/input/multi-touch-protocol.txt
Henrik Rydberg7f9c2452010-12-07 09:18:28 +01003164F: drivers/input/input-mt.c
Henrik Rydberg3267a872010-06-24 19:10:40 -07003165K: \b(ABS|SYN)_MT_
3166
Len Brown26717172010-03-08 14:07:30 -05003167INTEL IDLE DRIVER
3168M: Len Brown <lenb@kernel.org>
3169L: linux-pm@lists.linux-foundation.org
3170T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
3171S: Supported
3172F: drivers/idle/intel_idle.c
3173
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003174INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08003175M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003176L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003178F: Documentation/fb/intelfb.txt
3179F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003182M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003183L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01003184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003185F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303187INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003188M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05003189L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303190W: http://www.lesswatts.org/projects/acpi/
3191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003192F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05303193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003195M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003197F: arch/x86/kernel/microcode_core.c
3198F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003200INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08003201M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003202S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003203F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07003204
David Woodhouse6c8909b2008-10-18 16:12:17 +01003205INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07003206M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01003207L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07003208T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01003209S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003210F: drivers/pci/intel-iommu.c
3211F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01003212
Dan Williamsb3e5f262007-08-07 10:26:35 -07003213INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003214M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07003215S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003216F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07003217
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003218INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003219M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003221F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3222F: arch/arm/mach-ixp4xx/include/mach/npe.h
3223F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3224F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3225F: drivers/net/arm/ixp4xx_eth.c
3226F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003227
Michael Buesch844dd052006-06-26 00:24:59 -07003228INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003229M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003230S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003231F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003232
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003233INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003234M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003235L: netdev@vger.kernel.org
3236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003237F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003238
Jeff Kirsher0d164402010-10-05 01:15:17 +00003239INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
Joe Perches8b58be82009-07-29 15:04:30 -07003240M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3241M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3242M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003243M: Carolyn Wyborny <carolyn.wyborny@intel.com>
3244M: Don Skidmore <donald.c.skidmore@intel.com>
3245M: Greg Rose <gregory.v.rose@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003246M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
Jeff Kirsher0d164402010-10-05 01:15:17 +00003247M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003248M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003249L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003250W: http://e1000.sourceforge.net/
Jeff Kirsherfa795e62010-12-10 00:09:08 -08003251T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-2.6.git
3252T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253S: Supported
Jeff Kirsher0d164402010-10-05 01:15:17 +00003254F: Documentation/networking/e100.txt
3255F: Documentation/networking/e1000.txt
3256F: Documentation/networking/e1000e.txt
3257F: Documentation/networking/igb.txt
3258F: Documentation/networking/igbvf.txt
3259F: Documentation/networking/ixgb.txt
3260F: Documentation/networking/ixgbe.txt
3261F: Documentation/networking/ixgbevf.txt
Joe Perches679655d2009-04-07 20:44:32 -07003262F: drivers/net/e100.c
3263F: drivers/net/e1000/
3264F: drivers/net/e1000e/
3265F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003266F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07003267F: drivers/net/ixgb/
3268F: drivers/net/ixgbe/
Jeff Kirsher0d164402010-10-05 01:15:17 +00003269F: drivers/net/ixgbevf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
James Ketrenos826d2ab2005-11-07 18:56:59 -06003271INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003272L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003273S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003274F: Documentation/networking/README.ipw2100
3275F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003276
3277INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003278L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003279S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003280F: Documentation/networking/README.ipw2200
3281F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003282
Shane Wang4bd96a72010-03-10 14:36:10 +08003283INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3284M: Joseph Cihula <joseph.cihula@intel.com>
3285M: Shane Wang <shane.wang@intel.com>
3286L: tboot-devel@lists.sourceforge.net
3287W: http://tboot.sourceforge.net
3288T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3289S: Supported
3290F: Documentation/intel_txt.txt
3291F: include/linux/tboot.h
3292F: arch/x86/kernel/tboot.c
3293
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003294INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003295M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003296M: linux-wimax@intel.com
3297L: wimax@linuxwimax.org
3298S: Supported
3299W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003300F: Documentation/wimax/README.i2400m
3301F: drivers/net/wimax/i2400m/
3302F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003303
Zhu Yib481de92007-09-25 17:54:57 -07003304INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07003305M: Reinette Chatre <reinette.chatre@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003306M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003307M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003308L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003309W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003310T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003311S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003312F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003313
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003314INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3315M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003316M: Intel Linux Wireless <ilw@linux.intel.com>
3317L: linux-wireless@vger.kernel.org
3318S: Supported
3319W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3320F: drivers/net/wireless/iwmc3200wifi/
3321
Ralf Baechlecb109a02007-08-30 23:56:30 -07003322IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003323M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324L: linux-mips@linux-mips.org
3325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003326F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Ralf Baechlecb109a02007-08-30 23:56:30 -07003328IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003329M: Pat Gefre <pfg@sgi.com>
Ralf Baechled39e0722010-10-19 18:32:41 +01003330L: linux-serial@vger.kernel.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003332F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003333
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003334IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003337F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Francois Romieu1202d6f2007-09-17 17:13:55 -07003339IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003340M: Francois Romieu <romieu@fr.zoreil.com>
3341M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003342L: netdev@vger.kernel.org
3343S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003344F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003345
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003346IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003348L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07003349T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003351F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003352
Corey Minyard4409ebe2006-04-20 02:43:12 -07003353IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003354M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003355L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003356W: http://openipmi.sourceforge.net/
3357S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003358F: Documentation/IPMI.txt
3359F: drivers/char/ipmi/
3360F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003362IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003363M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003364L: linux-scsi@vger.kernel.org
3365W: http://www.adaptec.com/
3366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003367F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003368
3369IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003370M: Wensong Zhang <wensong@linux-vs.org>
3371M: Simon Horman <horms@verge.net.au>
3372M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003373L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003374L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003376F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a72009-09-21 17:04:12 -07003377F: include/net/ip_vs.h
3378F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003379F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Randy Dunlape7839f22008-10-12 16:11:45 -07003381IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003382M: Jiri Kosina <jkosina@suse.cz>
3383M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003384S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003385T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003386F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003387
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003388IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003389M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003390L: netdev@vger.kernel.org
3391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003392F: include/linux/ipx.h
3393F: include/net/ipx.h
3394F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003397M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003398L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003400S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003401T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003402F: Documentation/networking/irda.txt
3403F: drivers/net/irda/
3404F: include/net/irda/
3405F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Thomas Gleixnera800c7c2010-09-21 11:33:54 +02003407IRQ SUBSYSTEM
3408M: Thomas Gleixner <tglx@linutronix.de>
3409S: Maintained
3410T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core
3411F: kernel/irq/
3412
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003413ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003414M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003415S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003416F: Documentation/isapnp.txt
3417F: drivers/pnp/isapnp/
3418F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003419
Mike Christie14816b12007-11-28 16:22:06 -08003420ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003421M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b12007-11-28 16:22:06 -08003422L: open-iscsi@googlegroups.com
3423W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003424T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b12007-11-28 16:22:06 -08003425S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003426F: drivers/scsi/*iscsi*
3427F: include/scsi/*iscsi*
Mike Christie14816b12007-11-28 16:22:06 -08003428
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003430M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003431L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003432L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003434T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003436F: Documentation/isdn/
3437F: drivers/isdn/
3438F: include/linux/isdn.h
3439F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003443L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444W: http://www.melware.de
3445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Jean Delvared6248702010-03-05 22:17:20 +01003448IT87 HARDWARE MONITORING DRIVER
3449M: Jean Delvare <khali@linux-fr.org>
3450L: lm-sensors@lm-sensors.org
3451S: Maintained
3452F: Documentation/hwmon/it87
3453F: drivers/hwmon/it87.c
3454
Hans Verkuil91821ff2007-12-02 09:35:33 -03003455IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003456M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003457L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003458L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003459T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003460W: http://www.ivtvdriver.org
3461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003462F: Documentation/video4linux/*.ivtv
3463F: drivers/media/video/ivtv/
3464F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003465
Guenter Roeck4453d732010-08-09 17:21:08 -07003466JC42.4 TEMPERATURE SENSOR DRIVER
3467M: Guenter Roeck <linux@roeck-us.net>
3468L: lm-sensors@lm-sensors.org
3469S: Maintained
3470F: drivers/hwmon/jc42.c
3471F: Documentation/hwmon/jc42
3472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003473JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003474M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003475L: jfs-discussion@lists.sourceforge.net
3476W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003477T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003478S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003479F: Documentation/filesystems/jfs.txt
3480F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003481
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003482JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003483M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003484L: netdev@vger.kernel.org
3485S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003486F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003489M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003490L: linux-mtd@lists.infradead.org
3491W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003493F: fs/jffs2/
3494F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495
Josh Triplettde456d32006-07-30 03:04:00 -07003496JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003497M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003498M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003499L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003501F: fs/jbd*/
3502F: include/linux/ext*jbd*.h
3503F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003504
Breno Leitaofd8b6cb2010-10-06 13:04:48 -03003505JSM Neo PCI based serial card
3506M: Breno Leitao <leitao@linux.vnet.ibm.com>
3507L: linux-serial@vger.kernel.org
3508S: Maintained
3509F: drivers/serial/jsm/
3510
Rudolf Marek4660cb32006-10-08 22:01:26 +02003511K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003512M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003513L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003515F: Documentation/hwmon/k8temp
3516F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517
3518KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07003519M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003520L: linux-kbuild@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003521Q: http://patchwork.kernel.org/project/linux-kbuild/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003523F: Documentation/kbuild/kconfig-language.txt
3524F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
Vivek Goyalea6c2082006-05-20 14:59:55 -07003526KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003527M: Vivek Goyal <vgoyal@redhat.com>
3528M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003529L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003530W: http://lse.sourceforge.net/kdump/
3531S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003532F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003533
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003535M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536L: autofs@linux.kernel.org
Arnd Bergmanndb7bee22010-10-04 22:28:10 +02003537S: Obsolete
3538F: drivers/staging/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
3540KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003541M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542L: autofs@linux.kernel.org
3543S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003544F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Michal Marek70fb7ba2010-01-29 14:22:43 +01003546KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003547M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003548T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3549T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003550L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003551S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003552F: Documentation/kbuild/
3553F: Makefile
3554F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003555F: scripts/basic/
3556F: scripts/mk*
3557F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
3559KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003560L: kernel-janitors@vger.kernel.org
Justin P. Mattock10466f52010-08-26 15:30:03 -07003561W: http://kernelnewbies.org/KernelJanitors
Joe Perchesee709b02009-10-26 16:49:43 -07003562S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003564KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003565M: "J. Bruce Fields" <bfields@fieldses.org>
3566M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003567L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003569S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003570F: fs/nfsd/
3571F: include/linux/nfsd/
3572F: fs/lockd/
3573F: fs/nfs_common/
3574F: net/sunrpc/
3575F: include/linux/lockd/
3576F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Avi Kivity426d62e2006-12-13 00:34:03 -08003578KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003579M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003580M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003581L: kvm@vger.kernel.org
3582W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003583S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003584F: Documentation/*/kvm.txt
3585F: arch/*/kvm/
3586F: arch/*/include/asm/kvm*
3587F: include/linux/kvm*
3588F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003589
Joerg Roedelad8003d2008-09-10 20:01:07 +02003590KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003591M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003592L: kvm@vger.kernel.org
3593W: http://kvm.qumranet.com
3594S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003595F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003596F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003597
Hollis Blanchard513014b2008-04-16 23:28:08 -05003598KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003599M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003600L: kvm-ppc@vger.kernel.org
3601W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003602S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003603F: arch/powerpc/include/asm/kvm*
3604F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003605
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003606KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003607M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003608L: kvm-ia64@vger.kernel.org
3609W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003610S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003611F: Documentation/ia64/kvm.txt
3612F: arch/ia64/include/asm/kvm*
3613F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003614
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003615KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003616M: Carsten Otte <cotte@de.ibm.com>
3617M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003618M: linux390@de.ibm.com
3619L: linux-s390@vger.kernel.org
3620W: http://www.ibm.com/developerworks/linux/linux390/
3621S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003622F: Documentation/s390/kvm.txt
3623F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003624F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003625F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003626
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003627KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003628M: Eric Biederman <ebiederm@xmission.com>
Simon Horman2f327da2010-09-09 16:37:33 -07003629W: http://kernel.org/pub/linux/utils/kernel/kexec/
Simon Horman34633992007-05-08 00:31:40 -07003630L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003631S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003632F: include/linux/kexec.h
3633F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003634
David Howellse9714612010-03-29 23:42:09 +01003635KEYS/KEYRINGS:
3636M: David Howells <dhowells@redhat.com>
3637L: keyrings@linux-nfs.org
3638S: Maintained
3639F: Documentation/keys.txt
3640F: include/linux/key.h
3641F: include/linux/key-type.h
3642F: include/keys/
3643F: security/keys/
3644
Jason Wessel5b778da2010-05-20 21:04:28 -05003645KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003646M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003647W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003648L: kgdb-bugreport@lists.sourceforge.net
3649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003650F: Documentation/DocBook/kgdb.tmpl
3651F: drivers/misc/kgdbts.c
3652F: drivers/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003653F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003654F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003655F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003656
Pekka Enberg456db8c2008-04-28 22:47:29 +03003657KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003658M: Vegard Nossum <vegardno@ifi.uio.no>
Joe Perches410d7a92009-11-17 14:06:15 -08003659M: Pekka Enberg <penberg@cs.helsinki.fi>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003660S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003661F: Documentation/kmemcheck.txt
3662F: arch/x86/include/asm/kmemcheck.h
3663F: arch/x86/mm/kmemcheck/
3664F: include/linux/kmemcheck.h
3665F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003666
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003667KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003668M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003669S: Maintained
3670F: Documentation/kmemleak.txt
3671F: include/linux/kmemleak.h
3672F: mm/kmemleak.c
3673F: mm/kmemleak-test.c
3674
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003675KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003676M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3677M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3678M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003679M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003681F: Documentation/kprobes.txt
3682F: include/linux/kprobes.h
3683F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003684
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003685KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003686M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003687W: http://miguelojeda.es/auxdisplay.htm
3688W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003689S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003690F: Documentation/auxdisplay/ks0108
3691F: drivers/auxdisplay/ks0108.c
3692F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003693
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003696S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003697F: Documentation/networking/lapb-module.txt
3698F: include/*/lapb.h
3699F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
3701LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003702M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703L: linux-scsi@vger.kernel.org
3704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003705F: Documentation/scsi/53c700.txt
3706F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707
Richard Purdie263de9b2006-05-15 09:44:16 -07003708LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003709M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003710S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003711F: drivers/leds/
3712F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003715M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716L: legousb-devel@lists.sourceforge.net
3717W: http://legousb.sourceforge.net/
3718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Rusty Russell568a17f2007-10-25 14:12:24 +10003721LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003722M: Rusty Russell <rusty@rustcorp.com.au>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003723L: lguest@lists.ozlabs.org
Rusty Russell568a17f2007-10-25 14:12:24 +10003724W: http://lguest.ozlabs.org/
Rusty Russell72e91862010-08-27 08:39:51 -06003725S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003726F: Documentation/lguest/
3727F: arch/x86/lguest/
3728F: drivers/lguest/
3729F: include/linux/lguest*.h
3730F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003733M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734W: http://www.ibm.com/linux/ltc/projects/ppc
3735S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003736F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003738LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003739M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3740M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003742L: linuxppc-dev@lists.ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003743Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003744T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003746F: Documentation/powerpc/
3747F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
3749LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003750M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003752L: linuxppc-dev@lists.ozlabs.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003754F: arch/powerpc/platforms/powermac/
3755F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
Grant Likely77a76362008-07-12 12:11:43 -06003757LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003758M: Grant Likely <grant.likely@secretlab.ca>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003759L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003760T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003762F: arch/powerpc/platforms/512x/
3763F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003766M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3767M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003769L: linuxppc-dev@lists.ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003770T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003772F: arch/powerpc/platforms/40x/
3773F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Grant Likely260c02a2007-10-02 12:15:34 +10003775LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003776M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003777W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003778L: linuxppc-dev@lists.ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003779T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003781F: arch/powerpc/*/*virtex*
3782F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783
Tom Rinie93adf12005-07-26 12:49:53 -07003784LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003785M: Vitaly Bordug <vitb@kernel.crashing.org>
3786M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003787W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003788L: linuxppc-dev@lists.ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003789S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07003790F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07003791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003794W: http://www.penguinppc.org/
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003795L: linuxppc-dev@lists.ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003796S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003797F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Olof Johanssonab06ff32006-09-06 14:44:54 -05003799LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003800M: Olof Johansson <olof@lixom.net>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10003801L: linuxppc-dev@lists.ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00003802S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003803F: arch/powerpc/platforms/pasemi/
3804F: drivers/*/*pasemi*
3805F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003808M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003809L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003810T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811S: Supported
3812
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003813LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003814M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003815S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003816F: include/linux/llc.h
3817F: include/net/llc*
3818F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003819
Pavel Machek455fbdd2008-11-12 13:27:02 -08003820LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003821M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003822S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003823F: Documentation/hwmon/lis3lv02d
3824F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003825
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003826LM73 HARDWARE MONITOR DRIVER
3827M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3828L: lm-sensors@lm-sensors.org
3829S: Maintained
3830F: drivers/hwmon/lm73.c
3831
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003833M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003834L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003836F: Documentation/hwmon/lm83
3837F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003840M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003841L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003843F: Documentation/hwmon/lm90
3844F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003846LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003847M: Peter Zijlstra <peterz@infradead.org>
3848M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003849T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003851F: Documentation/lockdep*.txt
3852F: Documentation/lockstat.txt
3853F: include/linux/lockdep.h
3854F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003855
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003856LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003857M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003858L: linux-ntfs-dev@lists.sourceforge.net
3859W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003861F: Documentation/ldm.txt
3862F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Joern Engelef6ada32009-11-20 22:17:12 +01003864LogFS
3865M: Joern Engel <joern@logfs.org>
3866L: logfs@logfs.org
3867W: logfs.org
3868S: Maintained
3869F: fs/logfs/
3870
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003871LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003873M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003874L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003875L: linux-scsi@vger.kernel.org
3876W: http://www.lsilogic.com/support
3877S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003878F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003879
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003881M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882L: linux-scsi@vger.kernel.org
3883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003884F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Guenter Roecke5f5c992010-06-25 11:59:54 -07003886LTC4261 HARDWARE MONITOR DRIVER
3887M: Guenter Roeck <linux@roeck-us.net>
3888L: lm-sensors@lm-sensors.org
3889S: Maintained
3890F: Documentation/hwmon/ltc4261
3891F: drivers/hwmon/ltc4261.c
3892
Mike Frysinger81365c32008-10-29 14:01:12 -07003893LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08003894M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
3895M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07003896M: Mike Frysinger <vapier@gentoo.org>
3897M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07003898L: ltp-list@lists.sourceforge.net (subscribers-only)
3899W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07003900T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07003901S: Maintained
3902
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003903M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003905L: linux-m32r@ml.linux-m32r.org
3906L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3907W: http://www.linux-m32r.org/
3908S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003909F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003910
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003912M: Geert Uytterhoeven <geert@linux-m68k.org>
3913M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914L: linux-m68k@lists.linux-m68k.org
3915W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003916T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003918F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003919F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
3921M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003922M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003924L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003926F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927
3928M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003929M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930W: http://www.tazenda.demon.co.uk/phil/linux-hp
3931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003932F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Jiri Benc64a327a2007-05-05 11:47:08 -07003934MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003935M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003936L: linux-wireless@vger.kernel.org
3937W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003938T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003940F: Documentation/networking/mac80211-injection.txt
3941F: include/net/mac80211.h
3942F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003943
Stefano Brivio1036d862007-12-23 04:46:27 +01003944MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003945M: Stefano Brivio <stefano.brivio@polimi.it>
3946M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003947L: linux-wireless@vger.kernel.org
3948W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003949T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003950S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003951F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003952
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003953MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003954M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003955L: netdev@vger.kernel.org
3956S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003957F: drivers/net/macvlan.c
3958F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003959
Michael Kerriskfaf16682005-07-31 22:34:47 -07003960MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003961M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003962W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003963L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003964S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003965
Stefano Brivio74cda162007-11-19 20:27:46 +01003966MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003967M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003968L: libertas-dev@lists.infradead.org
3969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003970F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003971
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003972MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003973M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003974L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003975S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003976F: drivers/net/mv643xx_eth.*
3977F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003979MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01003980M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003981L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02003982S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003983F: drivers/net/wireless/mwl8k.c
3984
Pierre Ossman2a695672009-03-16 19:52:26 +01003985MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003986M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04003987S: Odd Fixes
Joe Perches1fa7e542010-10-26 14:23:02 -07003988F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01003989
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003990MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003991M: Mirko Lindner <mlindner@syskonnect.de>
3992M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003993W: http://www.syskonnect.com
3994S: Supported
3995
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996MATROX FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003997L: linux-fbdev@vger.kernel.org
Petr Vandrovec52653192010-09-30 15:15:34 -07003998S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003999F: drivers/video/matrox/matroxfb_*
4000F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004002MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004003M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004004L: lm-sensors@lm-sensors.org
4005S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004006F: Documentation/hwmon/max6650
4007F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02004008
Joe Perches127c49a2009-04-08 08:34:04 -07004009MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07004010M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07004011P: LinuxTV.org Project
4012L: linux-media@vger.kernel.org
4013W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004014Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07004015T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
4016S: Maintained
4017F: Documentation/dvb/
4018F: Documentation/video4linux/
4019F: drivers/media/
4020F: include/media/
4021F: include/linux/dvb/
4022F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07004023
4024MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004025M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004026L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004027W: http://megaraid.lsilogic.com
4028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004029F: Documentation/scsi/megaraid.txt
4030F: drivers/scsi/megaraid.*
4031F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07004032
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004033MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035W: http://www.linux-mm.org
4036S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004037F: include/linux/mm.h
4038F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04004039
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004040MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07004041M: Balbir Singh <balbir@linux.vnet.ibm.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08004042M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07004043M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004044L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004046F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08004047
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07004049M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004051W: http://www.linux-mtd.infradead.org/
4052Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08004053T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004055F: drivers/mtd/
4056F: include/linux/mtd/
4057F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Michal Simekc6375b02009-03-27 14:25:52 +01004059MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004060M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01004061L: microblaze-uclinux@itee.uq.edu.au
4062W: http://www.monstr.eu/fdt/
4063T: git git://git.monstr.eu/linux-2.6-microblaze.git
4064S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02004065F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
4067MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07004068M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004070F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
4072MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07004073M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01004074W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07004076T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00004077S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004078F: Documentation/mips/
4079F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
4081MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004082M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004084F: Documentation/ia64/mca.txt
4085F: Documentation/mca.txt
4086F: drivers/mca/
4087F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
4089MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004090M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004092F: include/linux/module.h
4093F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
4095MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004096M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097W: http://popies.net/meye/
4098S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004099F: Documentation/video4linux/meye.txt
4100F: drivers/media/video/meye.*
4101F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Pavel Pisac58ff042007-05-16 01:10:41 +02004103MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004104M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004105L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02004106S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004107F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02004108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004110M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004112F: drivers/input/mouse/
4113F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Jiri Slabyb9705b62008-04-30 00:53:48 -07004115MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07004116M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08004117S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004118F: Documentation/serial/moxa-smartio
4119F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08004120
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004121MSI LAPTOP SUPPORT
Lee, Chun-Yi58e226c2010-09-10 08:04:19 +00004122M: Lee, Chun-Yi <jlee@novell.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05004123L: platform-driver-x86@vger.kernel.org
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004125F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04004126
Anisse Astier0f1006b2009-12-17 11:28:49 +01004127MSI WMI SUPPORT
4128M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05004129L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01004130S: Supported
4131F: drivers/platform/x86/msi-wmi.c
4132
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004133MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07004134M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07004135T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004136S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004137F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07004138
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02004139MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Chris Ball245feaa2010-09-10 12:05:24 -04004140M: Chris Ball <cjb@laptop.org>
Andrew Mortonb2503a92009-08-18 14:11:12 -07004141L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04004142T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
4143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004144F: drivers/mmc/
4145F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01004146
David Brownell15a05802007-08-08 09:12:54 -07004147MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07004148M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02004149S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004150F: drivers/mmc/host/mmc_spi.c
4151F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07004152
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004154M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004156F: Documentation/sound/oss/MultiSound
4157F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Jiri Slabyd7354102006-12-08 02:38:35 -08004159MULTITECH MULTIPORT CARD (ISICOM)
Jiri Slabyd86b3002010-08-31 17:08:52 +02004160S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004161F: drivers/char/isicom.c
4162F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08004163
Felipe Balbi550a7372008-07-24 12:27:36 +03004164MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Felipe Balbif2994702010-09-09 09:04:25 +03004165M: Felipe Balbi <balbi@ti.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02004166L: linux-usb@vger.kernel.org
Felipe Balbi8a700f32009-12-15 11:08:45 +02004167T: git git://gitorious.org/usb/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02004168S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004169F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03004170
Brice Goglin2d3cf582008-05-17 12:45:36 +02004171MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07004172M: Andrew Gallatin <gallatin@myri.com>
4173M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02004174L: netdev@vger.kernel.org
4175W: http://www.myri.com/scs/download-Myri10GE.html
4176S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004177F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07004180M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004182F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
4184NCP FILESYSTEM
Petr Vandrovec52653192010-09-30 15:15:34 -07004185M: Petr Vandrovec <petr@vandrovec.name>
4186S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07004187F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
4189NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07004190M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191L: linux-scsi@vger.kernel.org
4192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004193F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004195NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07004196M: Faisal Latif <faisal.latif@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07004197L: linux-rdma@vger.kernel.org
Chien Tunge3d33cb2010-11-02 16:29:54 +00004198W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
Glenn Streiff3c2d7742008-02-04 20:20:45 -08004199S: Supported
4200F: drivers/infiniband/hw/nes/
4201
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004202NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07004203M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07004204L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004205S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004206F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07004207
Jon Masonb2f5a052010-07-15 08:47:27 +00004208NETERION 10GbE DRIVERS (s2io/vxge)
4209M: Ramkrishna Vepa <ramkrishna.vepa@exar.com>
4210M: Sivakumar Subramani <sivakumar.subramani@exar.com>
4211M: Sreenivasa Honnur <sreenivasa.honnur@exar.com>
4212M: Jon Mason <jon.mason@exar.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07004213L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00004214W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
4215W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07004216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004217F: Documentation/networking/s2io.txt
4218F: drivers/net/s2io*
Jon Masonb2f5a052010-07-15 08:47:27 +00004219F: Documentation/networking/vxge.txt
4220F: drivers/net/vxge/
Jiri Slaby4a584482007-08-30 23:56:39 -07004221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222NETFILTER/IPTABLES/IPCHAINS
4223P: Rusty Russell
4224P: Marc Boucher
4225P: James Morris
4226P: Harald Welte
4227P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07004228M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07004229L: netfilter-devel@vger.kernel.org
4230L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07004231L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232W: http://www.netfilter.org/
4233W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08004234T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004236F: include/linux/netfilter*
4237F: include/linux/netfilter/
4238F: include/net/netfilter/
4239F: net/*/netfilter.c
4240F: net/*/netfilter/
4241F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Paul Moore4cc67732006-09-25 15:57:13 -07004243NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07004244M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07004245W: http://netlabel.sf.net
4246L: netdev@vger.kernel.org
4247S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004248F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004249F: include/net/netlabel.h
4250F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004253M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004255W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004257F: include/linux/netrom.h
4258F: include/net/netrom.h
4259F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004261NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004262M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004264F: Documentation/blockdev/nbd.txt
4265F: drivers/block/nbd.c
4266F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
Neil Horman6e436502009-10-05 03:56:55 +00004268NETWORK DROP MONITOR
4269M: Neil Horman <nhorman@tuxdriver.com>
4270L: netdev@vger.kernel.org
4271S: Maintained
4272W: https://fedorahosted.org/dropwatch/
4273F: net/core/drop_monitor.c
4274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004276M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004277L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004278W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004279W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004280T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08004281T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004283F: net/
4284F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004285F: include/linux/in.h
4286F: include/linux/net.h
4287F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
4289NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004290M: "David S. Miller" <davem@davemloft.net>
4291M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
4292M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
4293M: James Morris <jmorris@namei.org>
4294M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4295M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004296L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004297T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004299F: net/ipv4/
4300F: net/ipv6/
4301F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
James Morris10e2ff12007-08-25 14:41:28 -07004303NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07004304M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07004305L: netdev@vger.kernel.org
4306S: Maintained
4307
John W. Linville29f8f632006-01-18 14:52:48 -08004308NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004309M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004310L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004311Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004312T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004313S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004314F: net/mac80211/
4315F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004316F: net/wireless/
4317F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004318F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004319F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004320F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004321
Joe Perches788873a2009-04-16 09:38:45 +00004322NETWORKING DRIVERS
4323L: netdev@vger.kernel.org
4324W: http://www.linuxfoundation.org/en/Net
4325T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004326T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004327S: Odd Fixes
4328F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004329F: include/linux/if_*
4330F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004331
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004332NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004333M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004334L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004335W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004336S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004337F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004338
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004339NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004341L: linux-nfs@vger.kernel.org
4342W: http://client.linux-nfs.org
4343T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004345F: fs/lockd/
4346F: fs/nfs/
4347F: fs/nfs_common/
4348F: net/sunrpc/
4349F: include/linux/lockd/
4350F: include/linux/nfs*
4351F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
4353NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004354M: Jan-Pascal van Best <janpascal@vanbest.org>
4355M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004356L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004358F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004360NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004361M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004362L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004363W: http://www.nilfs.org/en/
Ryusuke Konishiaf1761f2010-11-23 23:37:23 +09004364T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004365S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004366F: Documentation/filesystems/nilfs2.txt
4367F: fs/nilfs2/
4368F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004369
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004371M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4373S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004374F: Documentation/scsi/NinjaSCSI.txt
4375F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376
4377NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004378M: GOTO Masanori <gotom@debian.or.jp>
4379M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4381S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004382F: Documentation/scsi/NinjaSCSI.txt
4383F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385NTFS FILESYSTEM
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004386M: Anton Altaparmakov <anton@tuxera.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387L: linux-ntfs-dev@lists.sourceforge.net
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004388W: http://www.tuxera.com/
Joe Perches54e58812009-04-07 21:08:10 -07004389T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Anton Altaparmakov2818ef52011-01-12 10:34:35 +00004390S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004391F: Documentation/filesystems/ntfs.txt
4392F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004394NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004395M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004396L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004398F: drivers/video/riva/
4399F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Tony Lindgrenf5525782009-05-28 13:23:53 -07004401OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004402M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004403L: linux-omap@vger.kernel.org
4404W: http://www.muru.com/linux/omap/
4405W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004406Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004407T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4408S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004409F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004410
4411OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004412M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004413L: linux-omap@vger.kernel.org
4414S: Maintained
4415F: arch/arm/*omap*/*clock*
4416
4417OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004418M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004419L: linux-omap@vger.kernel.org
4420S: Maintained
4421F: arch/arm/*omap*/*pm*
4422
4423OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004424M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004425L: alsa-devel@alsa-project.org (subscribers-only)
4426L: linux-omap@vger.kernel.org
4427S: Maintained
4428F: sound/soc/omap/
4429
4430OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen3043c102010-01-07 13:06:51 +02004431M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004432L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004433L: linux-omap@vger.kernel.org
4434S: Maintained
4435F: drivers/video/omap/
4436
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004437OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004438M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4439L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004440L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004441S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004442F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004443F: Documentation/arm/OMAP/DSS
4444
Tony Lindgrenf5525782009-05-28 13:23:53 -07004445OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004446M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004447L: linux-omap@vger.kernel.org
4448S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004449F: drivers/mmc/host/omap.c
4450
4451OMAP HS MMC SUPPORT
4452M: Madhusudhan Chikkature <madhu.cr@ti.com>
4453L: linux-omap@vger.kernel.org
4454S: Maintained
4455F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004456
4457OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004458M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004459S: Maintained
4460F: drivers/char/hw_random/omap-rng.c
4461
Paul Walmsleyf400c822010-12-06 19:08:54 -07004462OMAP HWMOD SUPPORT
4463M: Benoît Cousson <b-cousson@ti.com>
4464M: Paul Walmsley <paul@pwsan.com>
4465L: linux-omap@vger.kernel.org
4466S: Maintained
4467F: arch/arm/mach-omap2/omap_hwmod.c
4468F: arch/arm/plat-omap/include/plat/omap_hwmod.h
4469
4470OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
4471M: Benoît Cousson <b-cousson@ti.com>
4472L: linux-omap@vger.kernel.org
4473S: Maintained
4474F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
4475
Tony Lindgrenf5525782009-05-28 13:23:53 -07004476OMAP USB SUPPORT
Felipe Balbif2994702010-09-09 09:04:25 +03004477M: Felipe Balbi <balbi@ti.com>
Joe Perches8b58be82009-07-29 15:04:30 -07004478M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004479L: linux-usb@vger.kernel.org
4480L: linux-omap@vger.kernel.org
4481S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004482F: drivers/usb/*/*omap*
4483F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004484
Bob Copeland0ad122d2008-07-25 19:45:18 -07004485OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004486M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004487L: linux-karma-devel@lists.sourceforge.net
4488S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004489F: Documentation/filesystems/omfs.txt
4490F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004491
Harald Weltec1986ee2005-11-13 16:06:29 -08004492OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004493M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004494S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004495F: drivers/char/pcmcia/cm4000_cs.c
4496F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004497
Harald Welte77c44ab2005-11-13 16:06:26 -08004498OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004499M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004500S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004501F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004502
Jonathan Corbet77d51402007-03-22 19:44:17 -03004503OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004504M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004505L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004506T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004507S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004508F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004509
Thomas Gleixner431bca72007-05-02 09:31:35 +02004510ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004511M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004512L: linux-mtd@lists.infradead.org
4513S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004514F: drivers/mtd/onenand/
4515F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004516
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004518M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519L: osst-users@lists.sourceforge.net
4520L: linux-scsi@vger.kernel.org
4521S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004522F: drivers/scsi/osst*
4523F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004525OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004526M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004527L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004528S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004529F: Documentation/i2c/busses/i2c-ocores
4530F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004531
Grant Likely860c44c2009-10-26 16:49:49 -07004532OPEN FIRMWARE AND FLATTENED DEVICE TREE
4533M: Grant Likely <grant.likely@secretlab.ca>
4534L: devicetree-discuss@lists.ozlabs.org
4535W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004536T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004537S: Maintained
4538F: drivers/of
4539F: include/linux/of*.h
4540K: of_get_property
4541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004543M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544L: oprofile-list@lists.sf.net
4545S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004546F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004547F: arch/*/oprofile/
4548F: drivers/oprofile/
4549F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004551ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004552M: Mark Fasheh <mfasheh@suse.com>
Joel Beckerd6351db2011-01-07 18:10:32 -08004553M: Joel Becker <jlbec@evilplan.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004554L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4555W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004556T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004557S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004558F: Documentation/filesystems/ocfs2.txt
4559F: Documentation/filesystems/dlmfs.txt
4560F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562ORINOCO DRIVER
Johannes Berg724c6b32007-04-23 12:18:20 -07004563L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004564L: orinoco-users@lists.sourceforge.net
4565L: orinoco-devel@lists.sourceforge.net
David Kilroy3a59bab2010-08-21 12:13:45 +01004566W: http://linuxwireless.org/en/users/Drivers/orinoco
Pavel Roskinecffdde2005-05-05 16:16:01 -07004567W: http://www.nongnu.org/orinoco/
David Kilroy3a59bab2010-08-21 12:13:45 +01004568S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004569F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004571OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Boaz Harrosh <bharrosh@panasas.com>
4573M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004574L: osd-dev@open-osd.org
4575W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004576T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004577S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004578F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004579F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004580F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004581
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004582P54 WIRELESS DRIVER
Christian Lamparter084cb0fe72010-07-12 19:01:41 +02004583M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004584L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0fe72010-07-12 19:01:41 +02004585W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004586S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004587F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004588
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004589PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004590M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004591L: netdev@vger.kernel.org
4592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004593F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004594
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004595PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004597L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004600
Steffen Klassert48fc2672010-08-13 10:10:46 -04004601PADATA PARALLEL EXECUTION MECHANISM
4602M: Steffen Klassert <steffen.klassert@secunet.com>
4603L: linux-kernel@vger.kernel.org
4604L: linux-crypto@vger.kernel.org
4605S: Maintained
4606F: kernel/padata.c
4607F: include/linux/padata.h
4608F: Documentation/padata.txt
4609
Harald Welte709ee532008-09-23 17:46:57 +02004610PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004611M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004612L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004613S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004614F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004615
Akira Takeuchi368dd5a2010-10-27 17:28:55 +01004616PANASONIC MN10300/AM33/AM34 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004617M: David Howells <dhowells@redhat.com>
4618M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004619L: linux-am33-list@redhat.com (moderated for non-subscribers)
4620W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4621S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004622F: Documentation/mn10300/
4623F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004624
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004626L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004627S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004628F: drivers/parport/
4629F: include/linux/parport*.h
4630F: drivers/char/ppdev.c
4631F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004633PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004634M: Jeremy Fitzhardinge <jeremy@xensource.com>
4635M: Chris Wright <chrisw@sous-sol.org>
4636M: Alok Kataria <akataria@vmware.com>
4637M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004638L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004639S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004640F: Documentation/ia64/paravirt_ops.txt
4641F: arch/*/kernel/paravirt*
4642F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004643
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004645M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004646L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647W: http://www.torque.net/linux-pp.html
4648S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004649F: Documentation/blockdev/paride.txt
4650F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004653M: Kyle McMartin <kyle@mcmartin.ca>
4654M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004655M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004656L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004658Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004659T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004661F: arch/parisc/
4662F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663
Jim Cromie1662d322006-10-06 00:43:59 -07004664PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004665M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004666L: lm-sensors@lm-sensors.org
4667S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004668F: Documentation/hwmon/pc87360
4669F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004670
4671PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004672M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004673S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004674F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004675
Jean Delvare1ad107f2010-08-14 21:09:00 +02004676PC87427 HARDWARE MONITORING DRIVER
4677M: Jean Delvare <khali@linux-fr.org>
4678L: lm-sensors@lm-sensors.org
4679S: Maintained
4680F: Documentation/hwmon/pc87427
4681F: drivers/hwmon/pc87427.c
4682
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004683PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004684M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004685S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004686F: drivers/leds/leds-pca9532.c
4687F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004688
Guenter Roeck5ce914a2010-10-24 18:16:59 +02004689PCA9541 I2C BUS MASTER SELECTOR DRIVER
4690M: Guenter Roeck <guenter.roeck@ericsson.com>
4691L: linux-i2c@vger.kernel.org
4692S: Maintained
4693F: drivers/i2c/muxes/pca9541.c
4694
Wolfram Sanga1867d32009-09-18 22:45:51 +02004695PCA9564/PCA9665 I2C BUS DRIVER
4696M: Wolfram Sang <w.sang@pengutronix.de>
4697L: linux-i2c@vger.kernel.org
4698S: Maintained
4699F: drivers/i2c/algos/i2c-algo-pca.c
4700F: drivers/i2c/busses/i2c-pca-*
4701F: include/linux/i2c-algo-pca.h
4702F: include/linux/i2c-pca-platform.h
4703
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004704PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004705M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004706L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004708F: Documentation/PCI/pci-error-recovery.txt
4709F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004712M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004713L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004714Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004715T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004717F: Documentation/PCI/
4718F: drivers/pci/
4719F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004721PCI HOTPLUG
4722M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004723L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004724S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004725F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004726
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004728P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004729L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004730W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004731T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004732S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004733F: Documentation/pcmcia/
4734F: drivers/pcmcia/
4735F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736
4737PCNET32 NETWORK DRIVER
Don Fry227fb922010-12-21 19:58:15 -08004738M: Don Fry <pcnet32@frontier.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004739L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004741F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
Steffen Klassert48fc2672010-08-13 10:10:46 -04004743PCRYPT PARALLEL CRYPTO ENGINE
4744M: Steffen Klassert <steffen.klassert@secunet.com>
4745L: linux-crypto@vger.kernel.org
4746S: Maintained
4747F: crypto/pcrypt.c
4748F: include/crypto/pcrypt.h
4749
Tejun Heoe72df0b2010-12-10 17:02:49 +01004750PER-CPU MEMORY ALLOCATOR
4751M: Tejun Heo <tj@kernel.org>
4752M: Christoph Lameter <cl@linux-foundation.org>
4753L: linux-kernel@vger.kernel.org
4754T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
4755S: Maintained
4756F: include/linux/percpu*.h
4757F: mm/percpu*.c
4758F: arch/*/include/asm/percpu.h
4759
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004760PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004761M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004762S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004763F: include/linux/delayacct.h
4764F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004765
Ingo Molnar57c0c152009-09-21 12:20:38 +02004766PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004767M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4768M: Paul Mackerras <paulus@samba.org>
4769M: Ingo Molnar <mingo@elte.hu>
Arnaldo Carvalho de Melo4aafd3f2010-11-19 16:46:26 -02004770M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004771S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004772F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004773F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004774F: arch/*/kernel/perf_event*.c
4775F: arch/*/kernel/*/perf_event*.c
4776F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004777F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004778F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004779F: arch/*/kernel/perf_callchain.c
4780F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004781
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004782PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004783M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004784L: linux-abi-devel@lists.sourceforge.net
4785S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004786F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004787
Rémi Denis-Courmont838e7a02010-10-08 04:02:00 +00004788PHONET PROTOCOL
4789M: Remi Denis-Courmont <remi.denis-courmont@nokia.com>
4790S: Supported
4791F: Documentation/networking/phonet.txt
4792F: include/linux/phonet.h
4793F: include/net/phonet/
4794F: net/phonet/
4795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004797M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798L: linux-mtd@lists.infradead.org
4799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004800F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
Peter Osterlund249a6772005-09-27 21:45:30 -07004802PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004803M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004805F: drivers/block/pktcdvd.c
4806F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004807
Anil Ravindranath89a36812009-08-25 17:35:18 -07004808PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004809M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004810L: linux-scsi@vger.kernel.org
4811W: http://www.pmc-sierra.com/
4812S: Supported
4813F: drivers/scsi/pmcraid.*
4814
jack wangdbf9bfe2009-10-14 16:19:21 +08004815PMC SIERRA PM8001 DRIVER
4816M: jack_wang@usish.com
4817M: lindar_liu@usish.com
4818L: linux-scsi@vger.kernel.org
4819S: Supported
4820F: drivers/scsi/pm8001/
4821
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004823M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004825F: fs/timerfd.c
4826F: include/linux/timer*
4827F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828
Anton Vorontsov3be86142007-07-15 04:43:36 +04004829POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004830M: Anton Vorontsov <cbou@mail.ru>
4831M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004832T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004834F: include/linux/power_supply.h
4835F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004838M: Adam Belay <abelay@mit.edu>
4839M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004841F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
Vitaly Wool999445d2007-01-04 13:07:03 +01004843PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004844M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004845L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004846S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004847F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004848
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004850M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851L: linux-ppp@vger.kernel.org
4852S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004853F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
4855PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004856M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004858F: net/atm/pppoatm.c
4859F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860
4861PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004862M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004864F: drivers/net/pppoe.c
4865F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
James Chapmana6d23702007-06-27 15:53:17 -07004867PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004868M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004869S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07004870F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07004871F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004872
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004873PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004874M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004875W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4876L: linuxpps@ml.enneenne.com (subscribers-only)
4877S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004878F: Documentation/pps/
4879F: drivers/pps/
4880F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004881
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004883M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884L: kpreempt-tech@lists.sourceforge.net
4885W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4886S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004887F: Documentation/preempt-locking.txt
4888F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
4890PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004891M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004892L: linux-wireless@vger.kernel.org
John W. Linville9ef80802010-08-27 09:44:12 -04004893W: http://wireless.kernel.org/en/users/Drivers/p54
John W. Linville1d89cae2010-07-22 14:25:40 -04004894S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07004895F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004897PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004898M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004899L: linux-ide@vger.kernel.org
4900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004901F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004902
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004903PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004904M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004905L: netdev@vger.kernel.org
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004906L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004907S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004908F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004909
Geoff Levandf58a9d12006-11-23 00:46:51 +01004910PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004911M: Geoff Levand <geoff@infradead.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004912L: linuxppc-dev@lists.ozlabs.org
4913L: cbe-oss-dev@lists.ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004915F: arch/powerpc/boot/ps3*
4916F: arch/powerpc/include/asm/lv1call.h
4917F: arch/powerpc/include/asm/ps3*.h
4918F: arch/powerpc/platforms/ps3/
4919F: drivers/*/ps3*
4920F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004921F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004922F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004923F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004924
Jim Pariscffb4add2009-01-06 11:32:10 +00004925PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004926M: Jim Paris <jim@jtan.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10004927L: cbe-oss-dev@lists.ozlabs.org
Jim Pariscffb4add2009-01-06 11:32:10 +00004928S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07004929F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00004930
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004931PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004932M: Roland McGrath <roland@redhat.com>
4933M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004934S: Maintained
4935F: include/asm-generic/syscall.h
4936F: include/linux/ptrace.h
4937F: include/linux/regset.h
4938F: include/linux/tracehook.h
4939F: kernel/ptrace.c
4940
Michael Krufky83202042006-07-03 00:24:18 -07004941PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004942M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004943L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004944L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004945W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004946T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004947S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004948F: Documentation/video4linux/README.pvrusb2
4949F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004950
Eric Miao30ec2612008-06-12 15:21:41 -07004951PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004952M: Eric Miao <eric.y.miao@gmail.com>
4953M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004956F: arch/arm/mach-pxa/
4957F: drivers/pcmcia/pxa2xx*
4958F: drivers/spi/pxa2xx*
4959F: drivers/usb/gadget/pxa2*
4960F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004961F: sound/arm/pxa*
4962F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004964PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004965M: Eric Miao <eric.y.miao@gmail.com>
4966M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004968T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004969S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004970
Eric Miao5fa82eb2009-03-20 12:52:24 +08004971PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004972M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004973L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004974T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004975S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004976
Eric Miaoe8e6cb32010-01-05 15:28:26 +08004977MMP2 SUPPORT (aka ARMADA610)
4978M: Haojian Zhuang <haojian.zhuang@marvell.com>
4979M: Eric Miao <eric.y.miao@gmail.com>
4980L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4981T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4982S: Maintained
4983
Pierre Ossman272f1332007-05-14 21:25:26 +02004984PXA MMCI DRIVER
4985S: Orphan
4986
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004987PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004988M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004989L: rtc-linux@googlegroups.com
4990S: Maintained
4991
Jes Sorensen5e9772b2010-06-30 15:37:38 +02004992QLOGIC QLA1280 SCSI DRIVER
4993M: Michael Reed <mdr@sgi.com>
4994L: linux-scsi@vger.kernel.org
4995S: Maintained
4996F: drivers/scsi/qla1280.[ch]
4997
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004999M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08005000M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001L: linux-scsi@vger.kernel.org
5002S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005003F: Documentation/scsi/LICENSE.qla2xxx
5004F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005
Ravi Anand883c98f2010-04-28 11:45:49 +05305006QLOGIC QLA4XXX iSCSI DRIVER
5007M: Ravi Anand <ravi.anand@qlogic.com>
5008M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
5009M: iscsi-driver@qlogic.com
5010L: linux-scsi@vger.kernel.org
5011S: Supported
5012F: drivers/scsi/qla4xxx/
5013
Ron Mercer5a4faa82006-07-25 00:40:21 -07005014QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005015M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa82006-07-25 00:40:21 -07005016M: linux-driver@qlogic.com
5017L: netdev@vger.kernel.org
5018S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005019F: Documentation/networking/LICENSE.qla3xxx
5020F: drivers/net/qla3xxx.*
Ron Mercer5a4faa82006-07-25 00:40:21 -07005021
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005022QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
5023M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07005024M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00005025M: linux-driver@qlogic.com
5026L: netdev@vger.kernel.org
5027S: Supported
5028F: drivers/net/qlcnic/
5029
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005030QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005031M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07005032M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005033L: netdev@vger.kernel.org
5034S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005035F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04005036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005038M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039W: http://www.alarsen.net/linux/qnx4fs/
5040S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005041F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07005042F: include/linux/qnx4_fs.h
5043F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044
Yehuda Sadeh602adf42010-08-12 16:11:25 -07005045RADOS BLOCK DEVICE (RBD)
5046F: include/linux/qnxtypes.h
5047M: Yehuda Sadeh <yehuda@hq.newdream.net>
5048M: Sage Weil <sage@newdream.net>
5049M: ceph-devel@vger.kernel.org
5050S: Supported
5051F: drivers/block/rbd.c
5052F: drivers/block/rbd_types.h
5053
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005055M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005056L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005058F: drivers/video/aty/radeon*
5059F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060
5061RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005062M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005063L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005065F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Randy Dunlape7839f22008-10-12 16:11:45 -07005067RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005068P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01005069M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01005070M: Gertjan van Wingerde <gwingerde@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005071L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01005072L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005073W: http://rt2x00.serialmonkey.com/
5074S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07005075T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07005076F: drivers/net/wireless/rt2x00/
5077
Nick Piggin9db55792008-02-08 04:19:49 -08005078RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10005079M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08005080S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005081F: Documentation/blockdev/ramdisk.txt
5082F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08005083
Matt Mackall9e95ce22005-04-16 15:25:56 -07005084RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005085M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07005086S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005087F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07005088
Matt Porter394b7012005-11-07 01:00:15 -08005089RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005090M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08005091S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005092F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08005093
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005094RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005095L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04005096S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005097F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005098
5099RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005100M: Josh Triplett <josh@freedesktop.org>
5101M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005102S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005103T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Joe Perches679655d2009-04-07 20:44:32 -07005104F: Documentation/RCU/torture.txt
5105F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005106
Florian Fainellic1f766b2008-02-06 22:39:44 +01005107RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07005108M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01005109S: Maintained
5110
Florian Fainellidb17f392007-12-19 11:30:30 +01005111RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005112M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01005113L: netdev@vger.kernel.org
5114S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005115F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01005116
Andy Grovera09ed662009-02-24 15:30:41 +00005117RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07005118M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00005119L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00005120S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005121F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00005122
Josh Triplett595182b2006-10-04 02:17:21 -07005123READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07005124M: Dipankar Sarma <dipankar@in.ibm.com>
5125M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07005126W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07005127S: Supported
Joe Perches1fa7e542010-10-26 14:23:02 -07005128T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08005129F: Documentation/RCU/
5130F: include/linux/rcu*
5131F: include/linux/srcu*
5132F: kernel/rcu*
5133F: kernel/srcu*
5134X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07005135
Wolfram Sangb7bbbf32010-09-09 16:38:04 -07005136REAL TIME CLOCK DRIVER (LEGACY)
Joe Perches8b58be82009-07-29 15:04:30 -07005137M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138S: Maintained
Wolfram Sangb7bbbf32010-09-09 16:38:04 -07005139F: drivers/char/rtc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005141REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005142M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08005143L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005144Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005146F: Documentation/rtc.txt
5147F: drivers/rtc/
5148F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08005149
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07005151L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005153F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154
Ivo van Doorne08976452008-04-12 19:23:55 +02005155RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07005156M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02005157L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02005158S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08005159F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07005160F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02005161
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005162RICOH SMARTMEDIA/XD DRIVER
5163M: Maxim Levitsky <maximlevitsky@gmail.com>
5164S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07005165F: drivers/mtd/nand/r852.c
5166F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02005167
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005168RISCOM8 DRIVER
5169S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005170F: Documentation/serial/riscom8.txt
5171F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005172
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173ROCKETPORT DRIVER
5174P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175W: http://www.comtrol.com
5176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005177F: Documentation/serial/rocket.txt
5178F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
5180ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005181M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02005183W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005185F: include/linux/rose.h
5186F: include/net/rose.h
5187F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188
Larry Finger59840482008-11-12 17:13:09 -06005189RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005190M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04005191L: linux-wireless@vger.kernel.org
5192W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005193T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04005194S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005195F: drivers/net/wireless/rtl818x/rtl8180/
Michael Wu605bebe2007-05-14 01:41:02 -04005196
Larry Finger59840482008-11-12 17:13:09 -06005197RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005198M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
5199M: Hin-Tak Leung <htl10@users.sourceforge.net>
5200M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005201L: linux-wireless@vger.kernel.org
5202W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07005203T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07005204S: Maintained
John W. Linville3cfeb0c2010-12-20 15:16:53 -05005205F: drivers/net/wireless/rtl818x/rtl8187/
Larry Finger59840482008-11-12 17:13:09 -06005206
Larry Finger3cf0c8a2010-12-16 09:13:21 -06005207RTL8192CE WIRELESS DRIVER
5208M: Larry Finger <Larry.Finger@lwfinger.net>
5209M: Chaoming Li <chaoming_li@realsil.com.cn>
5210L: linux-wireless@vger.kernel.org
5211W: http://linuxwireless.org/
5212T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
5213S: Maintained
5214F: drivers/net/wireless/rtlwifi/
Larry Fingerf0b3e4b2010-12-17 16:04:11 -06005215F: drivers/net/wireless/rtlwifi/rtl8192ce/
Martin Schwidefsky83014252006-09-20 15:58:58 +02005216
5217S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005218M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01005219L: linux-fbdev@vger.kernel.org
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005221F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08005222
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223S390
Joe Perches8b58be82009-07-29 15:04:30 -07005224M: Martin Schwidefsky <schwidefsky@de.ibm.com>
5225M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005227L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005228W: http://www.ibm.com/developerworks/linux/linux390/
5229S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005230F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01005231F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02005232F: fs/partitions/ibm.c
5233F: Documentation/s390/
5234F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08005235
5236S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005237M: Ursula Braun <ursula.braun@de.ibm.com>
5238M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005239M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005240L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005241W: http://www.ibm.com/developerworks/linux/linux390/
5242S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005243F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08005244
Felix Beckfeed9b62009-03-26 15:24:23 +01005245S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005246M: Felix Beck <felix.beck@de.ibm.com>
5247M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01005248M: linux390@de.ibm.com
5249L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01005250W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01005251S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005252F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01005253
Heiko Carstens5238da42006-02-11 17:56:01 -08005254S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005255M: Christof Schmitt <christof.schmitt@de.ibm.com>
Christof Schmitt07bbd0f2010-04-01 13:04:07 +02005256M: Swen Schillig <swen@vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08005257M: linux390@de.ibm.com
Martin Schwidefskyd58140cc2007-02-05 21:17:27 +01005258L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08005259W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005261F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262
Ursula Braundd96df22007-09-19 13:09:02 +02005263S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005264M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02005265M: linux390@de.ibm.com
5266L: linux-s390@vger.kernel.org
5267W: http://www.ibm.com/developerworks/linux/linux390/
5268S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005269F: drivers/s390/net/*iucv*
5270F: include/net/iucv/
5271F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02005272
Ben Dooks4dde7f72008-06-30 22:40:38 +01005273S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07005274M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07005275L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01005276S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005277F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01005278
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005280M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005281L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005282T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283W: http://www.mihu.de/linux/saa7146
5284S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005285F: drivers/media/common/saa7146*
5286F: drivers/media/video/*7146*
5287F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
Mark Brown4a109cc2010-09-24 10:50:46 +01005289SAMSUNG AUDIO (ASoC) DRIVERS
5290M: Jassi Brar <jassi.brar@samsung.com>
5291L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5292S: Supported
5293F: sound/soc/s3c24xx
5294
Thomas Gleixner88606e82010-12-14 21:37:13 +01005295TIMEKEEPING, NTP
5296M: John Stultz <johnstul@us.ibm.com>
5297M: Thomas Gleixner <tglx@linutronix.de>
5298S: Supported
5299F: include/linux/clocksource.h
5300F: include/linux/time.h
5301F: include/linux/timex.h
5302F: include/linux/timekeeping.h
5303F: kernel/time/clocksource.c
5304F: kernel/time/time*.c
5305F: kernel/time/ntp.c
5306
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005307TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03005308M: Huang Shijie <shijie8@gmail.com>
5309M: Kang Yong <kangyong@telegent.com>
5310M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03005311S: Supported
5312F: drivers/media/video/tlg2300
5313
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005315M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005317F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
5319SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07005320M: Ingo Molnar <mingo@elte.hu>
5321M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005323F: kernel/sched*
5324F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325
Chen Liqin6bcf6732009-06-13 15:24:33 +08005326SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07005327M: Chen Liqin <liqin.chen@sunplusct.com>
5328M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08005329W: http://www.sunplusct.com
5330S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07005331F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08005332
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005334M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335L: linux-scsi@vger.kernel.org
5336W: http://www.kernel.dk
5337S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005338F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339
Roland Dreierfb50a832010-10-07 09:54:53 -07005340SCSI RDMA PROTOCOL (SRP) INITIATOR
5341M: David Dillow <dillowda@ornl.gov>
5342L: linux-rdma@vger.kernel.org
5343S: Supported
5344W: http://www.openfabrics.org
5345Q: http://patchwork.kernel.org/project/linux-rdma/list/
5346T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
5347F: drivers/infiniband/ulp/srp/
5348F: include/scsi/srp.h
5349
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352L: linux-scsi@vger.kernel.org
5353W: http://www.torque.net/sg
5354S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005355F: drivers/scsi/sg.c
5356F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00005359M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005361T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5362T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5363T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005365F: drivers/scsi/
5366F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367
5368SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005369M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370L: linux-scsi@vger.kernel.org
5371S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005372F: Documentation/scsi/st.txt
5373F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
5375SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005376M: Vlad Yasevich <vladislav.yasevich@hp.com>
5377M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005378L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005379W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005380S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005381F: Documentation/networking/sctp.txt
5382F: include/linux/sctp.h
5383F: include/net/sctp/
5384F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005387M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005388S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005389F: Documentation/i2c/busses/scx200_acb
5390F: arch/x86/kernel/scx200_32.c
5391F: drivers/watchdog/scx200_wdt.c
5392F: drivers/i2c/busses/scx200*
5393F: drivers/mtd/maps/scx200_docflash.c
5394F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005395
5396SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005397M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005399F: drivers/char/scx200_gpio.c
5400F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005401
5402SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005403M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005404S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005405F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Sascha Sommer6a369132008-07-15 14:21:29 +02005407SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005408M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005409L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5410S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005411F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005412
Randy Dunlape7839f22008-10-12 16:11:45 -07005413SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Chris Ball245feaa2010-09-10 12:05:24 -04005414M: Chris Ball <cjb@laptop.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005415L: linux-mmc@vger.kernel.org
Chris Ball245feaa2010-09-10 12:05:24 -04005416T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5417S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005418F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005419
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005420SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005421M: Anton Vorontsov <avorontsov@ru.mvista.com>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005422L: linuxppc-dev@lists.ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005423L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005425F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426
Ben Dooks0d1bb412009-06-14 13:52:37 +01005427SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005428M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005429L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005430S: Maintained
5431F: drivers/mmc/host/sdhci-s3c.c
5432
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005433SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5434M: Viresh Kumar <viresh.kumar@st.com>
5435L: linux-mmc@vger.kernel.org
5436S: Maintained
5437F: drivers/mmc/host/sdhci-spear.c
5438
James Morris8711cca2008-12-04 03:19:45 +11005439SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005440M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005441L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005442T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005443W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005444S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005445F: security/
James Morris8711cca2008-12-04 03:19:45 +11005446
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005448M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449S: Supported
5450
5451SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005452M: Stephen Smalley <sds@tycho.nsa.gov>
5453M: James Morris <jmorris@namei.org>
5454M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005455L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005456W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005457T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005459F: include/linux/selinux*
5460F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
John Johansenc1c124e2010-07-29 14:48:09 -07005462APPARMOR SECURITY MODULE
5463M: John Johansen <john.johansen@canonical.com>
5464L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5465W: apparmor.wiki.kernel.org
5466T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5467S: Supported
5468F: security/apparmor/
5469
Jiri Slabycef2cf02007-05-08 00:31:45 -07005470SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005471M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005472S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005473F: drivers/misc/phantom.c
5474F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005475
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005476SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005477M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005479T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005481F: drivers/ata/
5482F: include/linux/ata.h
5483F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305485SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Joe Perches3387f652009-11-11 14:26:11 -08005486M: Jayamohan Kallickal <jayamohank@serverengines.com>
5487L: linux-scsi@vger.kernel.org
5488W: http://www.serverengines.com
5489S: Supported
5490F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305491
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005492SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Sathya Perla <sathyap@serverengines.com>
5494M: Subbu Seetharaman <subbus@serverengines.com>
Ajit Khapardef66d7442010-02-19 14:00:03 +00005495M: Sarveshwar Bandi <sarveshwarb@serverengines.com>
5496M: Ajit Khaparde <ajitk@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005497L: netdev@vger.kernel.org
5498W: http://www.serverengines.com
5499S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005500F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005501
Ben Hutchings8ceee662008-04-27 12:55:59 +01005502SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005503M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5504M: Steve Hodgson <shodgson@solarflare.com>
5505M: Ben Hutchings <bhutchings@solarflare.com>
5506L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005507S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005508F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005509
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005510SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005511M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005512S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005513F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005514
5515SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005516M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005517L: linux-ia64@vger.kernel.org
5518S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005519F: Documentation/ia64/serial.txt
5520F: drivers/serial/ioc?_serial.c
5521F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005522
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005524M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525L: linux-visws-devel@lists.sf.net
5526W: http://linux-visws.sf.net
5527S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005528F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Jack Steiner75312612008-08-15 00:40:42 -07005530SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005531M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005532S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005533F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005534
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005535SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07005536M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005537W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07005538L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005540F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5541F: arch/arm/mach-lh7a40x/
5542F: drivers/serial/serial_lh7a40x.c
5543F: drivers/usb/gadget/lh7a40*
5544F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005545
Len Brown6349d992009-08-14 15:07:14 -04005546SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005547M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005548L: sfi-devel@simplefirmware.org
5549W: http://simplefirmware.org/
5550T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005551S: Supported
Len Brown6349d992009-08-14 15:07:14 -04005552F: arch/x86/kernel/*sfi*
5553F: drivers/sfi/
5554F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005555
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556SIMTEC EB110ATX (Chalice CATS)
5557P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005558M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559W: http://www.simtec.co.uk/products/EB110ATX/
5560S: Supported
5561
5562SIMTEC EB2410ITX (BAST)
5563P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005564M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565W: http://www.simtec.co.uk/products/EB2410ITX/
5566S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005567F: arch/arm/mach-s3c2410/
5568F: drivers/*/*s3c2410*
5569F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005571TI DAVINCI MACHINE SUPPORT
Sekhar Nori4b5dc962010-07-12 18:51:05 +05305572M: Kevin Hilman <khilman@deeprootsystems.com>
5573L: davinci-linux-open-source@linux.davincidsp.com (subscribers-only)
Joe Perches8a6e2532010-03-05 13:43:11 -08005574Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005575S: Supported
5576F: arch/arm/mach-davinci
5577
Francois Romieu92aab3c2005-07-30 13:11:18 +02005578SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005580L: netdev@vger.kernel.org
5581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005582F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005583
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005585M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005586W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005587L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005589F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005591SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005592M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005593L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005594S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005595F: Documentation/i2c/busses/i2c-sis96x
5596F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005597
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005599M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005601S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005602F: Documentation/fb/sisfb.txt
5603F: drivers/video/sis/
5604F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005607M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608W: http://www.winischhofer.at/linuxsisusbvga.shtml
5609S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005610F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005611
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005612SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005613M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005614L: netdev@vger.kernel.org
5615S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005616F: drivers/net/skge.*
5617F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005618
Christoph Lameter415ad262007-07-26 10:40:56 -07005619SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005620M: Christoph Lameter <cl@linux-foundation.org>
5621M: Pekka Enberg <penberg@cs.helsinki.fi>
5622M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad262007-07-26 10:40:56 -07005623L: linux-mm@kvack.org
5624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005625F: include/linux/sl?b*.h
5626F: mm/sl?b.c
Christoph Lameter415ad262007-07-26 10:40:56 -07005627
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005629M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005630S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005631F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005633SMM665 HARDWARE MONITOR DRIVER
5634M: Guenter Roeck <linux@roeck-us.net>
5635L: lm-sensors@lm-sensors.org
5636S: Maintained
5637F: Documentation/hwmon/smm665
5638F: drivers/hwmon/smm665.c
5639
Steve Glendinning9df73052010-08-14 21:08:54 +02005640SMSC EMC2103 HARDWARE MONITOR DRIVER
5641M: Steve Glendinning <steve.glendinning@smsc.com>
5642L: lm-sensors@lm-sensors.org
5643S: Supported
5644F: Documentation/hwmon/emc2103
5645F: drivers/hwmon/emc2103.c
5646
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005647SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005648M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005649L: lm-sensors@lm-sensors.org
5650S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005651F: Documentation/hwmon/smsc47b397
5652F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005653
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005654SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005655M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005656L: netdev@vger.kernel.org
5657S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005658F: include/linux/smsc911x.h
5659F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005660
Steve Glendinning2cb37722008-12-11 20:54:30 -08005661SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005662M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005663L: netdev@vger.kernel.org
5664S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005665F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005666
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005667SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005668M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005669L: linux-altix@sgi.com
5670L: linux-ia64@vger.kernel.org
5671W: http://www.sgi.com/altix
5672S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005673F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005674
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005675SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005676M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005677L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005678T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005679S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005680F: include/media/v4l2*
5681F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005682
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005683SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005684M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005685S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005686F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005687
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005689M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005691S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005692F: drivers/md/
5693F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005696M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005697L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005699F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Michael Buesch61e115a2007-09-18 15:12:50 -04005701SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005702M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005703L: netdev@vger.kernel.org
5704S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005705F: drivers/ssb/
5706F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005707
Linus Torvalds1da177e2005-04-16 15:20:36 -07005708SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005709M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005710L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005711W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005713F: Documentation/laptops/sony-laptop.txt
5714F: drivers/char/sonypi.c
5715F: drivers/platform/x86/sony-laptop.c
5716F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717
Alex Dubovbaf85322008-02-09 10:20:54 -08005718SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005719M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005720W: http://tifmxx.berlios.de/
5721S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005722F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005723
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005725M: Jaroslav Kysela <perex@perex.cz>
5726M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005727L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005728W: http://www.alsa-project.org/
5729T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5730T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005732F: Documentation/sound/
5733F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005734F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735
Mark Brownbd903bd2008-11-19 19:16:05 +00005736SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07005737M: Liam Girdwood <lrg@slimlogic.co.uk>
5738M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005739T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005740L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005741W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005742S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005743F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005744F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005745
Sam Ravnborg473321f2009-01-04 15:47:49 -08005746SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005747M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005749Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07005750T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5751T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005753F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07005754F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755
David S. Miller6404fcc2010-03-16 01:00:17 -07005756SPARC SERIAL DRIVERS
5757M: "David S. Miller" <davem@davemloft.net>
5758L: sparclinux@vger.kernel.org
5759T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5760T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
5761S: Maintained
5762F: drivers/serial/suncore.c
5763F: drivers/serial/suncore.h
5764F: drivers/serial/sunhv.c
5765F: drivers/serial/sunsab.c
5766F: drivers/serial/sunsab.h
5767F: drivers/serial/sunsu.c
5768F: drivers/serial/sunzilog.c
5769F: drivers/serial/sunzilog.h
5770
viresh kumarfc0c1952010-04-01 12:31:21 +01005771SPEAR PLATFORM SUPPORT
5772M: Viresh Kumar <viresh.kumar@st.com>
5773W: http://www.st.com/spear
5774S: Maintained
5775F: arch/arm/plat-spear/
5776
5777SPEAR3XX MACHINE SUPPORT
5778M: Viresh Kumar <viresh.kumar@st.com>
5779W: http://www.st.com/spear
5780S: Maintained
5781F: arch/arm/mach-spear3xx/
5782
5783SPEAR6XX MACHINE SUPPORT
5784M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
5785W: http://www.st.com/spear
5786S: Maintained
5787F: arch/arm/mach-spear6xx/
5788
5789SPEAR CLOCK FRAMEWORK SUPPORT
5790M: Viresh Kumar <viresh.kumar@st.com>
5791W: http://www.st.com/spear
5792S: Maintained
5793F: arch/arm/mach-spear*/clock.c
5794F: arch/arm/mach-spear*/include/mach/clkdev.h
5795F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07005796F: arch/arm/plat-spear/include/plat/clkdev.h
5797F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01005798
5799SPEAR PAD MULTIPLEXING SUPPORT
5800M: Viresh Kumar <viresh.kumar@st.com>
5801W: http://www.st.com/spear
5802S: Maintained
5803F: arch/arm/plat-spear/include/plat/padmux.h
5804F: arch/arm/plat-spear/padmux.c
5805F: arch/arm/mach-spear*/spear*xx.c
5806F: arch/arm/mach-spear*/include/mach/generic.h
5807F: arch/arm/mach-spear3xx/spear3*0.c
5808F: arch/arm/mach-spear3xx/spear3*0_evb.c
5809F: arch/arm/mach-spear6xx/spear600.c
5810F: arch/arm/mach-spear6xx/spear600_evb.c
5811
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005813M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005815F: Documentation/serial/specialix.txt
5816F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005818SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005819M: David Brownell <dbrownell@users.sourceforge.net>
Grant Likelyd33c8612009-11-25 07:32:25 -07005820M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005821L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08005822Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06005823T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005825F: Documentation/spi/
5826F: drivers/spi/
5827F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005828
Jim Lewis2752e402006-09-29 02:01:19 -07005829SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07005830M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
5831M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07005832L: netdev@vger.kernel.org
5833S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005834F: Documentation/networking/spider_net.txt
5835F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005836
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005837SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005838M: Jeremy Kerr <jk@ozlabs.org>
Stephen Rothwella4724ed2010-08-20 19:52:45 +10005839L: linuxppc-dev@lists.ozlabs.org
5840L: cbe-oss-dev@lists.ozlabs.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005841W: http://www.ibm.com/developerworks/power/cell/
5842S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005843F: Documentation/filesystems/spufs.txt
5844F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005845
Phillip Lougherfc555842009-01-05 08:46:29 +00005846SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005847M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00005848L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5849W: http://squashfs.org.uk
5850S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005851F: Documentation/filesystems/squashfs.txt
5852F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005853
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07005855M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005857F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Linus Torvalds26e9a392008-10-17 09:50:12 -07005859STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07005860M: Greg Kroah-Hartman <greg@kroah.com>
5861M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005862L: stable@kernel.org
5863S: Maintained
5864
Linus Torvalds26e9a392008-10-17 09:50:12 -07005865STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005866M: Greg Kroah-Hartman <gregkh@suse.de>
Greg Kroah-Hartman97b55192010-11-09 09:13:39 -08005867T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6.git
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005868L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005869S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005870F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005871
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005873M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07005874S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005875F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005877SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07005878M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005879W: http://sammy.net/sun3/
5880S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005881F: arch/m68k/kernel/*sun3*
5882F: arch/m68k/sun3*/
5883F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005884
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005885SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07005886M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005887L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005889Q: http://patchwork.kernel.org/project/linux-sh/list/
Paul Mundtbea27822010-11-10 18:07:43 +09005890T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest
Paul Mundt5c806b22008-07-29 06:34:01 +09005891S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005892F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005893F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005894F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005896SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Len Brown <len.brown@intel.com>
5898M: Pavel Machek <pavel@ucw.cz>
5899M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005900L: linux-pm@lists.linux-foundation.org
5901S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005902F: Documentation/power/
5903F: arch/x86/kernel/acpi/
5904F: drivers/base/power/
5905F: kernel/power/
5906F: include/linux/suspend.h
5907F: include/linux/freezer.h
5908F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
5910SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005911M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912L: linux-video@atrey.karlin.mff.cuni.cz
5913S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005914F: Documentation/svga.txt
5915F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005916
5917SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005918M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005920F: Documentation/filesystems/sysv-fs.txt
5921F: fs/sysv/
5922F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923
Alan Cox4e688522008-04-30 00:52:11 -07005924TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005925M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005926S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005927F: Documentation/accounting/taskstats*
5928F: include/linux/taskstats*
5929F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005930
Stephen Hemminger781b4562006-07-10 20:25:29 -07005931TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005932M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b4562006-07-10 20:25:29 -07005933L: netdev@vger.kernel.org
5934S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005935F: include/linux/pkt_cls.h
5936F: include/net/pkt_cls.h
5937F: net/sched/
Stephen Hemminger781b4562006-07-10 20:25:29 -07005938
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005939TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005940M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5941M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005942W: http://tcp-lp-mod.sourceforge.net/
5943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005944F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005945
Erik Gilling84b94142010-06-09 15:35:53 -07005946TEGRA SUPPORT
5947M: Colin Cross <ccross@android.com>
5948M: Erik Gilling <konkers@android.com>
5949M: Olof Johansson <olof@lixom.net>
5950L: linux-tegra@vger.kernel.org
5951T: git git://android.git.kernel.org/kernel/tegra.git
5952S: Supported
5953F: arch/arm/mach-tegra
5954
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005955TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005956M: Alexander Indenbaum <baum@tehutinetworks.net>
5957M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005958L: netdev@vger.kernel.org
5959S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005960F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005961
Alan Cox4e688522008-04-30 00:52:11 -07005962Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005963M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005964S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005965F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005966
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005967TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005968M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005969S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005970F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005971
5972THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005973M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005974L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05005975L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005976W: http://ibm-acpi.sourceforge.net
5977W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005978T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005979S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005980F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005981
Alex Dubov4020f2d2006-10-04 02:15:37 -07005982TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005983M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005984S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005985F: drivers/misc/tifm*
5986F: drivers/mmc/host/tifm_sd.c
5987F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005988
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005989TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005990M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005991L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5992S: Maintained
5993F: sound/soc/codecs/twl4030*
5994
Per Lidene86eaa32006-01-12 16:45:18 +01005995TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005996M: Jon Maloy <jon.maloy@ericsson.com>
5997M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005998L: tipc-discussion@lists.sourceforge.net
5999W: http://tipc.sourceforge.net/
6000W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07006001T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01006002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: include/linux/tipc*.h
6004F: include/net/tipc/
6005F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01006006
Chris Metcalf867e3592010-05-28 23:09:12 -04006007TILE ARCHITECTURE
6008M: Chris Metcalf <cmetcalf@tilera.com>
6009W: http://www.tilera.com/scm/
6010S: Supported
6011F: arch/tile/
Chris Metcalf239b0b42010-11-02 13:15:53 -04006012F: drivers/char/hvc_tile.c
Chris Metcalfe5a06932010-11-01 17:00:37 -04006013F: drivers/net/tile/
Chris Metcalf867e3592010-05-28 23:09:12 -04006014
Linus Torvalds1da177e2005-04-16 15:20:36 -07006015TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006016M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08006017L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018W: http://sourceforge.net/projects/tlan/
6019S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006020F: Documentation/networking/tlan.txt
6021F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006023TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07006024M: Kentaro Takeda <takedakn@nttdata.co.jp>
6025M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Tetsuo Handad03a5d82010-12-19 12:54:22 +09006026L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
6027L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006028L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
6029L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
6030W: http://tomoyo.sourceforge.jp/
Tetsuo Handae6f6a4c2010-07-27 17:17:06 +09006031T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006032S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006033F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09006034
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006035TOPSTAR LAPTOP EXTRAS DRIVER
6036M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05006037L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03006038S: Maintained
6039F: drivers/platform/x86/topstar-laptop.c
6040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05006042L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02006043S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006044F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045
6046TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006047M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048L: tlinux-users@tce.toshiba-dme.co.jp
6049W: http://www.buzzard.org.uk/toshiba/
6050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006051F: drivers/char/toshiba.c
6052F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053
Pierre Ossmand719f902009-03-24 21:06:09 +01006054TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006055M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01006056S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07006057F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01006058
Hugh Dickins98f32602009-05-21 20:33:58 +01006059TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07006060M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01006061L: linux-mm@kvack.org
6062S: Maintained
6063F: include/linux/shmem_fs.h
6064F: mm/shmem.c
6065
Alan Cox4e688522008-04-30 00:52:11 -07006066TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006067M: Debora Velarde <debora@linux.vnet.ibm.com>
6068M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07006069W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07006070M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08006071W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07006072L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07006073S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006074F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07006075
Joe Perchesd6f005a2009-10-26 16:49:40 -07006076TRACING
6077M: Steven Rostedt <rostedt@goodmis.org>
6078M: Frederic Weisbecker <fweisbec@gmail.com>
6079M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02006080T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core
Joe Perchesd6f005a2009-10-26 16:49:40 -07006081S: Maintained
6082F: Documentation/trace/ftrace.txt
6083F: arch/*/*/*/ftrace.h
6084F: arch/*/kernel/ftrace.c
6085F: include/*/ftrace.h
6086F: include/linux/trace*.h
6087F: include/trace/
6088F: kernel/trace/
6089
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07006092T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093S: Maintained
6094
Alan Cox4e688522008-04-30 00:52:11 -07006095TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07006096M: Greg Kroah-Hartman <gregkh@suse.de>
6097S: Maintained
Greg Kroah-Hartman3da39bc2010-11-09 09:15:40 -08006098T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git
Alan Coxe3288772009-07-07 16:39:54 +01006099F: drivers/char/tty_*
6100F: drivers/serial/serial_core.c
6101F: include/linux/serial_core.h
6102F: include/linux/serial.h
6103F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07006104
Grant Grundler740db6d2008-02-17 11:53:49 -07006105TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006106M: Grant Grundler <grundler@parisc-linux.org>
Grant Grundler740db6d2008-02-17 11:53:49 -07006107L: netdev@vger.kernel.org
6108S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006109F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006110
6111TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07006112M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113L: vtun@office.satix.net
6114W: http://vtun.sourceforge.net/tun
6115S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006116F: Documentation/networking/tuntap.txt
6117F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006119TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006120M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006121S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006122F: drivers/tc/
6123F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08006124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006126M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127L: linux-scsi@vger.kernel.org
6128S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006129F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006131UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006132M: Artem Bityutskiy <dedekind1@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07006133M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006134L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006135T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006136W: http://www.linux-mtd.infradead.org/doc/ubifs.html
6137S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006138F: Documentation/filesystems/ubifs.txt
6139F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006140
Alan Coxcc2020e2008-05-19 14:21:51 +01006141UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07006142M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01006143W: http://www.uclinux.org/
6144L: uclinux-dev@uclinux.org (subscribers-only)
6145S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006146F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01006147
Robert P. J. Day14fadca2009-04-21 12:24:47 -07006148UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07006149M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01006150W: http://uclinux-h8.sourceforge.jp/
6151S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07006152F: arch/h8300/
6153F: drivers/ide/ide-h8300.c
6154F: drivers/net/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01006155
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006157M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158W: http://linux-udf.sourceforge.net
6159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006160F: Documentation/filesystems/udf.txt
6161F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006162
Alan Coxcc2020e2008-05-19 14:21:51 +01006163UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006164M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01006165S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006166F: Documentation/filesystems/ufs.txt
6167F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01006168
David Vrabel18332a82008-09-17 16:34:44 +01006169ULTRA-WIDEBAND (UWB) SUBSYSTEM:
David Vrabel18332a82008-09-17 16:34:44 +01006170L: linux-usb@vger.kernel.org
David Vrabel10c6c9c2010-10-25 14:05:36 +01006171S: Orphan
David Vrabel355ffe62009-12-22 13:13:28 +00006172F: drivers/uwb/
Joe Perches679655d2009-04-07 20:44:32 -07006173F: include/linux/uwb.h
6174F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01006175
Tony Finchd8379ab2009-11-27 15:50:30 +00006176UNIFDEF
6177M: Tony Finch <dot@dotat.at>
6178W: http://dotat.at/prog/unifdef
6179S: Maintained
6180F: scripts/unifdef.c
6181
Linus Torvalds1da177e2005-04-16 15:20:36 -07006182UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006183M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184W: http://www.kernel.dk
6185S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006186F: Documentation/cdrom/
6187F: drivers/cdrom/cdrom.c
6188F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006190UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03006191M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006192W: http://www.linux-mtd.infradead.org/
6193L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03006194T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006195S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07006196F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07006197F: include/linux/mtd/ubi.h
6198F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006199
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006201M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07006202L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006204F: Documentation/usb/acm.txt
6205F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206
Matthew Wilcox115bb1f2010-10-07 13:05:23 +02006207USB ATTACHED SCSI
6208M: Matthew Wilcox <willy@linux.intel.com>
6209M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
6210L: linux-usb@vger.kernel.org
6211L: linux-scsi@vger.kernel.org
6212S: Supported
6213F: drivers/usb/storage/uas.c
6214
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07006216M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006217L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006219F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08006222M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006223L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006225F: drivers/net/usb/cdc_*.c
6226F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006227
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006228USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006229M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006230L: linux-usb@vger.kernel.org
6231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006232F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02006233
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006234USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006235M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006236L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006237W: http://www.linux-usb.org/usbnet
6238S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006239F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01006240
Alan Coxcc2020e2008-05-19 14:21:51 +01006241USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006242M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01006243L: rio500-users@lists.sourceforge.net
6244W: http://rio500.sourceforge.net
6245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006246F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01006247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006249M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006250L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006251S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006252F: Documentation/usb/ehci.txt
6253F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254
Luca Risolia7ce08c92006-01-11 02:06:59 +00006255USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006256M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006257L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006258L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006259T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00006260W: http://www.linux-projects.org
6261S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006262F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00006263
David Brownell69ae9e32006-11-14 02:03:31 -08006264USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006265M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006266L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006267W: http://www.linux-usb.org/gadget
6268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006269F: drivers/usb/gadget/
6270F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08006271
Jiri Kosina2dea64b2007-07-11 12:12:11 +02006272USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07006273M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006274L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006275T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006277F: Documentation/usb/hiddev.txt
6278F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279
Olav Kongas959eea22005-11-03 17:38:14 +02006280USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006281M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006282L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02006283S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006284F: drivers/usb/host/isp116x*
6285F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02006286
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006288M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006289L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006291F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292
6293USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006294M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006295L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08006296L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297S: Maintained
6298W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07006299F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
6301USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006302M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006303L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08006304S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006305F: Documentation/usb/ohci.txt
6306F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Matthias Urlichsba460e42005-07-14 00:33:47 -07006308USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006309M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006310L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07006311S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006312F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07006313
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006315M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006316L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006317L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006318W: http://pegasus2.sourceforge.net/
6319S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006320F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006322USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07006323M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006324L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07006325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006326F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327
6328USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006329M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006330L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02006331L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006332W: http://pegasus2.sourceforge.net/
6333S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006334F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335
6336USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006337M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006338L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339W: http://www.chello.nl/~j.vreeken/se401/
6340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006341F: Documentation/video4linux/se401.txt
6342F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343
Alan Cox4e688522008-04-30 00:52:11 -07006344USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006345M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006346L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006348F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006349
6350USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006351M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006352L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006353S: Maintained
6354W: http://geocities.com/i0xox0i
6355W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006356F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006357
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006359M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6361S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006362F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363
6364USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006365M: Peter Berger <pberger@brimson.com>
6366M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006367L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006368S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006369F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
6371USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006372M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006373L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006375F: Documentation/usb/usb-serial.txt
6376F: drivers/usb/serial/generic.c
6377F: drivers/usb/serial/usb-serial.c
6378F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379
Linus Torvalds1da177e2005-04-16 15:20:36 -07006380USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006381M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006382L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006383S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006384F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
6386USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006387M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006388L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006389W: http://www.kroah.com/linux/
6390S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006391F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392
6393USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006394M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006395L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396W: http://www.connecttech.com
6397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006398F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006400USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006401M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006402L: netdev@vger.kernel.org
6403S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006404F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006405
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006406USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006407M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006408L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006409L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006410T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411W: http://www.linux-projects.org
6412S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006413F: Documentation/video4linux/sn9c102.txt
6414F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415
6416USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006417M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006418L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419W: http://www.linux-usb.org
Greg Kroah-Hartmanc9a7ec82010-11-09 09:11:49 -08006420T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006422F: Documentation/usb/
6423F: drivers/net/usb/
6424F: drivers/usb/
6425F: include/linux/usb.h
6426F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
6428USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006429M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006430L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006432F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
David Brownell69ae9e32006-11-14 02:03:31 -08006434USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006435M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006436L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006437W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006439F: drivers/net/usb/usbnet.c
6440F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006442USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07006443M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03006444L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006445L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006446T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006447W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006448S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006449F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006452M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006453L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006454L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006455T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456W: http://www.linux-projects.org
6457S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006458F: Documentation/video4linux/w9968cf.txt
6459F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006461USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006462M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006463L: linux-wireless@vger.kernel.org
6464S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006465F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006466
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006467USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006468M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006469L: linux-usb@vger.kernel.org
6470S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006471F: drivers/usb/host/xhci*
6472F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04006475L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04006477S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006478F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006480USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006482L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006483L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006484T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006485W: http://royale.zerezo.com/zr364xx/
6486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006487F: Documentation/video4linux/zr364xx.txt
6488F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006489
Randy Dunlape7839f22008-10-12 16:11:45 -07006490USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006491M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492L: user-mode-linux-devel@lists.sourceforge.net
6493L: user-mode-linux-user@lists.sourceforge.net
6494W: http://user-mode-linux.sourceforge.net
6495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006496F: Documentation/uml/
6497F: arch/um/
6498F: fs/hostfs/
6499F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006500
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006501USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07006502M: "Hans J. Koch" <hjk@linutronix.de>
6503M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006504S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006505F: Documentation/DocBook/uio-howto.tmpl
6506F: drivers/uio/
6507F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006508
Karel Zakf899b0a2008-05-23 13:04:21 -07006509UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006510M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006511L: util-linux-ng@vger.kernel.org
6512W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006513T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006514S: Maintained
6515
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006516UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006518L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006519W: http://dev.gentoo.org/~spock/projects/uvesafb/
6520S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006521F: Documentation/fb/uvesafb.txt
6522F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006523
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006524VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006525M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006527F: Documentation/filesystems/vfat.txt
6528F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529
Amit Shah9a824462010-03-23 18:23:09 +05306530VIRTIO CONSOLE DRIVER
6531M: Amit Shah <amit.shah@redhat.com>
6532L: virtualization@lists.linux-foundation.org
6533S: Maintained
6534F: drivers/char/virtio_console.c
6535F: include/linux/virtio_console.h
6536
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00006537VIRTIO HOST (VHOST)
6538M: "Michael S. Tsirkin" <mst@redhat.com>
6539L: kvm@vger.kernel.org
6540L: virtualization@lists.osdl.org
6541L: netdev@vger.kernel.org
6542S: Maintained
6543F: drivers/vhost/
6544F: include/linux/vhost.h
6545
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006547M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006549F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
Jean Delvare32c0a522005-09-22 21:47:58 +02006551VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006552M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006553L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006555F: Documentation/i2c/busses/i2c-viapro
6556F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006557
Harald Weltef0bf7f62009-06-17 20:22:39 +02006558VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006559M: Joseph Chan <JosephChan@via.com.tw>
6560M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02006561S: Maintained
6562F: drivers/mmc/host/via-sdmmc.c
6563
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006564VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006565M: Joseph Chan <JosephChan@via.com.tw>
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006566M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006567L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006568S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006569F: include/linux/via-core.h
6570F: include/linux/via-gpio.h
6571F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07006572F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006573
Francois Romieu01f20732007-01-26 00:57:17 -08006574VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006575M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08006576L: netdev@vger.kernel.org
6577S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006578F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579
Patrick McHardybe7f8272007-10-23 20:26:36 -07006580VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07006581M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07006582L: netdev@vger.kernel.org
6583S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006584F: drivers/net/macvlan.c
6585F: include/linux/if_*vlan.h
6586F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006587
Florian Fainelli55e331c2009-06-16 15:33:53 -07006588VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006589M: Florian Fainelli <florian@openwrt.org>
Lennert Buytenhek8578d7a2011-01-12 16:59:51 -08006590L: openwrt-devel@lists.openwrt.org (subscribers-only)
Florian Fainelli55e331c2009-06-16 15:33:53 -07006591S: Maintained
6592F: drivers/vlynq/vlynq.c
6593F: include/linux/vlynq.h
6594
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07006595VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08006596M: Shreyas Bhatewara <sbhatewara@vmware.com>
6597M: "VMware, Inc." <pv-drivers@vmware.com>
6598L: netdev@vger.kernel.org
6599S: Maintained
6600F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890f2009-10-13 00:15:51 -07006601
Alok Kataria851b1642009-10-13 14:51:05 -07006602VMware PVSCSI driver
6603M: Alok Kataria <akataria@vmware.com>
6604M: VMware PV-Drivers <pv-drivers@vmware.com>
6605L: linux-scsi@vger.kernel.org
6606S: Maintained
6607F: drivers/scsi/vmw_pvscsi.c
6608F: drivers/scsi/vmw_pvscsi.h
6609
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006610VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006611M: Liam Girdwood <lrg@slimlogic.co.uk>
6612M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006613W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006614W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006615T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006616S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006617F: drivers/regulator/
6618F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006619
Juerg Haefligerab413192006-09-24 20:54:04 +02006620VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006621M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02006622L: lm-sensors@lm-sensors.org
6623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006624F: Documentation/hwmon/vt1211
6625F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006626
Roger Lucas1de9e372005-11-26 20:20:05 +01006627VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006628M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01006629L: lm-sensors@lm-sensors.org
6630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006631F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006632
Linus Torvalds1da177e2005-04-16 15:20:36 -07006633W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006634M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006636F: Documentation/w1/
6637F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
Charles Spirakis13927072006-07-05 18:05:15 +02006639W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006640M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02006641L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006642S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006643F: Documentation/hwmon/w83791d
6644F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006645
Rudolf Marek61db0112006-12-12 18:18:30 +01006646W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006647M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01006648L: lm-sensors@lm-sensors.org
6649S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006650F: Documentation/hwmon/w83793
6651F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006652
Jean Delvaree3760b42010-10-28 20:31:49 +02006653W83795 HARDWARE MONITORING DRIVER
6654M: Jean Delvare <khali@linux-fr.org>
6655L: lm-sensors@lm-sensors.org
6656S: Maintained
6657F: drivers/hwmon/w83795.c
6658
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006660M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006662F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006664WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006665M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00006666L: linux-watchdog@vger.kernel.org
6667W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07006668T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006669S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006670F: Documentation/watchdog/
6671F: drivers/watchdog/
6672F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006673
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006675M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006676L: linux-scsi@vger.kernel.org
6677S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006678F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679
David Härdemane258b802009-09-21 17:04:53 -07006680WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006681M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006682S: Maintained
6683F: drivers/input/misc/winbond-cir.c
6684
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006685WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006686M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006687M: linux-wimax@intel.com
6688L: wimax@linuxwimax.org
6689S: Supported
6690W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07006691F: Documentation/wimax/README.wimax
6692F: include/linux/wimax.h
6693F: include/linux/wimax/debug.h
6694F: include/net/wimax.h
6695F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006696
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006697WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006698M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006700F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc14682005-11-20 00:50:06 -05006701
Kalle Valo834da342009-07-21 14:26:08 +03006702WL1251 WIRELESS DRIVER
Kalle Valo31c726f2010-08-22 22:46:15 +03006703M: Kalle Valo <kvalo@adurom.com>
Kalle Valo834da342009-07-21 14:26:08 +03006704L: linux-wireless@vger.kernel.org
6705W: http://wireless.kernel.org
6706T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6707S: Maintained
Kalle Valocc2858c2010-10-10 11:28:33 +03006708F: drivers/net/wireless/wl1251/*
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006709
6710WL1271 WIRELESS DRIVER
6711M: Luciano Coelho <luciano.coelho@nokia.com>
6712L: linux-wireless@vger.kernel.org
6713W: http://wireless.kernel.org
Luciano Coelho381bd102010-09-28 09:54:27 +03006714T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006715S: Maintained
6716F: drivers/net/wireless/wl12xx/wl1271*
Ohad Ben-Cohenc1f9a092010-09-16 13:16:02 +02006717F: include/linux/wl12xx.h
Kalle Valo834da342009-07-21 14:26:08 +03006718
Linus Torvalds1da177e2005-04-16 15:20:36 -07006719WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006720M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006721L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006722W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006724F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725
Mark Brownfebf1df2008-04-02 00:51:09 -04006726WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006727M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6728M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006729L: linux-input@vger.kernel.org
6730T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6731W: http://opensource.wolfsonmicro.com/node/7
6732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006733F: drivers/input/touchscreen/*wm97*
6734F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006735
Mark Brown055bcbc2010-08-13 14:18:12 +01006736WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006737M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01006738M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07006739M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Browncf8eda32010-10-05 19:31:40 -07006740T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
Mark Brownb75ea162009-07-02 16:43:08 +01006741T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
Mark Browncf8eda32010-10-05 19:31:40 -07006742W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
Mark Brownb75ea162009-07-02 16:43:08 +01006743S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006744F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006745F: drivers/leds/leds-wm83*.c
6746F: drivers/mfd/wm8*.c
6747F: drivers/power/wm83*.c
6748F: drivers/rtc/rtc-wm83*.c
6749F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006750F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006751F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006752F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006753F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006754F: include/linux/mfd/wm8400*
Mark Brown055bcbc2010-08-13 14:18:12 +01006755F: include/sound/wm????.h
6756F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01006757
Tejun Heo3e6cd7a2010-12-10 17:20:23 +01006758WORKQUEUE
6759M: Tejun Heo <tj@kernel.org>
6760L: linux-kernel@vger.kernel.org
6761T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
6762S: Maintained
6763F: include/linux/workqueue.h
6764F: kernel/workqueue.c
6765F: Documentation/workqueue.txt
6766
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006768M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006770S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006771F: Documentation/networking/x25*
6772F: include/net/x25*
6773F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006775X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006776M: Thomas Gleixner <tglx@linutronix.de>
6777M: Ingo Molnar <mingo@redhat.com>
6778M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006779M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006780T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006781S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006782F: Documentation/x86/
6783F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006784
Matthew Garrettd0944852010-02-11 10:40:13 -05006785X86 PLATFORM DRIVERS
6786M: Matthew Garrett <mjg@redhat.com>
6787L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07006788T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05006789S: Maintained
6790F: drivers/platform/x86
6791
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04006792XEN PCI SUBSYSTEM
6793M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08006794L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006795S: Supported
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04006796F: arch/x86/pci/*xen*
6797F: drivers/pci/*xen*
6798
6799XEN SWIOTLB SUBSYSTEM
6800M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08006801L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Konrad Rzeszutek Wilkc5f8e292010-10-04 13:32:26 -04006802S: Supported
6803F: arch/x86/xen/*swiotlb*
6804F: drivers/xen/*swiotlb*
6805
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006806XEN HYPERVISOR INTERFACE
Konrad Rzeszutek Wilk31f97832010-10-20 11:34:16 -04006807M: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
6808M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Joe Perchesb74831e2010-11-10 09:47:51 -08006809L: xen-devel@lists.xensource.com (moderated for non-subscribers)
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006810L: virtualization@lists.osdl.org
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006811S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006812F: arch/x86/xen/
6813F: drivers/*/xen-*front.c
6814F: drivers/xen/
6815F: arch/x86/include/asm/xen/
6816F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006817
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818XFS FILESYSTEM
6819P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05006820M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006822L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006824T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006826F: Documentation/filesystems/xfs.txt
6827F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006829XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006830M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006831W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006832S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006833F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006834
Peter Korsgaard238b8722006-12-06 20:35:17 -08006835XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006836M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08006837L: linux-serial@vger.kernel.org
6838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006839F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006840
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006842M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843L: linux-hams@vger.kernel.org
6844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006845F: drivers/net/hamradio/yam*
6846F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
Henkaf64a5e2005-10-12 15:02:56 +02006848YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006849M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02006850L: usbb2k-api-dev@nongnu.org
6851S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006852F: Documentation/input/yealink.txt
6853F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006854
Linus Torvalds1da177e2005-04-16 15:20:36 -07006855Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006856M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857W: http://yaina.de/jreuter/
6858W: http://www.qsl.net/dl1bke/
6859L: linux-hams@vger.kernel.org
6860S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006861F: Documentation/networking/z8530drv.txt
6862F: drivers/net/hamradio/*scc.c
6863F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006865ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006866M: Daniel Drake <dsd@gentoo.org>
6867M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006868W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006869L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006870L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6871S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006872F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006873
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006876L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006878T: Mercurial http://linuxtv.org/hg/v4l-dvb
6879S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006880F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006882ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006883M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006884S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006885F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006886
Dmitry Kozlov00959ad2010-08-21 23:05:39 -07006887GRE DEMULTIPLEXER DRIVER
6888M: Dmitry Kozlov <xeb@mail.ru>
6889L: netdev@vger.kernel.org
6890S: Maintained
6891F: net/ipv4/gre.c
6892F: include/net/gre.h
6893
6894PPTP DRIVER
6895M: Dmitry Kozlov <xeb@mail.ru>
6896L: netdev@vger.kernel.org
6897S: Maintained
6898F: drivers/net/pptp.c
6899W: http://sourceforge.net/projects/accel-pptp
6900
Linus Torvalds1da177e2005-04-16 15:20:36 -07006901THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07006902M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07006903L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006904Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07006905T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006907F: *
6908F: */