blob: 8c1180f12ee630998e564cacb25d40ce928f58bc [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160L: linux-serial@vger.kernel.org
161W: http://serial.sourceforge.net
Linus Torvalds90a09c92009-07-30 16:40:37 -0700162S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700163F: drivers/serial/8250*
164F: include/linux/serial_8250.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
1668390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
Joe Perches8b58be82009-07-29 15:04:30 -0700167M: Paul Gortmaker <p_gortmaker@yahoo.com>
Ralf Baechle979b6c12005-06-13 14:30:40 -0700168L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700170F: drivers/net/*8390*
171F: drivers/net/ax88796.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Eric Van Hensbergen67543e52006-03-25 03:07:29 -08001739P FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700174M: Eric Van Hensbergen <ericvh@gmail.com>
175M: Ron Minnich <rminnich@sandia.gov>
176M: Latchesar Ionkov <lucho@ionkov.net>
Jim Cromiece00f852006-11-30 04:49:44 +0100177L: v9fs-developer@lists.sourceforge.net
Eric Van Hensbergen27a2a5f2007-07-23 13:06:13 -0500178W: http://swik.net/v9fs
Joe Perches8a6e2532010-03-05 13:43:11 -0800179Q: http://patchwork.kernel.org/project/v9fs-devel/list/
Joe Percheseeba4442009-11-11 14:26:44 -0800180T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
Jim Cromiece00f852006-11-30 04:49:44 +0100181S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700182F: Documentation/filesystems/9p.txt
183F: fs/9p/
Eric Van Hensbergen67543e52006-03-25 03:07:29 -0800184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185A2232 SERIAL BOARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700186M: Enver Haase <A2232@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187L: linux-m68k@lists.linux-m68k.org
188S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700189F: drivers/char/ser_a2232*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700191AACRAID SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700192M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700193L: linux-scsi@vger.kernel.org
194W: http://www.adaptec.com/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700196F: Documentation/scsi/aacraid.txt
197F: drivers/scsi/aacraid/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700199ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700200M: Hans de Goede <j.w.r.degoede@hhs.nl>
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200201L: lm-sensors@lm-sensors.org
202S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700203F: drivers/hwmon/abituguru.c
Hans de Goedef2b84bb2006-06-04 20:22:24 +0200204
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700205ABIT UGURU 3 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700206M: Alistair John Strachan <alistair@devzero.co.uk>
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700207L: lm-sensors@lm-sensors.org
208S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700209F: drivers/hwmon/abituguru3.c
Alistair John Strachan249e3c82008-08-15 00:40:37 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211ACENIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700212M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213L: linux-acenic@sunsite.dk
214S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700215F: drivers/net/acenic*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Peter Feuerere86435e2009-06-21 18:53:03 +0200217ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700218M: Peter Feuerer <peter@piie.net>
Matthew Garrettd0944852010-02-11 10:40:13 -0500219L: platform-driver-x86@vger.kernel.org
Joe Perches4fc26e32009-07-29 15:04:22 -0700220W: http://piie.net/?section=acerhdf
221S: Maintained
222F: drivers/platform/x86/acerhdf.c
Peter Feuerere86435e2009-06-21 18:53:03 +0200223
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000224ACER WMI LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -0700225M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000226L: aceracpi@googlegroups.com (subscribers-only)
Matthew Garrettd0944852010-02-11 10:40:13 -0500227L: platform-driver-x86@vger.kernel.org
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000228W: http://code.google.com/p/aceracpi
229S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700230F: drivers/platform/x86/acer-wmi.c
Carlos Corbacho745a5d22008-02-05 02:17:10 +0000231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232ACPI
Joe Perches8b58be82009-07-29 15:04:30 -0700233M: Len Brown <lenb@kernel.org>
Len Brown6968e502005-12-30 00:32:49 -0500234L: linux-acpi@vger.kernel.org
Len Brown38e09d82007-10-25 17:55:59 -0400235W: http://www.lesswatts.org/projects/acpi/
Joe Perches8a6e2532010-03-05 13:43:11 -0800236Q: http://patchwork.kernel.org/project/linux-acpi/list/
Joe Perches54e58812009-04-07 21:08:10 -0700237T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
Len Brown8b59a452007-01-08 19:03:28 -0500238S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700239F: drivers/acpi/
240F: drivers/pnp/pnpacpi/
241F: include/linux/acpi.h
Felipe Contreras43368e72009-09-21 17:04:24 -0700242F: include/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500243
244ACPI BATTERY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700245M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500246L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300247W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500248S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700249F: drivers/acpi/battery.c
250F: drivers/acpi/*sbs*
Len Brown8b59a452007-01-08 19:03:28 -0500251
252ACPI EC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700253M: Alexey Starikovskiy <astarikovskiy@suse.de>
Len Brown8b59a452007-01-08 19:03:28 -0500254L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300255W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500256S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700257F: drivers/acpi/ec.c
Len Brown8b59a452007-01-08 19:03:28 -0500258
259ACPI FAN 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/fan.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Shaohua Li8e0af512009-07-27 18:11:02 -0400266ACPI PROCESSOR AGGREGATOR DRIVER
Linus Torvalds5e5027b2009-10-04 15:03:00 -0700267M: Shaohua Li <shaohua.li@intel.com>
Shaohua Li8e0af512009-07-27 18:11:02 -0400268L: linux-acpi@vger.kernel.org
269W: http://www.lesswatts.org/projects/acpi/
270S: Supported
271F: drivers/acpi/acpi_pad.c
272
Len Brown8b59a452007-01-08 19:03:28 -0500273ACPI THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700274M: Zhang Rui <rui.zhang@intel.com>
Len Brown8b59a452007-01-08 19:03:28 -0500275L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300276W: http://www.lesswatts.org/projects/acpi/
Len Brown8b59a452007-01-08 19:03:28 -0500277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700278F: drivers/acpi/*thermal*
Kristen Carlson Accardi998be202006-07-26 10:52:33 -0700279
Len Brown359acec2007-02-10 01:59:24 -0500280ACPI VIDEO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700281M: Zhang Rui <rui.zhang@intel.com>
Len Brown359acec2007-02-10 01:59:24 -0500282L: linux-acpi@vger.kernel.org
Adrian Bunk0638bc82008-05-20 01:08:23 +0300283W: http://www.lesswatts.org/projects/acpi/
Len Brown359acec2007-02-10 01:59:24 -0500284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700285F: drivers/acpi/video.c
Len Brown359acec2007-02-10 01:59:24 -0500286
Carlos Corbachobff431e2008-02-05 02:17:04 +0000287ACPI WMI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700288M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -0500289L: platform-driver-x86@vger.kernel.org
Jean Delvare795fb7e2008-09-20 12:33:08 +0200290W: http://www.lesswatts.org/projects/acpi/
291S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700292F: drivers/platform/x86/wmi.c
Carlos Corbachobff431e2008-02-05 02:17:04 +0000293
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100294AD1889 ALSA SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700295M: Kyle McMartin <kyle@mcmartin.ca>
296M: Thibaut Varene <T-Bone@parisc-linux.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200297W: http://wiki.parisc-linux.org/AD1889
298L: linux-parisc@vger.kernel.org
299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700300F: sound/pci/ad1889.*
Thibaut VARENE2f39d512008-02-20 21:05:56 +0100301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302ADM1025 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700303M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +0200304L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700306F: Documentation/hwmon/adm1025
307F: drivers/hwmon/adm1025.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Corentin Labbecae2caa2007-02-14 21:15:04 +0100309ADM1029 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700310M: Corentin Labbe <corentin.labbe@geomatys.fr>
Corentin Labbecae2caa2007-02-14 21:15:04 +0100311L: lm-sensors@lm-sensors.org
312S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700313F: drivers/hwmon/adm1029.c
Corentin Labbecae2caa2007-02-14 21:15:04 +0100314
Michael Wucc0b88c2007-08-31 01:15:25 -0400315ADM8211 WIRELESS DRIVER
Michael Wucc0b88c2007-08-31 01:15:25 -0400316L: linux-wireless@vger.kernel.org
317W: http://linuxwireless.org/
John W. Linvillee71bcbd2010-07-12 16:03:07 -0400318S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700319F: drivers/net/wireless/adm8211.*
Michael Wucc0b88c2007-08-31 01:15:25 -0400320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321ADT746X FAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700322M: Colin Leroy <colin@colino.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700324F: drivers/macintosh/therm_adt746x.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Jean Delvareb058b852009-12-09 20:36:08 +0100326ADT7475 HARDWARE MONITOR DRIVER
327M: Jean Delvare <khali@linux-fr.org>
328L: lm-sensors@lm-sensors.org
329S: Maintained
330F: Documentation/hwmon/adt7475
331F: drivers/hwmon/adt7475.c
332
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400333ADVANSYS SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700334M: Matthew Wilcox <matthew@wil.cx>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400335L: linux-scsi@vger.kernel.org
336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700337F: Documentation/scsi/advansys.txt
338F: drivers/scsi/advansys.c
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -0400339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340AEDSP16 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700341M: Riccardo Facchetti <fizban@tin.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700343F: sound/oss/aedsp16.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345AFFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -0700346M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700348F: Documentation/filesystems/affs.txt
349F: fs/affs/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700351AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
Joe Perches8b58be82009-07-29 15:04:30 -0700352M: David Howells <dhowells@redhat.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700353L: linux-afs@lists.infradead.org
354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700355F: fs/afs/
356F: include/net/af_rxrpc.h
357F: net/rxrpc/af_rxrpc.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359AGPGART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700360M: David Airlie <airlied@linux.ie>
Joe Perches54e58812009-04-07 21:08:10 -0700361T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700363F: drivers/char/agp/
364F: include/linux/agp*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366AHA152X SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700367M: "Juergen E. Fischer" <fischer@norbit.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368L: linux-scsi@vger.kernel.org
369S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700370F: drivers/scsi/aha152x*
371F: drivers/scsi/pcmcia/aha152x*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Hannes Reinecke64624d42007-10-19 10:32:29 +0200373AIC7XXX / AIC79XX SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700374M: Hannes Reinecke <hare@suse.de>
Hannes Reinecke64624d42007-10-19 10:32:29 +0200375L: linux-scsi@vger.kernel.org
376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700377F: drivers/scsi/aic7xxx/
378F: drivers/scsi/aic7xxx_old/
Hannes Reinecke64624d42007-10-19 10:32:29 +0200379
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700380AIO
Joe Perches8b58be82009-07-29 15:04:30 -0700381M: Benjamin LaHaise <bcrl@kvack.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700382L: linux-aio@kvack.org
383S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700384F: fs/aio.c
385F: include/linux/*aio*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387ALCATEL SPEEDTOUCH USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700388M: Duncan Sands <duncan.sands@free.fr>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -0700389L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390W: http://www.linux-usb.org/SpeedTouch/
391S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700392F: drivers/usb/atm/speedtch.c
393F: drivers/usb/atm/usbatm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Pierre Ossman272f1332007-05-14 21:25:26 +0200395ALCHEMY AU1XX0 MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700396M: Manuel Lauss <manuel.lauss@gmail.com>
Manuel Lauss08fcb722008-06-09 08:40:35 +0200397S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700398F: drivers/mmc/host/au1xmmc.c
Pierre Ossman272f1332007-05-14 21:25:26 +0200399
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000400ALI1563 I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700401M: Rudolf Marek <r.marek@assembler.cz>
Jean Delvare846557d2008-10-30 15:55:47 +0100402L: linux-i2c@vger.kernel.org
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000403S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700404F: Documentation/i2c/busses/i2c-ali1563
405F: drivers/i2c/busses/i2c-ali1563.c
R.Marek@sh.cvut.cz4a4e5782005-04-21 09:07:56 +0000406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407ALPHA PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700408M: Richard Henderson <rth@twiddle.net>
Joe Perches8b58be82009-07-29 15:04:30 -0700409M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Matt Turnerabd4d602010-01-14 13:15:20 -0500410M: Matt Turner <mattst88@gmail.com>
Cheng Renquana9406692009-03-31 15:23:35 -0700411L: linux-alpha@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -0700412F: arch/alpha/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700414AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700415M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
Jordan Crouse67d76712008-05-12 14:02:22 -0700416L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700417S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700418F: drivers/usb/gadget/amd5536udc.*
Thomas Dahlmann167a6752007-07-12 09:30:39 -0700419
Jordan Crousef90b8112006-01-06 00:12:14 -0800420AMD GEODE PROCESSOR/CHIPSET SUPPORT
Jim Cromiece00f852006-11-30 04:49:44 +0100421P: Jordan Crouse
Jordan Crouse67d76712008-05-12 14:02:22 -0700422L: linux-geode@lists.infradead.org (moderated for non-subscribers)
Jordan Crousef90b8112006-01-06 00:12:14 -0800423W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
424S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700425F: drivers/char/hw_random/geode-rng.c
426F: drivers/crypto/geode*
427F: drivers/video/geode/
428F: arch/x86/include/asm/geode.h
Jordan Crousef90b8112006-01-06 00:12:14 -0800429
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200430AMD IOMMU (AMD-VI)
Joe Perches8b58be82009-07-29 15:04:30 -0700431M: Joerg Roedel <joerg.roedel@amd.com>
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200432L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -0700433T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200434S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700435F: arch/x86/kernel/amd_iommu*.c
436F: arch/x86/include/asm/amd_iommu*.h
Joerg Roedel919ee7d2008-06-26 21:28:09 +0200437
Peter Orubae7f5b302008-07-28 18:44:11 +0200438AMD MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700439M: Andreas Herrmann <andreas.herrmann3@amd.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -0700440L: amd64-microcode@amd64.org
441S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700442F: arch/x86/kernel/microcode_amd.c
Peter Orubae7f5b302008-07-28 18:44:11 +0200443
Stelian Pop284f42b2006-12-12 18:18:31 +0100444AMS (Apple Motion Sensor) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700445M: Stelian Pop <stelian@popies.net>
446M: Michael Hanselmann <linux-kernel@hansmi.ch>
Stelian Pop284f42b2006-12-12 18:18:31 +0100447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700448F: drivers/hwmon/ams/
Stelian Pop284f42b2006-12-12 18:18:31 +0100449
Tom Tuckerf94b5332006-09-22 15:22:48 -0700450AMSO1100 RNIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700451M: Tom Tucker <tom@opengridcomputing.com>
452M: Steve Wise <swise@opengridcomputing.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -0700453L: linux-rdma@vger.kernel.org
Tom Tuckerf94b5332006-09-22 15:22:48 -0700454S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700455F: drivers/infiniband/hw/amso1100/
Tom Tuckerf94b5332006-09-22 15:22:48 -0700456
Johannes Berg42269062006-07-25 16:15:50 +0200457AOA (Apple Onboard Audio) ALSA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700458M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg42269062006-07-25 16:15:50 +0200459L: linuxppc-dev@ozlabs.org
Joe Perches93711662009-06-16 15:34:07 -0700460L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Johannes Berg42269062006-07-25 16:15:50 +0200461S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700462F: sound/aoa/
Johannes Berg42269062006-07-25 16:15:50 +0200463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464APM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700465M: Stephen Rothwell <sfr@canb.auug.org.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466L: linux-laptop@vger.kernel.org
467W: http://www.canb.auug.org.au/~sfr/
468S: Supported
Joe Perches679655d2009-04-07 20:44:32 -0700469F: arch/x86/kernel/apm_32.c
470F: include/linux/apm_bios.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700472APPLE BCM5974 MULTITOUCH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700473M: Henrik Rydberg <rydberg@euromail.se>
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700474L: linux-input@vger.kernel.org
475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700476F: drivers/input/mouse/bcm5974.c
Henrik Rydbergbd7aa4b2008-09-02 14:35:43 -0700477
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700478APPLE SMC DRIVER
Henrik Rydbergd618540f2010-04-14 16:14:11 +0200479M: Henrik Rydberg <rydberg@euromail.se>
480L: lm-sensors@lm-sensors.org
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700482F: drivers/hwmon/applesmc.c
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484APPLETALK NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -0700485M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700487F: drivers/net/appletalk/
488F: net/appletalk/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Jaya Kumar1154ea72005-06-21 17:17:04 -0700490ARC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -0700491M: Jaya Kumar <jayalk@intworks.biz>
Jaya Kumar1154ea72005-06-21 17:17:04 -0700492S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700493F: drivers/video/arcfb.c
494F: drivers/video/fb_defio.c
Jaya Kumar1154ea72005-06-21 17:17:04 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496ARM MFM AND FLOPPY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -0700497M: Ian Molton <spyro@f2s.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700499F: arch/arm/lib/floppydma.S
500F: arch/arm/include/asm/floppy.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Russell Kingd4275352009-04-16 14:05:27 +0100502ARM PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700503M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700504L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100505W: http://www.arm.linux.org.uk/
506S: Maintained
507F: arch/arm/
508
Russell Kingcefbf4e2009-11-22 17:40:28 +0000509ARM PRIMECELL AACI PL041 DRIVER
510M: Russell King <linux@arm.linux.org.uk>
511S: Maintained
512F: sound/arm/aaci.*
513
514ARM PRIMECELL CLCD PL110 DRIVER
515M: Russell King <linux@arm.linux.org.uk>
516S: Maintained
517F: drivers/video/amba-clcd.*
518
519ARM PRIMECELL KMI PL050 DRIVER
520M: Russell King <linux@arm.linux.org.uk>
521S: Maintained
522F: drivers/input/serio/ambakmi.*
523F: include/linux/amba/kmi.h
524
Russell King2761f5c2007-05-24 06:56:08 +0200525ARM PRIMECELL MMCI PL180/1 DRIVER
Pierre Ossman6d799472008-07-22 14:36:57 +0200526S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -0700527F: drivers/mmc/host/mmci.*
Russell King2761f5c2007-05-24 06:56:08 +0200528
Russell Kingcefbf4e2009-11-22 17:40:28 +0000529ARM PRIMECELL BUS SUPPORT
530M: Russell King <linux@arm.linux.org.uk>
531S: Maintained
532F: drivers/amba/
533F: include/linux/amba/bus.h
534
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800535ARM/ADI ROADRUNNER MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700536M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700537L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -0700539F: arch/arm/mach-ixp23xx/
540F: arch/arm/mach-ixp23xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800541
542ARM/ADS SPHERE MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700543M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700544L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800545S: Maintained
546
Sergey Lapin9c784f92008-08-03 02:29:48 +0100547ARM/AFEB9260 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700548M: Sergey Lapin <slapin@ossfans.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700549L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sergey Lapin9c784f92008-08-03 02:29:48 +0100550S: Maintained
551
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800552ARM/AJECO 1ARM MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700553M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700554L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800555S: Maintained
556
Andrew Victord4a89c72006-12-04 13:56:21 +0100557ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700558M: Andrew Victor <linux@maxim.org.za>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700559L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jean Delvare795fb7e2008-09-20 12:33:08 +0200560W: http://maxim.org.za/at91_26.html
561S: Maintained
Andrew Victord4a89c72006-12-04 13:56:21 +0100562
Leo Chen57a473f2009-08-12 22:08:48 +0100563ARM/BCMRING ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100564M: Leo Chen <leochen@broadcom.com>
565M: Scott Branden <sbranden@broadcom.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800567S: Maintained
Leo Chen57a473f2009-08-12 22:08:48 +0100568F: arch/arm/mach-bcmring
569
570ARM/BCMRING MTD NAND DRIVER
Russell Kingddd559b2009-09-12 12:02:26 +0100571M: Leo Chen <leochen@broadcom.com>
572M: Scott Branden <sbranden@broadcom.com>
Leo Chen57a473f2009-08-12 22:08:48 +0100573L: linux-mtd@lists.infradead.org
574S: Maintained
575F: drivers/mtd/nand/bcm_umi_nand.c
576F: drivers/mtd/nand/bcm_umi_bch.c
Leo Chen57a473f2009-08-12 22:08:48 +0100577F: drivers/mtd/nand/nand_bcm_umi.h
578
Anton Vorontsovd94f9442010-03-25 17:12:41 +0300579ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
580M: Anton Vorontsov <avorontsov@mvista.com>
581S: Maintained
582F: arch/arm/mach-cns3xxx/
583T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
584
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800585ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
Russell Kingddd559b2009-09-12 12:02:26 +0100586M: Hartley Sweeten <hsweeten@visionengravers.com>
587M: Ryan Mallon <ryan@bluewatersys.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700588L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800589S: Maintained
Hartley Sweetend19d3662009-07-10 23:02:59 +0100590F: arch/arm/mach-ep93xx/
591F: arch/arm/mach-ep93xx/include/mach/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800592
593ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700594M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700595L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800596S: Maintained
597
Russell Kingd4275352009-04-16 14:05:27 +0100598ARM/CLKDEV SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700599M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700600L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100601F: arch/arm/common/clkdev.c
602F: arch/arm/include/asm/clkdev.h
603
Mike Rapoportd48134e2008-08-20 09:03:26 +0100604ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700605M: Mike Rapoport <mike@compulab.co.il>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700606L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kinga9da4f72008-07-12 21:42:04 +0100607S: Maintained
608
Hubert Feurstein94150092009-10-07 08:36:07 +0100609ARM/CONTEC MICRO9 MACHINE SUPPORT
610M: Hubert Feurstein <hubert.feurstein@contec.at>
611S: Maintained
612F: arch/arm/mach-ep93xx/micro9.c
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614ARM/CORGI MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700615M: Richard Purdie <rpurdie@rpsys.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616S: Maintained
617
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200618ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100619M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700620L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100621T: git git://git.berlios.de/gemini-board
622S: Maintained
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300623F: arch/arm/mach-gemini/
Paulius Zaleckas881a95f2009-03-26 10:06:27 +0200624
Russell Kingd4275352009-04-16 14:05:27 +0100625ARM/EBSA110 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700626M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700627L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100628W: http://www.arm.linux.org.uk/
629S: Maintained
630F: arch/arm/mach-ebsa110/
631F: drivers/net/arm/am79c961a.*
632
Russell Kinga9da4f72008-07-12 21:42:04 +0100633ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
Joe Perches8b58be82009-07-29 15:04:30 -0700634M: Daniel Ribeiro <drwyrm@gmail.com>
635M: Stefan Schmidt <stefan@openezx.org>
636M: Harald Welte <laforge@openezx.org>
Russell Kinga9da4f72008-07-12 21:42:04 +0100637L: openezx-devel@lists.openezx.org (subscribers-only)
638W: http://www.openezx.org/
639S: Maintained
Stefan Schmidtcafc2262009-06-14 01:08:36 +0200640T: topgit git://git.openezx.org/openezx.git
641F: arch/arm/mach-pxa/ezx.c
Russell Kinga9da4f72008-07-12 21:42:04 +0100642
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200643ARM/FARADAY FA526 PORT
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100644M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700645L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Hans Ulli Kroll162500b2010-05-13 06:43:59 +0100646S: Maintained
647T: git://git.berlios.de/gemini-board
Paulius Zaleckasf49afbb2009-05-28 16:41:36 +0300648F: arch/arm/mm/*-fa*
Paulius Zaleckas6a915af2009-03-25 13:10:20 +0200649
Russell Kingd4275352009-04-16 14:05:27 +0100650ARM/FOOTBRIDGE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700651M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700652L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100653W: http://www.arm.linux.org.uk/
654S: Maintained
655F: arch/arm/include/asm/hardware/dec21285.h
656F: arch/arm/mach-footbridge/
657
Sascha Hauer86183a52008-07-24 23:50:35 +0200658ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700659M: Sascha Hauer <kernel@pengutronix.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700660L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer86183a52008-07-24 23:50:35 +0200661S: Maintained
Uwe Kleine-Königb16533d2009-11-30 16:53:24 +0100662T: git://git.pengutronix.de/git/imx/linux-2.6.git
663F: arch/arm/mach-mx*/
664F: arch/arm/plat-mxc/
Sascha Hauer86183a52008-07-24 23:50:35 +0200665
Amit Kucheria3d48e1d2010-02-04 15:57:29 -0800666ARM/FREESCALE IMX51
667M: Amit Kucheria <amit.kucheria@canonical.com>
668L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
669S: Maintained
670F: arch/arm/mach-mx5/
671
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800672ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700673M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800675S: Maintained
676
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100677ARM/GUMSTIX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700678M: Steve Sakoman <sakoman@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700679L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100680S: Maintained
681
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200682ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700683M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabelef47d5f2009-05-28 07:07:47 +0200684S: Maintained
685F: arch/arm/mach-pxa/hx4700.c
686F: arch/arm/mach-pxa/include/mach/hx4700.h
687
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100688ARM/HP JORNADA 7XX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700689M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +0200690W: www.jlime.com
691S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -0700692T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
693F: arch/arm/mach-sa1100/jornada720.c
694F: arch/arm/mach-sa1100/include/mach/jornada720.h
Kristoffer Ericson21f37bc2006-11-21 01:20:31 +0100695
Marek Vasut403d2972010-05-22 00:29:39 +0200696ARM/INCOME PXA270 SUPPORT
697M: Marek Vasut <marek.vasut@gmail.com>
698L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
699S: Maintained
700F: arch/arm/mach-pxa/income.c
701F: arch/arm/mach-pxa/include/mach-pxa/income.h
702
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800703ARM/INTEL IOP32X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700704M: Lennert Buytenhek <kernel@wantstofly.org>
705M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700706L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700707S: Maintained
Dan Williamse2bdb172007-01-02 18:32:37 +0100708
709ARM/INTEL IOP33X ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700710M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700711L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700712S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800713
714ARM/INTEL IOP13XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700715M: Lennert Buytenhek <kernel@wantstofly.org>
716M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700717L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700718S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800719
720ARM/INTEL IQ81342EX MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700721M: Lennert Buytenhek <kernel@wantstofly.org>
722M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700723L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700724S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800725
726ARM/INTEL IXP2000 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700727M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700728L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800729S: Maintained
730
731ARM/INTEL IXDP2850 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700732M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700733L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800734S: Maintained
735
736ARM/INTEL IXP23XX ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700737M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700738L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800739S: Maintained
740
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200741ARM/INTEL IXP4XX ARM ARCHITECTURE
742M: Imre Kaloz <kaloz@openwrt.org>
743M: Krzysztof Halasa <khc@pm.waw.pl>
Russell Kingbaea7b92009-09-24 21:22:33 +0100744L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Krzysztof Hałasadfdd8cc2009-09-21 18:31:24 +0200745S: Maintained
746F: arch/arm/mach-ixp4xx/
747
Jonathan Cameron7f49a7f2009-10-15 16:39:30 +0100748ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT
749M: Jonathan Cameron <jic23@cam.ac.uk>
750L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S: Maintained
752F: arch/arm/mach-pxa/imote2.c
753
754ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT
755M: Jonathan Cameron <jic23@cam.ac.uk>
756L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
757S: Maintained
758F: arch/arm/mach-pxa/stargate2.c
759F: drivers/pcmcia/pxa2xx_stargate2.c
760
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800761ARM/INTEL XSC3 (MANZANO) ARM CORE
Joe Perches8b58be82009-07-29 15:04:30 -0700762M: Lennert Buytenhek <kernel@wantstofly.org>
763M: Dan Williams <dan.j.williams@intel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700764L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Dan Williamsf00f5102009-08-18 15:21:50 -0700765S: Maintained
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800766
767ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700768M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700769L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800770S: Maintained
771
772ARM/LOGICPD PXA270 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700773M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700774L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800775S: Maintained
776
Philipp Zabel3b8861712008-07-09 21:27:15 +0100777ARM/MAGICIAN MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700778M: Philipp Zabel <philipp.zabel@gmail.com>
Philipp Zabel3b8861712008-07-09 21:27:15 +0100779S: Maintained
780
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400781ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
Nicolas Pitre18e28422010-05-03 16:43:47 -0400782M: Lennert Buytenhek <kernel@wantstofly.org>
783M: Nicolas Pitre <nico@fluxnic.net>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Nicolas Pitre18e28422010-05-03 16:43:47 -0400785S: Odd Fixes
Nicolas Pitre54a246f2009-08-11 23:28:51 -0400786F: arch/arm/mach-loki/
787F: arch/arm/mach-kirkwood/
788F: arch/arm/mach-mv78xx0/
789F: arch/arm/mach-orion5x/
790F: arch/arm/plat-orion/
791
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200792ARM/MIOA701 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700793M: Robert Jarzmik <robert.jarzmik@free.fr>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700794L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Robert Jarzmikd78ff0a2009-06-16 07:51:05 +0200795F: arch/arm/mach-pxa/mioa701.c
796S: Maintained
797
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100798ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700799M: Michael Petchkovsky <mkpetch@internode.on.net>
Kristoffer Ericson9624dfe2008-10-09 16:50:46 +0100800S: Maintained
801
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100802ARM/NOMADIK ARCHITECTURE
Joe Perches28b8e8d2010-03-23 13:35:20 -0700803M: Alessandro Rubini <rubini@unipv.it>
804M: STEricsson <STEricsson_nomadik_linux@list.st.com>
805L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806S: Maintained
807F: arch/arm/mach-nomadik/
808F: arch/arm/plat-nomadik/
Alessandro Rubinie0ee9852009-12-02 14:01:03 +0100809
Andy Green9d762952009-05-19 06:41:42 -0300810ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700811M: Nelson Castillo <arhuaco@freaks-unidos.net>
Andy Green9d762952009-05-19 06:41:42 -0300812L: openmoko-kernel@lists.openmoko.org (subscribers-only)
813W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
814S: Supported
815
Daniel Walker0c19d212009-12-07 16:53:51 -0800816ARM/QUALCOMM MSM MACHINE SUPPORT
817M: David Brown <davidb@codeaurora.org>
818M: Daniel Walker <dwalker@codeaurora.org>
819M: Bryan Huntsman <bryanh@codeaurora.org>
Daniel Walkerc68af412010-03-08 10:37:25 -0800820L: linux-arm-msm@vger.kernel.org
Daniel Walker0c19d212009-12-07 16:53:51 -0800821F: arch/arm/mach-msm/
822F: drivers/video/msm/
823F: drivers/mmc/host/msm_sdcc.c
824F: drivers/mmc/host/msm_sdcc.h
825F: drivers/serial/msm_serial.h
826F: drivers/serial/msm_serial.c
827T: git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git
828S: Maintained
829
Dirk Opfer8459c152005-11-06 14:27:52 +0000830ARM/TOSA MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700831M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
832M: Dirk Opfer <dirk@opfer-online.de>
Dirk Opfer8459c152005-11-06 14:27:52 +0000833S: Maintained
834
Marek Vasut5d783a22009-07-16 13:26:48 +0200835ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
Joe Perches933d35f2009-10-01 15:43:59 -0700836M: Marek Vasut <marek.vasut@gmail.com>
Marek Vasut75280782009-08-22 00:49:53 +0200837L: linux-arm-kernel@lists.infradead.org
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100838W: http://hackndev.com
839S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700840F: arch/arm/mach-pxa/include/mach/palmtx.h
841F: arch/arm/mach-pxa/palmtx.c
842F: arch/arm/mach-pxa/include/mach/palmt5.h
843F: arch/arm/mach-pxa/palmt5.c
844F: arch/arm/mach-pxa/include/mach/palmld.h
845F: arch/arm/mach-pxa/palmld.c
846F: arch/arm/mach-pxa/include/mach/palmte2.h
847F: arch/arm/mach-pxa/palmte2.c
848F: arch/arm/mach-pxa/include/mach/palmtc.h
849F: arch/arm/mach-pxa/palmtc.c
Marek Vašutb5e4ad52008-07-07 17:25:46 +0100850
Joe Perchesb57fe922009-12-14 18:00:52 -0800851ARM/PALM TREO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700852M: Tomas Cech <sleep_walker@suse.cz>
Marek Vasut75280782009-08-22 00:49:53 +0200853L: linux-arm-kernel@lists.infradead.org
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200854W: http://hackndev.com
855S: Maintained
Joe Perchesb57fe922009-12-14 18:00:52 -0800856F: arch/arm/mach-pxa/include/mach/palmtreo.h
857F: arch/arm/mach-pxa/palmtreo.c
Tomas 'Sleep_Walker' Cech90af5812009-05-22 16:05:58 +0200858
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100859ARM/PALMZ72 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700860M: Sergey Lapin <slapin@ossfans.org>
Marek Vasut75280782009-08-22 00:49:53 +0200861L: linux-arm-kernel@lists.infradead.org
Joe Perches7d2c86b2009-04-07 20:59:01 -0700862W: http://hackndev.com
863S: Maintained
Joe Perches933d35f2009-10-01 15:43:59 -0700864F: arch/arm/mach-pxa/include/mach/palmz72.h
865F: arch/arm/mach-pxa/palmz72.c
Sergey Lapinc49e1e62008-08-29 15:47:52 +0100866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867ARM/PLEB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700868M: Peter Chubb <pleb@gelato.unsw.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
870S: Maintained
871
872ARM/PT DIGITAL BOARD PORT
Joe Perches8b58be82009-07-29 15:04:30 -0700873M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700874L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875W: http://www.arm.linux.org.uk/
876S: Maintained
877
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800878ARM/RADISYS ENP2611 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700879M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700880L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800881S: Maintained
882
Russell Kingd4275352009-04-16 14:05:27 +0100883ARM/RISCPC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700884M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700885L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +0100886W: http://www.arm.linux.org.uk/
887S: Maintained
888F: arch/arm/common/time-acorn.c
889F: arch/arm/include/asm/hardware/entry-macro-iomd.S
890F: arch/arm/include/asm/hardware/ioc.h
891F: arch/arm/include/asm/hardware/iomd.h
892F: arch/arm/include/asm/hardware/memc.h
893F: arch/arm/mach-rpc/
894F: drivers/net/arm/ether*
895F: drivers/scsi/arm/
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897ARM/SHARK MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700898M: Alexander Schulz <alex@shark-linux.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899W: http://www.shark-linux.de/shark.html
900S: Maintained
901
Ben Dooksb21477f2009-06-13 10:46:34 +0100902ARM/SAMSUNG ARM ARCHITECTURES
Joe Perches8b58be82009-07-29 15:04:30 -0700903M: Ben Dooks <ben-linux@fluff.org>
Kukjin Kim482ce512010-06-29 15:05:26 -0700904M: Kukjin Kim <kgene.kim@samsung.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700905L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100906W: http://www.fluff.org/ben/linux/
907S: Maintained
Kukjin Kim482ce512010-06-29 15:05:26 -0700908F: arch/arm/plat-samsung/
Ben Dooksb21477f2009-06-13 10:46:34 +0100909F: arch/arm/plat-s3c24xx/
Kukjin Kim482ce512010-06-29 15:05:26 -0700910F: arch/arm/plat-s5p/
Ben Dooksb21477f2009-06-13 10:46:34 +0100911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912ARM/S3C2410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700913M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700914L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915W: http://www.fluff.org/ben/linux/
916S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100917F: arch/arm/mach-s3c2410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919ARM/S3C2440 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700920M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700921L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922W: http://www.fluff.org/ben/linux/
923S: Maintained
Ben Dooks3a45c9e2009-06-13 10:43:19 +0100924F: arch/arm/mach-s3c2440/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Ben Dooksb21477f2009-06-13 10:46:34 +0100926ARM/S3C2442 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700927M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700928L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100929W: http://www.fluff.org/ben/linux/
930S: Maintained
931F: arch/arm/mach-s3c2442/
932
933ARM/S3C2443 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700934M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100936W: http://www.fluff.org/ben/linux/
937S: Maintained
938F: arch/arm/mach-s3c2443/
939
940ARM/S3C6400 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700941M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700942L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100943W: http://www.fluff.org/ben/linux/
944S: Maintained
945F: arch/arm/mach-s3c6400/
946
947ARM/S3C6410 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700948M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooksb21477f2009-06-13 10:46:34 +0100950W: http://www.fluff.org/ben/linux/
951S: Maintained
952F: arch/arm/mach-s3c6410/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Paul Mundtd48d38e2010-02-08 12:50:24 +0900954ARM/SHMOBILE ARM ARCHITECTURE
955M: Paul Mundt <lethal@linux-sh.org>
956M: Magnus Damm <magnus.damm@gmail.com>
957L: linux-sh@vger.kernel.org
Paul Mundtd48d38e2010-02-08 12:50:24 +0900958W: http://oss.renesas.com
Paul Mundtbbff48f2010-04-07 17:17:22 +0900959Q: http://patchwork.kernel.org/project/linux-sh/list/
960T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
Paul Mundtd48d38e2010-02-08 12:50:24 +0900961S: Supported
962F: arch/arm/mach-shmobile/
963F: drivers/sh/
964
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800965ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700966M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700967L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800968S: Maintained
969
970ARM/THECUS N2100 MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -0700971M: Lennert Buytenhek <kernel@wantstofly.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700972L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -0800973S: Maintained
974
wanzongshun98ad6e32009-02-13 06:04:32 +0100975ARM/NUVOTON W90X900 ARM ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -0700976M: Wan ZongShun <mcuos.com@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -0700977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches7d2c86b2009-04-07 20:59:01 -0700978W: http://www.mcuos.com
979S: Maintained
Wan ZongShun4e89e8f2010-05-25 23:43:04 -0700980F: arch/arm/mach-w90x900/
981F: arch/arm/mach-nuc93x/
982F: drivers/input/keyboard/w90p910_keypad.c
983F: drivers/input/touchscreen/w90p910_ts.c
984F: drivers/watchdog/nuc900_wdt.c
985F: drivers/net/arm/w90p910_ether.c
Joe Perches53516842010-08-09 17:20:37 -0700986F: drivers/mtd/nand/nuc900_nand.c
Wan ZongShun4e89e8f2010-05-25 23:43:04 -0700987F: drivers/rtc/rtc-nuc900.c
988F: drivers/spi/spi_nuc900.c
989F: drivers/usb/host/ehci-w90x900.c
990F: drivers/video/nuc900fb.c
wanzongshun98ad6e32009-02-13 06:04:32 +0100991
Linus Walleij54274d72010-04-04 10:58:03 +0100992ARM/U300 MACHINE SUPPORT
993M: Linus Walleij <linus.walleij@stericsson.com>
994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995S: Supported
996F: arch/arm/mach-u300/
997F: drivers/i2c/busses/i2c-stu300.c
998F: drivers/rtc/rtc-coh901331.c
999F: drivers/watchdog/coh901327_wdt.c
1000F: drivers/dma/coh901318*
1001
Srinidhi Kasagar870725d2009-12-01 13:41:24 +01001002ARM/U8500 ARM ARCHITECTURE
1003M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
1004L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1005S: Maintained
1006F: arch/arm/mach-ux500/
1007
Russell Kingd4275352009-04-16 14:05:27 +01001008ARM/VFP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001009M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001010L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Russell Kingd4275352009-04-16 14:05:27 +01001011W: http://www.arm.linux.org.uk/
1012S: Maintained
1013F: arch/arm/vfp/
1014
Marek Vasute66b6d82010-03-26 06:51:32 +01001015ARM/VOIPAC PXA270 SUPPORT
1016M: Marek Vasut <marek.vasut@gmail.com>
1017L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018S: Maintained
1019F: arch/arm/mach-pxa/vpac270.c
Joe Perchese0cca112010-08-09 17:20:38 -07001020F: arch/arm/mach-pxa/include/mach/vpac270.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001021
1022ARM/ZIPIT Z2 SUPPORT
1023M: Marek Vasut <marek.vasut@gmail.com>
1024L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025S: Maintained
1026F: arch/arm/mach-pxa/z2.c
Joe Perches6ab2a852010-08-09 17:20:38 -07001027F: arch/arm/mach-pxa/include/mach/z2.h
Marek Vasute66b6d82010-03-26 06:51:32 +01001028
George Josephd58de032010-03-05 22:17:25 +01001029ASC7621 HARDWARE MONITOR DRIVER
1030M: George Joseph <george.joseph@fairview5.com>
1031L: lm-sensors@lm-sensors.org
1032S: Maintained
1033F: Documentation/hwmon/asc7621
1034F: drivers/hwmon/asc7621.c
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036ASUS ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001037M: Corentin Chary <corentincj@iksaif.net>
1038M: Karol Kozimor <sziwan@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001040L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001041W: http://acpi4asus.sf.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001043F: drivers/platform/x86/asus_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001045ASUS ASB100 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001046M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001047L: lm-sensors@lm-sensors.org
1048S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001049F: drivers/hwmon/asb100.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04001050
Corentin Chary85091b72007-01-26 14:04:30 +01001051ASUS LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001052M: Corentin Chary <corentincj@iksaif.net>
Corentin Chary85091b72007-01-26 14:04:30 +01001053L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05001054L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00001055W: http://acpi4asus.sf.net
Corentin Chary85091b72007-01-26 14:04:30 +01001056S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001057F: drivers/platform/x86/asus-laptop.c
Corentin Chary85091b72007-01-26 14:04:30 +01001058
Andrew Morton953a6472008-11-06 12:53:28 -08001059ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
Joe Perches8b58be82009-07-29 15:04:30 -07001060M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001061W: http://sourceforge.net/projects/xscaleiop
1062S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001063F: Documentation/crypto/async-tx-api.txt
1064F: crypto/async_tx/
1065F: drivers/dma/
1066F: include/linux/dmaengine.h
1067F: include/linux/async_tx.h
Dan Williamsb3e5f262007-08-07 10:26:35 -07001068
Wolfram Sanga1867d32009-09-18 22:45:51 +02001069AT24 EEPROM DRIVER
1070M: Wolfram Sang <w.sang@pengutronix.de>
1071L: linux-i2c@vger.kernel.org
1072S: Maintained
1073F: drivers/misc/eeprom/at24.c
1074F: include/linux/i2c/at24.h
1075
Randy Dunlape7839f22008-10-12 16:11:45 -07001076ATA OVER ETHERNET (AOE) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001077M: "Ed L. Cashin" <ecashin@coraid.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078W: http://www.coraid.com/support/linux
1079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001080F: Documentation/aoe/
1081F: drivers/block/aoe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001083ATHEROS ATH5K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001084M: Jiri Slaby <jirislaby@gmail.com>
1085M: Nick Kossifidis <mickflemm@gmail.com>
1086M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1087M: Bob Copeland <me@bobcopeland.com>
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001088L: linux-wireless@vger.kernel.org
1089L: ath5k-devel@lists.ath5k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001090W: http://wireless.kernel.org/en/users/Drivers/ath5k
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001091S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001092F: drivers/net/wireless/ath/ath5k/
Jiri Slabyfa1c1142007-08-12 17:33:16 +02001093
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001094ATHEROS ATH9K WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001095M: "Luis R. Rodriguez" <lrodriguez@atheros.com>
1096M: Jouni Malinen <jmalinen@atheros.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001097M: Vasanthakumar Thiagarajan <vasanth@atheros.com>
1098M: Senthil Balasubramanian <senthilkumar@atheros.com>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001099L: linux-wireless@vger.kernel.org
1100L: ath9k-devel@lists.ath9k.org
Joe Perches72c706b2009-09-07 11:34:30 -07001101W: http://wireless.kernel.org/en/users/Drivers/ath9k
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001102S: Supported
Joe Perchesfa451752009-06-18 16:49:22 -07001103F: drivers/net/wireless/ath/ath9k/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001104
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001105ATHEROS AR9170 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001106M: Christian Lamparter <chunkeey@web.de>
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001107L: linux-wireless@vger.kernel.org
1108W: http://wireless.kernel.org/en/users/Drivers/ar9170
1109S: Maintained
Joe Perchesfa451752009-06-18 16:49:22 -07001110F: drivers/net/wireless/ath/ar9170/
Christian Lamparter75ca88c2009-03-21 23:11:49 +01001111
Luca Tettamanti2c2a6172009-09-15 17:18:10 +02001112ATK0110 HWMON DRIVER
1113M: Luca Tettamanti <kronos.it@gmail.com>
1114L: lm-sensors@lm-sensors.org
1115S: Maintained
1116F: drivers/hwmon/asus_atk0110.c
1117
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001118ATI_REMOTE2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001119M: Ville Syrjala <syrjala@sci.fi>
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001120S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001121F: drivers/input/misc/ati_remote2.c
Ville Syrjala6f69a6d2008-04-21 22:21:10 +00001122
Chris Snook7ae115b2008-09-09 03:26:57 -04001123ATLX ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001124M: Jay Cliburn <jcliburn@gmail.com>
Chris Snookcb2f33e2009-08-06 12:19:31 +00001125M: Chris Snook <chris.snook@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07001126M: Jie Yang <jie.yang@atheros.com>
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001127L: atl1-devel@lists.sourceforge.net
1128W: http://sourceforge.net/projects/atl1
1129W: http://atl1.sourceforge.net
1130S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001131F: drivers/net/atlx/
Jay Cliburn8d5ca6e2007-02-03 20:25:10 -06001132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133ATM
Joe Perches8b58be82009-07-29 15:04:30 -07001134M: Chas Williams <chas@cmf.nrl.navy.mil>
Joe Perches476604d2009-10-26 16:49:41 -07001135L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
Jiri Slaby44ae98b2008-11-30 23:27:11 -08001136L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137W: http://linux-atm.sourceforge.net
1138S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001139F: drivers/atm/
1140F: include/linux/atm*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Pierre Ossman272f1332007-05-14 21:25:26 +02001142ATMEL AT91 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001143M: Nicolas Ferre <nicolas.ferre@atmel.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001144L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pierre Ossman81764fa2007-07-15 18:47:38 +02001145W: http://www.atmel.com/products/AT91/
1146W: http://www.at91.com/
1147S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001148F: drivers/mmc/host/at91_mci.c
Pierre Ossman272f1332007-05-14 21:25:26 +02001149
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001150ATMEL AT91 / AT32 MCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001151M: Nicolas Ferre <nicolas.ferre@atmel.com>
Nicolas Ferre04ac2f42009-06-16 13:05:50 +02001152S: Maintained
1153F: drivers/mmc/host/atmel-mci.c
1154F: drivers/mmc/host/atmel-mci-regs.h
1155
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001156ATMEL AT91 / AT32 SERIAL DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001157M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001158S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001159F: drivers/serial/atmel_serial.c
Haavard Skinnemoena1cfac42008-02-08 04:21:00 -08001160
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001161ATMEL LCDFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001162M: Nicolas Ferre <nicolas.ferre@atmel.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01001163L: linux-fbdev@vger.kernel.org
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001165F: drivers/video/atmel_lcdfb.c
1166F: include/video/atmel_lcdc.h
Nicolas Ferre8f4c79c2008-01-14 00:55:13 -08001167
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001168ATMEL MACB ETHERNET DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001169M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001170S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001171F: drivers/net/macb.*
Haavard Skinnemoen89e57852006-11-09 14:51:17 +01001172
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001173ATMEL SPI DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001174M: Nicolas Ferre <nicolas.ferre@atmel.com>
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001175S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001176F: drivers/spi/atmel_spi.*
Haavard Skinnemoen754ce4f2007-02-14 00:33:09 -08001177
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001178ATMEL USBA UDC DRIVER
Nicolas Ferrea02875a2010-06-29 15:05:33 -07001179M: Nicolas Ferre <nicolas.ferre@atmel.com>
1180L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001181W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
1182S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001183F: drivers/usb/gadget/atmel_usba_udc.*
Haavard Skinnemoen914a3f32007-10-10 02:29:43 -07001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185ATMEL WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001186M: Simon Kelley <simon@thekelleys.org.uk>
Johannes Berg724c6b32007-04-23 12:18:20 -07001187L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188W: http://www.thekelleys.org.uk/atmel
1189W: http://atmelwlandriver.sourceforge.net/
1190S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001191F: drivers/net/wireless/atmel*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Chris Wrighta92b7b82005-07-07 18:12:23 -07001193AUDIT SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001194M: Al Viro <viro@zeniv.linux.org.uk>
1195M: Eric Paris <eparis@redhat.com>
Gabriel Cb9a06202007-08-10 13:00:56 -07001196L: linux-audit@redhat.com (subscribers-only)
David Woodhousead3f9a22005-07-13 15:28:29 +01001197W: http://people.redhat.com/sgrubb/audit/
Joe Perches54e58812009-04-07 21:08:10 -07001198T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
Chris Wrighta92b7b82005-07-07 18:12:23 -07001199S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001200F: include/linux/audit.h
1201F: kernel/audit*
Chris Wrighta92b7b82005-07-07 18:12:23 -07001202
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001203AUXILIARY DISPLAY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001204M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001205W: http://miguelojeda.es/auxdisplay.htm
1206W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001208F: drivers/auxdisplay/
1209F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001210
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001211AVR32 ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001212M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001213W: http://www.atmel.com/products/AVR32/
1214W: http://avr32linux.org/
1215W: http://avrfreaks.net/
1216S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001217F: arch/avr32/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001218
1219AVR32/AT32AP MACHINE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001220M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001221S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001222F: arch/avr32/mach-at32ap/
Haavard Skinnemoen5f97f7f2006-09-25 23:32:13 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224AX.25 NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001225M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02001227W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001229F: include/linux/ax25.h
1230F: include/net/ax25.h
1231F: net/ax25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001233B43 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001234M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001235L: linux-wireless@vger.kernel.org
1236W: http://linuxwireless.org/en/users/Drivers/b43
1237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001238F: drivers/net/wireless/b43/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001239
1240B43LEGACY WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001241M: Larry Finger <Larry.Finger@lwfinger.net>
1242M: Stefano Brivio <stefano.brivio@polimi.it>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001243L: linux-wireless@vger.kernel.org
1244W: http://linuxwireless.org/en/users/Drivers/b43
1245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001246F: drivers/net/wireless/b43legacy/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001247
Richard Purdie300abeb2007-02-07 22:21:07 +00001248BACKLIGHT CLASS/SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001249M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie300abeb2007-02-07 22:21:07 +00001250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001251F: drivers/video/backlight/
1252F: include/linux/backlight.h
Richard Purdie300abeb2007-02-07 22:21:07 +00001253
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001254BAYCOM/HDLCDRV DRIVERS FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001255M: Thomas Sailer <t.sailer@alumni.ethz.ch>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001256L: linux-hams@vger.kernel.org
1257W: http://www.baycom.org/~tom/ham/ham.html
1258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001259F: drivers/net/hamradio/baycom*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001260
1261BEFS FILE SYSTEM
Joe Perches55817d32010-08-09 17:20:52 -07001262S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001263F: Documentation/filesystems/befs.txt
1264F: fs/befs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001265
1266BFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001267M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001268S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001269F: Documentation/filesystems/bfs.txt
1270F: fs/bfs/
1271F: include/linux/bfs_fs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001272
Bryan Wu1394f032007-05-06 14:50:22 -07001273BLACKFIN ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001274M: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger5b93e132009-02-04 16:49:45 +08001275L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001276W: http://blackfin.uclinux.org
1277S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001278F: arch/blackfin/
Bryan Wu1394f032007-05-06 14:50:22 -07001279
Bryan Wue190d6b2007-07-17 14:43:44 +08001280BLACKFIN EMAC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001281M: Michael Hennerich <michael.hennerich@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001282L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue190d6b2007-07-17 14:43:44 +08001283W: http://blackfin.uclinux.org
1284S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001285F: drivers/net/bfin_mac.*
Bryan Wue190d6b2007-07-17 14:43:44 +08001286
Mike Frysinger566da5b2007-06-11 15:31:30 +08001287BLACKFIN RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001288M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001289L: uclinux-dist-devel@blackfin.uclinux.org
Mike Frysinger566da5b2007-06-11 15:31:30 +08001290W: http://blackfin.uclinux.org
1291S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001292F: drivers/rtc/rtc-bfin.c
Mike Frysinger566da5b2007-06-11 15:31:30 +08001293
Mike Frysinger936ed492010-03-10 15:20:38 -08001294BLACKFIN SDH DRIVER
1295M: Cliff Cai <cliff.cai@analog.com>
1296L: uclinux-dist-devel@blackfin.uclinux.org
1297W: http://blackfin.uclinux.org
1298S: Supported
1299F: drivers/mmc/host/bfin_sdh.c
1300
Bryan Wu1394f032007-05-06 14:50:22 -07001301BLACKFIN SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001302M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001303L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wue3b2d3f2007-06-11 15:31:30 +08001304W: http://blackfin.uclinux.org
1305S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001306F: drivers/serial/bfin_5xx.c
Bryan Wu1394f032007-05-06 14:50:22 -07001307
Bryan Wu1e6d3202007-07-15 02:50:02 +08001308BLACKFIN WATCHDOG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001309M: Mike Frysinger <vapier.adi@gmail.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001310L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wu1e6d3202007-07-15 02:50:02 +08001311W: http://blackfin.uclinux.org
1312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001313F: drivers/watchdog/bfin_wdt.c
Bryan Wu1e6d3202007-07-15 02:50:02 +08001314
Bryan Wud24ecfc2007-05-01 23:26:32 +02001315BLACKFIN I2C TWI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001316M: Sonic Zhang <sonic.zhang@analog.com>
Mike Frysinger49afa602009-05-18 04:33:07 -04001317L: uclinux-dist-devel@blackfin.uclinux.org
Bryan Wud24ecfc2007-05-01 23:26:32 +02001318W: http://blackfin.uclinux.org/
1319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001320F: drivers/i2c/busses/i2c-bfin-twi.c
Bryan Wud24ecfc2007-05-01 23:26:32 +02001321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322BLOCK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07001323M: Jens Axboe <axboe@kernel.dk>
Joe Perches54e58812009-04-07 21:08:10 -07001324T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001326F: block/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Joern Engel2b54aae2008-02-06 01:38:02 -08001328BLOCK2MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001329M: Joern Engel <joern@lazybastard.org>
Joern Engel2b54aae2008-02-06 01:38:02 -08001330L: linux-mtd@lists.infradead.org
1331S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001332F: drivers/mtd/devices/block2mtd.c
Joern Engel2b54aae2008-02-06 01:38:02 -08001333
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001334BLUETOOTH DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001335M: Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001336L: linux-bluetooth@vger.kernel.org
1337W: http://www.bluez.org/
1338S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001339F: drivers/bluetooth/
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341BLUETOOTH SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001342M: Marcel Holtmann <marcel@holtmann.org>
Pavel Machek781c2842008-03-20 15:41:02 -07001343L: linux-bluetooth@vger.kernel.org
Marcel Holtmann63fbd242008-08-18 13:23:53 +02001344W: http://www.bluez.org/
Joe Perches54e58812009-04-07 21:08:10 -07001345T: git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001347F: net/bluetooth/
1348F: include/net/bluetooth/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350BONDING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001351M: Jay Vosburgh <fubar@us.ibm.com>
Jim Cromiece00f852006-11-30 04:49:44 +01001352L: bonding-devel@lists.sourceforge.net
1353W: http://sourceforge.net/projects/bonding/
1354S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001355F: drivers/net/bonding/
1356F: include/linux/if_bonding.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Gary Zambrano39105892006-06-22 17:26:20 -07001358BROADCOM B44 10/100 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001359M: Gary Zambrano <zambrano@broadcom.com>
Gary Zambrano39105892006-06-22 17:26:20 -07001360L: netdev@vger.kernel.org
1361S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001362F: drivers/net/b44.*
Gary Zambrano39105892006-06-22 17:26:20 -07001363
Michael Chan948c51e2006-06-04 02:51:39 -07001364BROADCOM BNX2 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001365M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001366L: netdev@vger.kernel.org
1367S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001368F: drivers/net/bnx2.*
1369F: drivers/net/bnx2_*
Michael Chan948c51e2006-06-04 02:51:39 -07001370
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001371BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001372M: Eilon Greenstein <eilong@broadcom.com>
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001373L: netdev@vger.kernel.org
1374S: Supported
Dmitry Kravkov49efec12010-07-27 12:37:58 +00001375F: drivers/net/bnx2x/
Eliezer Tamir4d9d2cb2008-02-28 11:59:10 -08001376
Michael Chan948c51e2006-06-04 02:51:39 -07001377BROADCOM TG3 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001378M: Matt Carlson <mcarlson@broadcom.com>
1379M: Michael Chan <mchan@broadcom.com>
Michael Chan948c51e2006-06-04 02:51:39 -07001380L: netdev@vger.kernel.org
1381S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001382F: drivers/net/tg3.*
Michael Chan948c51e2006-06-04 02:51:39 -07001383
Jing Huang7725ccf2009-09-23 17:46:15 -07001384BROCADE BFA FC SCSI DRIVER
Joe Perches455518e2009-11-11 14:26:10 -08001385M: Jing Huang <huangj@brocade.com>
1386L: linux-scsi@vger.kernel.org
1387S: Supported
1388F: drivers/scsi/bfa/
Jing Huang7725ccf2009-09-23 17:46:15 -07001389
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001390BSG (block layer generic sg v4 driver)
Joe Perches8b58be82009-07-29 15:04:30 -07001391M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001392L: linux-scsi@vger.kernel.org
1393S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001394F: block/bsg.c
1395F: include/linux/bsg.h
Jens Axboe5cdf7f72007-07-17 08:58:06 +02001396
Michael Bueschff1d5c22008-07-25 01:46:10 -07001397BT8XXGPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001398M: Michael Buesch <mb@bu3sch.de>
Michael Bueschff1d5c22008-07-25 01:46:10 -07001399W: http://bu3sch.de/btgpio.php
1400S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001401F: drivers/gpio/bt8xxgpio.c
Michael Bueschff1d5c22008-07-25 01:46:10 -07001402
Joe Percheseb1eb042009-01-21 10:49:16 -05001403BTRFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001404M: Chris Mason <chris.mason@oracle.com>
Joe Percheseb1eb042009-01-21 10:49:16 -05001405L: linux-btrfs@vger.kernel.org
1406W: http://btrfs.wiki.kernel.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001407Q: http://patchwork.kernel.org/project/linux-btrfs/list/
Joe Perches54e58812009-04-07 21:08:10 -07001408T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
Joe Percheseb1eb042009-01-21 10:49:16 -05001409S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001410F: Documentation/filesystems/btrfs.txt
1411F: fs/btrfs/
Joe Percheseb1eb042009-01-21 10:49:16 -05001412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413BTTV VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001414M: Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001415L: linux-media@vger.kernel.org
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001416W: http://linuxtv.org
Joe Perches54e58812009-04-07 21:08:10 -07001417T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Mauro Carvalho Chehab96b6aba2005-06-28 20:45:20 -07001418S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001419F: Documentation/video4linux/bttv/
1420F: drivers/media/video/bt8xx/bttv*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
David Howellsa5432f52009-04-20 15:46:45 +01001422CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07001423M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01001424L: linux-cachefs@redhat.com
1425S: Supported
1426F: Documentation/filesystems/caching/cachefiles.txt
1427F: fs/cachefiles/
1428
Jonathan Corbet77d51402007-03-22 19:44:17 -03001429CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001430M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001431L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001432T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03001433S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001434F: Documentation/video4linux/cafe_ccic
1435F: drivers/media/video/cafe_ccic*
Jonathan Corbet77d51402007-03-22 19:44:17 -03001436
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001437CALGARY x86-64 IOMMU
Joe Perches8b58be82009-07-29 15:04:30 -07001438M: Muli Ben-Yehuda <muli@il.ibm.com>
1439M: "Jon D. Mason" <jdmason@kudzu.us>
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001440L: discuss@x86-64.org
1441S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001442F: arch/x86/kernel/pci-calgary_64.c
1443F: arch/x86/kernel/tce_64.c
1444F: arch/x86/include/asm/calgary.h
1445F: arch/x86/include/asm/tce.h
Muli Ben-Yehuda77dac902006-07-10 17:06:12 +02001446
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001447CAN NETWORK LAYER
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001448M: Oliver Hartkopp <socketcan@hartkopp.net>
Joe Perches8b58be82009-07-29 15:04:30 -07001449M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001450M: Urs Thuermann <urs.thuermann@volkswagen.de>
1451L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001452L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001453W: http://developer.berlios.de/projects/socketcan/
1454S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001455F: net/can/
Joe Perches679655d2009-04-07 20:44:32 -07001456F: include/linux/can.h
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001457F: include/linux/can/core.h
1458F: include/linux/can/bcm.h
1459F: include/linux/can/raw.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001460
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001461CAN NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001462M: Wolfgang Grandegger <wg@grandegger.com>
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001463L: socketcan-core@lists.berlios.de
Wolfgang Grandegger42d38042010-03-08 12:51:41 -08001464L: netdev@vger.kernel.org
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001465W: http://developer.berlios.de/projects/socketcan/
1466S: Maintained
Oliver Hartkopp8d15d382010-03-06 08:31:50 +00001467F: drivers/net/can/
1468F: include/linux/can/dev.h
1469F: include/linux/can/error.h
1470F: include/linux/can/netlink.h
1471F: include/linux/can/platform/
Wolfgang Grandegger4261a202009-05-15 23:39:28 +00001472
Arnd Bergmannb8154542008-05-16 11:10:59 +02001473CELL BROADBAND ENGINE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07001474M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmannb8154542008-05-16 11:10:59 +02001475L: linuxppc-dev@ozlabs.org
1476L: cbe-oss-dev@ozlabs.org
1477W: http://www.ibm.com/developerworks/power/cell/
1478S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001479F: arch/powerpc/include/asm/cell*.h
Joe Perches679655d2009-04-07 20:44:32 -07001480F: arch/powerpc/include/asm/spu*.h
1481F: arch/powerpc/oprofile/*cell*
1482F: arch/powerpc/platforms/cell/
Arnd Bergmannb8154542008-05-16 11:10:59 +02001483
Sage Weil9030aaf2009-10-06 11:31:15 -07001484CEPH DISTRIBUTED FILE SYSTEM CLIENT
1485M: Sage Weil <sage@newdream.net>
Sage Weil82593f82010-03-29 09:53:23 -07001486L: ceph-devel@vger.kernel.org
Sage Weil9030aaf2009-10-06 11:31:15 -07001487W: http://ceph.newdream.net/
Sage Weilfb99f882009-12-03 15:04:08 -08001488T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
Sage Weil9030aaf2009-10-06 11:31:15 -07001489S: Supported
1490F: Documentation/filesystems/ceph.txt
1491F: fs/ceph
1492
David Vrabel18332a82008-09-17 16:34:44 +01001493CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07001494M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01001495L: linux-usb@vger.kernel.org
1496S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001497F: Documentation/usb/WUSB-Design-overview.txt
1498F: Documentation/usb/wusb-cbaf
David Vrabel355ffe62009-12-22 13:13:28 +00001499F: drivers/usb/host/hwa-hc.c
1500F: drivers/usb/host/whci/
Joe Perches679655d2009-04-07 20:44:32 -07001501F: drivers/usb/wusbcore/
1502F: include/linux/usb/wusb*
David Vrabel18332a82008-09-17 16:34:44 +01001503
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001504CFAG12864B LCD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001505M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001506W: http://miguelojeda.es/auxdisplay.htm
1507W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001508S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001509F: drivers/auxdisplay/cfag12864b.c
1510F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001511
1512CFAG12864BFB LCD FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001513M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07001514W: http://miguelojeda.es/auxdisplay.htm
1515W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001516S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001517F: drivers/auxdisplay/cfag12864bfb.c
1518F: include/linux/cfag12864b.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08001519
Johannes Berg704232c2007-04-23 12:20:05 -07001520CFG80211 and NL80211
Joe Perches8b58be82009-07-29 15:04:30 -07001521M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg704232c2007-04-23 12:20:05 -07001522L: linux-wireless@vger.kernel.org
1523S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001524F: include/linux/nl80211.h
1525F: include/net/cfg80211.h
1526F: net/wireless/*
1527X: net/wireless/wext*
Johannes Berg704232c2007-04-23 12:20:05 -07001528
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001529CHECKPATCH
Joe Perches8b58be82009-07-29 15:04:30 -07001530M: Andy Whitcroft <apw@canonical.com>
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001531S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001532F: scripts/checkpatch.pl
Andy Whitcroft0a920b52007-06-01 00:46:48 -07001533
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001534CISCO VIC ETHERNET NIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001535M: Scott Feldman <scofeldm@cisco.com>
Vasanthy Kolluri641cb852010-03-18 16:20:04 +00001536M: Vasanthy Kolluri <vkolluri@cisco.com>
1537M: Roopa Prabhu <roprabhu@cisco.com>
Joel Becker7063fbf2005-12-15 14:29:43 -08001538S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001539F: drivers/net/enic/
Joel Becker7063fbf2005-12-15 14:29:43 -08001540
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001541CIRRUS LOGIC EP93XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001542M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001543L: netdev@vger.kernel.org
1544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001545F: drivers/net/arm/ep93xx_eth.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001546
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001547CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001548M: Lennert Buytenhek <kernel@wantstofly.org>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07001549L: linux-usb@vger.kernel.org
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001551F: drivers/usb/host/ohci-ep93xx.c
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08001552
Timur Tabid9e9d822008-04-24 08:45:26 +10001553CIRRUS LOGIC CS4270 SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001554M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07001555L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10001556S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001557F: sound/soc/codecs/cs4270*
Timur Tabid9e9d822008-04-24 08:45:26 +10001558
Russell Kingd4275352009-04-16 14:05:27 +01001559CLK API
Joe Perches8b58be82009-07-29 15:04:30 -07001560M: Russell King <linux@arm.linux.org.uk>
Russell Kingd4275352009-04-16 14:05:27 +01001561F: include/linux/clk.h
1562
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001563CISCO FCOE HBA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001564M: Abhijeet Joglekar <abjoglek@cisco.com>
1565M: Joe Eykholt <jeykholt@cisco.com>
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001566L: linux-scsi@vger.kernel.org
1567S: Supported
Joe Perches2a999212009-06-16 15:34:09 -07001568F: drivers/scsi/fnic/
Abhijeet Joglekar5df6d732009-04-17 18:33:26 -07001569
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001570CMPC ACPI DRIVER
1571M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
1572M: Daniel Oliveira Nascimento <don@syst.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05001573L: platform-driver-x86@vger.kernel.org
Thadeu Lima de Souza Cascardo529aa8c2009-12-21 16:20:01 -08001574S: Supported
1575F: drivers/platform/x86/classmate-laptop.c
1576
Nicolas Palix74425ee2010-06-06 17:15:01 +02001577COCCINELLE/Semantic Patches (SmPL)
1578M: Julia Lawall <julia@diku.dk>
1579M: Gilles Muller <Gilles.Muller@lip6.fr>
1580M: Nicolas Palix <npalix@diku.dk>
1581L: cocci@diku.dk (moderated for non-subscribers)
1582W: http://coccinelle.lip6.fr/
1583S: Supported
1584F: scripts/coccinelle/
1585F: scripts/coccicheck
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587CODA FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001588M: Jan Harkes <jaharkes@cs.cmu.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589M: coda@cs.cmu.edu
1590L: codalist@coda.cs.cmu.edu
1591W: http://www.coda.cs.cmu.edu/
1592S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001593F: Documentation/filesystems/coda.txt
1594F: fs/coda/
1595F: include/linux/coda*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001597COMMON INTERNET FILE SYSTEM (CIFS)
Joe Perches8b58be82009-07-29 15:04:30 -07001598M: Steve French <sfrench@samba.org>
Jeff Layton51223df2010-06-06 08:05:58 -04001599L: linux-cifs@vger.kernel.org
KOSAKI Motohirod1f28952009-12-14 18:00:52 -08001600L: samba-technical@lists.samba.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001601W: http://linux-cifs.samba.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08001602Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
Joe Perches54e58812009-04-07 21:08:10 -07001603T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001604S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001605F: Documentation/filesystems/cifs.txt
1606F: fs/cifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608COMPACTPCI HOTPLUG CORE
Joe Perches8b58be82009-07-29 15:04:30 -07001609M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001610L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001611S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001612F: drivers/pci/hotplug/cpci_hotplug*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001615M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001616L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001617S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001618F: drivers/pci/hotplug/cpcihp_zt5550.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620COMPACTPCI HOTPLUG GENERIC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001621M: Scott Murray <scott@spiteful.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07001622L: linux-pci@vger.kernel.org
Joe Perches82c4dfc2009-07-29 15:04:27 -07001623S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001624F: drivers/pci/hotplug/cpcihp_generic.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001626COMPAL LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07001627M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05001628L: platform-driver-x86@vger.kernel.org
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001629S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001630F: drivers/platform/x86/compal-laptop.c
Cezary Jackiewicz54115522008-06-09 16:22:22 -07001631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632COMPUTONE INTELLIPORT MULTIPORT CARD
Joe Perches8b58be82009-07-29 15:04:30 -07001633M: "Michael H. Warfield" <mhw@wittsend.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634W: http://www.wittsend.com/computone.html
Adrian Bunk07d46de2005-06-25 14:59:13 -07001635S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001636F: Documentation/serial/computone.txt
1637F: drivers/char/ip2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Simon Arlott949be0f2007-03-06 02:47:46 -08001639CONEXANT ACCESSRUNNER USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001640M: Simon Arlott <cxacru@fire.lp0.eu>
Simon Arlott9ae5e3b2007-05-09 08:38:10 +02001641L: accessrunner-general@lists.sourceforge.net
1642W: http://accessrunner.sourceforge.net/
Simon Arlott949be0f2007-03-06 02:47:46 -08001643S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001644F: drivers/usb/atm/cxacru.c
Simon Arlott949be0f2007-03-06 02:47:46 -08001645
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001646CONFIGFS
Joe Perches8b58be82009-07-29 15:04:30 -07001647M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001648S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001649F: fs/configfs/
1650F: include/linux/configfs.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001651
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001652CONNECTOR
Joe Perches8b58be82009-07-29 15:04:30 -07001653M: Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakovacb9c1b2009-07-21 12:43:51 -07001654L: netdev@vger.kernel.org
1655S: Maintained
1656F: drivers/connector/
1657
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001658CONTROL GROUPS (CGROUPS)
Joe Perches8b58be82009-07-29 15:04:30 -07001659M: Paul Menage <menage@google.com>
1660M: Li Zefan <lizf@cn.fujitsu.com>
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001661L: containers@lists.linux-foundation.org
1662S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001663F: include/linux/cgroup*
1664F: kernel/cgroup*
Randy Dunlap8ca739e2009-06-17 16:26:32 -07001665F: mm/*cgroup*
Paul Menagefb3a0fb2008-03-04 14:28:28 -08001666
Rudolf Marekbebe4672007-05-08 17:22:02 +02001667CORETEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001668M: Rudolf Marek <r.marek@assembler.cz>
Huaxu Wan57784df2009-10-24 13:28:45 +02001669M: Huaxu Wan <huaxu.wan@intel.com>
Rudolf Marekbebe4672007-05-08 17:22:02 +02001670L: lm-sensors@lm-sensors.org
1671S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001672F: Documentation/hwmon/coretemp
1673F: drivers/hwmon/coretemp.c
Rudolf Marekbebe4672007-05-08 17:22:02 +02001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675COSA/SRP SYNC SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001676M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677W: http://www.fi.muni.cz/~kas/cosa/
1678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001679F: drivers/net/wan/cosa*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Florian Fainelli4371ee32009-06-01 02:43:17 -07001681CPMAC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001682M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli4371ee32009-06-01 02:43:17 -07001683L: netdev@vger.kernel.org
1684S: Maintained
1685F: drivers/net/cpmac.c
1686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687CPU FREQUENCY DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07001688M: Dave Jones <davej@redhat.com>
Dave Jonesbc5f65d2008-07-31 18:22:59 -04001689L: cpufreq@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690W: http://www.codemonkey.org.uk/projects/cpufreq/
Joe Perches54e58812009-04-07 21:08:10 -07001691T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001693F: arch/x86/kernel/cpu/cpufreq/
1694F: drivers/cpufreq/
1695F: include/linux/cpufreq.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697CPUID/MSR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001698M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001700F: arch/x86/kernel/cpuid.c
1701F: arch/x86/kernel/msr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Paul Jacksoned90fb42005-09-27 21:45:37 -07001703CPUSETS
Joe Perches8b58be82009-07-29 15:04:30 -07001704M: Paul Menage <menage@google.com>
Paul Jacksoned90fb42005-09-27 21:45:37 -07001705W: http://www.bullopensource.org/cpuset/
Paul Jackson551e1722008-06-12 15:21:31 -07001706W: http://oss.sgi.com/projects/cpusets/
Paul Jacksoned90fb42005-09-27 21:45:37 -07001707S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001708F: Documentation/cgroups/cpusets.txt
1709F: include/linux/cpuset.h
1710F: kernel/cpuset.c
Paul Jacksoned90fb42005-09-27 21:45:37 -07001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712CRAMFS FILESYSTEM
Jim Cromiece00f852006-11-30 04:49:44 +01001713W: http://sourceforge.net/projects/cramfs/
1714S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001715F: Documentation/filesystems/cramfs.txt
1716F: fs/cramfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718CRIS PORT
Joe Perches8b58be82009-07-29 15:04:30 -07001719M: Mikael Starvik <starvik@axis.com>
1720M: Jesper Nilsson <jesper.nilsson@axis.com>
Jesper Nilsson9937ac02009-06-24 09:33:19 +02001721L: linux-cris-kernel@axis.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722W: http://developer.axis.com
1723S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001724F: arch/cris/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726CRYPTO API
Joe Perches8b58be82009-07-29 15:04:30 -07001727M: Herbert Xu <herbert@gondor.apana.org.au>
1728M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729L: linux-crypto@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001730T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001732F: Documentation/crypto/
1733F: arch/*/crypto/
1734F: crypto/
1735F: drivers/crypto/
1736F: include/crypto/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Neil Horman5b07bd52009-02-05 16:03:04 +11001738CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
Joe Perches8b58be82009-07-29 15:04:30 -07001739M: Neil Horman <nhorman@tuxdriver.com>
Neil Horman5b07bd52009-02-05 16:03:04 +11001740L: linux-crypto@vger.kernel.org
1741S: Maintained
Joe Perches51a22282010-08-09 17:20:45 -07001742F: crypto/ansi_cprng.c
1743F: crypto/rng.c
Neil Horman5b07bd52009-02-05 16:03:04 +11001744
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001745CS5535 Audio ALSA driver
Joe Perches8b58be82009-07-29 15:04:30 -07001746M: Jaya Kumar <jayakumar.alsa@gmail.com>
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001747S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001748F: sound/pci/cs5535audio/
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001749
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001750CX18 VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03001751M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02001752L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03001753L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07001754T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001755W: http://linuxtv.org
Joe Perches30e10992009-07-29 15:04:21 -07001756W: http://www.ivtvdriver.org/index.php/Cx18
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001758F: Documentation/video4linux/cx18.txt
1759F: drivers/media/video/cx18/
Hans Verkuil6d8425b2008-05-05 18:25:22 -03001760
Steve Wisee5ec3782008-05-20 14:06:33 -07001761CXGB3 ETHERNET DRIVER (CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001762M: Divy Le Ray <divy@chelsio.com>
Steve Wisee5ec3782008-05-20 14:06:33 -07001763L: netdev@vger.kernel.org
1764W: http://www.chelsio.com
1765S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001766F: drivers/net/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001767
1768CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
Joe Perches8b58be82009-07-29 15:04:30 -07001769M: Steve Wise <swise@chelsio.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07001770L: linux-rdma@vger.kernel.org
Steve Wisee5ec3782008-05-20 14:06:33 -07001771W: http://www.openfabrics.org
1772S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001773F: drivers/infiniband/hw/cxgb3/
Steve Wisee5ec3782008-05-20 14:06:33 -07001774
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07001775CXGB4 ETHERNET DRIVER (CXGB4)
1776M: Dimitris Michailidis <dm@chelsio.com>
1777L: netdev@vger.kernel.org
1778W: http://www.chelsio.com
1779S: Supported
1780F: drivers/net/cxgb4/
1781
1782CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
1783M: Steve Wise <swise@chelsio.com>
1784L: linux-rdma@vger.kernel.org
1785W: http://www.openfabrics.org
1786S: Supported
1787F: drivers/infiniband/hw/cxgb4/
1788
Casey Leedom5c20a5c2010-07-19 17:55:33 -07001789CXGB4VF ETHERNET DRIVER (CXGB4VF)
1790M: Casey Leedom <leedom@chelsio.com>
1791L: netdev@vger.kernel.org
1792W: http://www.chelsio.com
1793S: Supported
1794F: drivers/net/cxgb4vf/
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796CYBERPRO FB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001797M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07001798L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799W: http://www.arm.linux.org.uk/
1800S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001801F: drivers/video/cyber2000fb.*
Knut Petersen9fa68ea2005-09-09 13:04:56 -07001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803CYCLADES 2X SYNC CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001804M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03001805W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001807F: drivers/net/wan/cycx*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809CYCLADES ASYNC MUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001811S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001812F: drivers/char/cyclades.c
1813F: include/linux/cyclades.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815CYCLADES PC300 DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816W: http://www.cyclades.com/
Jiri Slabyd4598832007-02-12 00:51:53 -08001817S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001818F: drivers/net/wan/pc300*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820DAMA SLAVE for AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07001821M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822W: http://yaina.de/jreuter/
1823W: http://www.qsl.net/dl1bke/
1824L: linux-hams@vger.kernel.org
1825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001826F: net/ax25/af_ax25.c
1827F: net/ax25/ax25_dev.c
1828F: net/ax25/ax25_ds_*
1829F: net/ax25/ax25_in.c
1830F: net/ax25/ax25_out.c
1831F: net/ax25/ax25_timer.c
1832F: net/ax25/sysctl_net_ax25.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001834DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001835M: Tobias Ringstrom <tori@unhappy.mine.nu>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001836L: netdev@vger.kernel.org
1837S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001838F: Documentation/networking/dmfe.txt
1839F: drivers/net/tulip/dmfe.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001840
1841DC390/AM53C974 SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001842M: Kurt Garloff <garloff@suse.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001843W: http://www.garloff.de/kurt/linux/dc390/
Joe Perches8b58be82009-07-29 15:04:30 -07001844M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001845S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001846F: drivers/scsi/tmscsim.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848DC395x SCSI driver
Joe Perches8b58be82009-07-29 15:04:30 -07001849M: Oliver Neukum <oliver@neukum.name>
1850M: Ali Akcaagac <aliakc@web.de>
1851M: Jamie Lenehan <lenehan@twibble.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852W: http://twibble.org/dist/dc395x/
Randy Dunlapf5df58812006-07-14 00:24:29 -07001853L: dc395x@twibble.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854L: http://lists.twibble.org/mailman/listinfo/dc395x/
1855S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001856F: Documentation/scsi/dc395x.txt
1857F: drivers/scsi/dc395x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001859DCCP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07001860M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001861L: dccp@vger.kernel.org
Ian McDonaldf3b84ec2005-11-10 13:05:01 -08001862W: http://linux-net.osdl.org/index.php/DCCP
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001863S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001864F: include/linux/dccp.h
1865F: include/linux/tfrc.h
1866F: net/dccp/
Arnaldo Carvalho de Meloeb8edb02005-09-17 00:42:26 -07001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868DECnet NETWORK LAYER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869W: http://linux-decnet.sourceforge.net
1870L: linux-decnet-user@lists.sourceforge.net
Chrissie Caulfieldf5464442010-02-18 01:33:13 +00001871S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001872F: Documentation/networking/decnet.txt
1873F: net/decnet/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875DEFXX FDDI NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001876M: "Maciej W. Rozycki" <macro@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001878F: drivers/net/defxx.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001880DELL LAPTOP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001881M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05001882L: platform-driver-x86@vger.kernel.org
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001883S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001884F: drivers/platform/x86/dell-laptop.c
Matthew Garrettad8f07c2009-01-07 18:08:56 -08001885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886DELL LAPTOP SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001887M: Massimo Dal Zotto <dz@debian.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888W: http://www.debian.org/~dz/i8k/
1889S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001890F: drivers/char/i8k.c
1891F: include/linux/i8k.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Doug Warzecha90563ec2005-09-06 15:17:15 -07001893DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
Joe Perches8b58be82009-07-29 15:04:30 -07001894M: Doug Warzecha <Douglas_Warzecha@dell.com>
Doug Warzecha90563ec2005-09-06 15:17:15 -07001895S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001896F: Documentation/dcdbas.txt
1897F: drivers/firmware/dcdbas.*
Doug Warzecha90563ec2005-09-06 15:17:15 -07001898
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001899DELL WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001900M: Matthew Garrett <mjg59@srcf.ucam.org>
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001901S: Maintained
Joe Perches36b3a962010-08-09 17:20:46 -07001902F: drivers/platform/x86/dell-wmi.c
Matthew Garrett0b3f6102009-01-09 20:17:11 +00001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904DEVICE NUMBER REGISTRY
Joe Perches8b58be82009-07-29 15:04:30 -07001905M: Torben Mathiasen <device@lanana.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906W: http://lanana.org/docs/device-list/index.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907S: Maintained
1908
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001909DEVICE-MAPPER (LVM)
1910P: Alasdair Kergon
1911L: dm-devel@redhat.com
1912W: http://sources.redhat.com/dm
Joe Perches8a6e2532010-03-05 13:43:11 -08001913Q: http://patchwork.kernel.org/project/dm-devel/list/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001914S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001915F: Documentation/device-mapper/
1916F: drivers/md/dm*
1917F: include/linux/device-mapper.h
1918F: include/linux/dm-*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920DIGI INTL. EPCA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001921M: "Digi International, Inc" <Eng.Linux@digi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922L: Eng.Linux@digi.com
1923W: http://www.digi.com
Jean Delvarebaaea1d2008-09-20 12:34:33 +02001924S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07001925F: Documentation/serial/digiepca.txt
1926F: drivers/char/epca*
1927F: drivers/char/digi*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Randy Dunlape7839f22008-10-12 16:11:45 -07001929DIRECTORY NOTIFICATION (DNOTIFY)
Joe Perches8b58be82009-07-29 15:04:30 -07001930M: Eric Paris <eparis@parisplace.org>
Eric Paris3c5119c2009-05-21 17:01:33 -04001931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001932F: Documentation/filesystems/dnotify.txt
1933F: fs/notify/dnotify/
1934F: include/linux/dnotify.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936DISK GEOMETRY AND PARTITION HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07001937M: Andries Brouwer <aeb@cwi.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
1939W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
1940W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
1941S: Maintained
1942
Randy Dunlap4480f15b2008-10-12 16:11:58 -07001943DISKQUOTA
Joe Perches8b58be82009-07-29 15:04:30 -07001944M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001946F: Documentation/filesystems/quota.txt
1947F: fs/quota/
1948F: include/linux/quota*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Randy Dunlape7839f22008-10-12 16:11:45 -07001950DISTRIBUTED LOCK MANAGER (DLM)
Joe Perches8b58be82009-07-29 15:04:30 -07001951M: Christine Caulfield <ccaulfie@redhat.com>
1952M: David Teigland <teigland@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04001953L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001954W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07001955T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001956S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001957F: fs/dlm/
Steven Whitehouse5be7b502006-04-28 11:27:32 -04001958
Dan Williamsb3e5f262007-08-07 10:26:35 -07001959DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07001960M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsb3e5f262007-08-07 10:26:35 -07001961S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001962F: drivers/dma/
1963F: include/linux/dma*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07001964
Juerg Haefligerb8250372007-06-09 10:11:16 -04001965DME1737 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001966M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerb8250372007-06-09 10:11:16 -04001967L: lm-sensors@lm-sensors.org
1968S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001969F: Documentation/hwmon/dme1737
1970F: drivers/hwmon/dme1737.c
Juerg Haefligerb8250372007-06-09 10:11:16 -04001971
Martin Waitzba483d52005-06-17 13:20:59 -07001972DOCBOOK FOR DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001973M: Randy Dunlap <rdunlap@xenotime.net>
Martin Waitzba483d52005-06-17 13:20:59 -07001974S: Maintained
1975
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001976DOCKING STATION DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001977M: Shaohua Li <shaohua.li@intel.com>
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001978L: linux-acpi@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05001979S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07001980F: drivers/acpi/dock.c
Kristen Carlson Accardi5b9c9bf2006-07-26 13:59:00 -04001981
Joe Perches7d2c86b2009-04-07 20:59:01 -07001982DOCUMENTATION
Joe Perches8b58be82009-07-29 15:04:30 -07001983M: Randy Dunlap <rdunlap@xenotime.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02001984L: linux-doc@vger.kernel.org
1985S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001986F: Documentation/
Randy Dunlapabbaeff2008-07-04 09:59:57 -07001987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988DOUBLETALK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001989M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990L: blinux-list@redhat.com
1991S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07001992F: drivers/char/dtlk.c
1993F: include/linux/dtlk.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001995DPT_I2O SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07001996M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07001997L: linux-scsi@vger.kernel.org
1998W: http://www.adaptec.com/
1999S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002000F: drivers/scsi/dpt*
2001F: drivers/scsi/dpt/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002002
Philipp Reisnerb411b362009-09-25 16:07:19 -07002003DRBD DRIVER
Joe Perches28b8e8d2010-03-23 13:35:20 -07002004P: Philipp Reisner
2005P: Lars Ellenberg
2006M: drbd-dev@lists.linbit.com
2007L: drbd-user@lists.linbit.com
2008W: http://www.drbd.org
2009T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2010T: git git://git.drbd.org/drbd-8.3.git
2011S: Supported
2012F: drivers/block/drbd/
2013F: lib/lru_cache.c
2014F: Documentation/blockdev/drbd/
Philipp Reisnerb411b362009-09-25 16:07:19 -07002015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016DRIVER CORE, KOBJECTS, AND SYSFS
Joe Perches8b58be82009-07-29 15:04:30 -07002017M: Greg Kroah-Hartman <gregkh@suse.de>
Jody McIntyre6fb04252005-11-18 09:31:06 -08002018T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002020F: Documentation/kobject.txt
Joe Perches7cfc51b2009-04-08 10:04:18 -07002021F: drivers/base/
Joe Perches679655d2009-04-07 20:44:32 -07002022F: fs/sysfs/
2023F: include/linux/kobj*
2024F: lib/kobj*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026DRM DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002027M: David Airlie <airlied@linux.ie>
Valdis.Kletnieks@vt.edu4c6a3992010-04-22 14:29:10 -04002028L: dri-devel@lists.freedesktop.org
Joe Perches54e58812009-04-07 21:08:10 -07002029T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002031F: drivers/gpu/drm/
Joe Perches850e9412010-08-09 17:20:45 -07002032F: include/drm/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034DSCC4 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002035M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08002036L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002038F: drivers/net/wan/dscc4.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002040DZ DECSTATION DZ11 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002041M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002042S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002043F: drivers/serial/dz.*
Maciej W. Rozycki789c7042008-02-07 00:15:13 -08002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045EATA-DMA SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002046M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002047L: linux-eata@i-connect.net
2048L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002050F: drivers/scsi/eata*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052EATA ISA/EISA/PCI SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002053M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054L: linux-scsi@vger.kernel.org
2055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002056F: drivers/scsi/eata.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058EATA-PIO SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002059M: Michael Neuffer <mike@i-Connect.Net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07002060L: linux-eata@i-connect.net
2061L: linux-scsi@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002063F: drivers/scsi/eata_pio.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065EBTABLES
Joe Perches8b58be82009-07-29 15:04:30 -07002066M: Bart De Schuymer <bart.de.schuymer@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067L: ebtables-user@lists.sourceforge.net
2068L: ebtables-devel@lists.sourceforge.net
2069W: http://ebtables.sourceforge.net/
2070S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002071F: include/linux/netfilter_bridge/ebt_*.h
2072F: net/bridge/netfilter/ebt*.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Michael Halcrow237fead2006-10-04 02:16:22 -07002074ECRYPT FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002075M: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
2076M: Dustin Kirkland <kirkland@canonical.com>
Michael Halcrow6dc75162008-12-15 13:54:17 -08002077L: ecryptfs-devel@lists.launchpad.net
2078W: https://launchpad.net/ecryptfs
Michael Halcrow237fead2006-10-04 02:16:22 -07002079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002080F: Documentation/filesystems/ecryptfs.txt
2081F: fs/ecryptfs/
Michael Halcrow237fead2006-10-04 02:16:22 -07002082
Alan Coxda9bb1d2006-01-18 17:44:13 -08002083EDAC-CORE
Joe Perches8b58be82009-07-29 15:04:30 -07002084M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002085L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002086W: bluesmoke.sourceforge.net
Doug Thompson8c2a6a42006-06-30 01:56:09 -07002087S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002088F: Documentation/edac.txt
2089F: drivers/edac/edac_*
2090F: include/linux/edac.h
Dave Peterson0e438e32006-03-26 01:38:55 -08002091
Borislav Petkovc476c232009-05-20 20:31:58 +02002092EDAC-AMD64
Joe Perches8b58be82009-07-29 15:04:30 -07002093M: Doug Thompson <dougthompson@xmission.com>
2094M: Borislav Petkov <borislav.petkov@amd.com>
Borislav Petkovc476c232009-05-20 20:31:58 +02002095L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
2096W: bluesmoke.sourceforge.net
2097S: Supported
2098F: drivers/edac/amd64_edac*
2099
Dave Peterson0e438e32006-03-26 01:38:55 -08002100EDAC-E752X
Joe Perches8b58be82009-07-29 15:04:30 -07002101M: Mark Gross <mark.gross@intel.com>
2102M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002103L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002104W: bluesmoke.sourceforge.net
2105S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002106F: drivers/edac/e752x_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002107
2108EDAC-E7XXX
Joe Perches8b58be82009-07-29 15:04:30 -07002109M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002110L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002111W: bluesmoke.sourceforge.net
2112S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002113F: drivers/edac/e7xxx_edac.c
Dave Peterson0e438e32006-03-26 01:38:55 -08002114
Douglas Thompson6bc78402007-07-19 01:50:12 -07002115EDAC-I82443BXGX
Joe Perches8b58be82009-07-29 15:04:30 -07002116M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002117L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002118W: bluesmoke.sourceforge.net
2119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002120F: drivers/edac/i82443bxgx_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002121
2122EDAC-I3000
Joe Perches8b58be82009-07-29 15:04:30 -07002123M: Jason Uhlenkott <juhlenko@akamai.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002124L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002125W: bluesmoke.sourceforge.net
2126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002127F: drivers/edac/i3000_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002128
2129EDAC-I5000
Joe Perches8b58be82009-07-29 15:04:30 -07002130M: Doug Thompson <dougthompson@xmission.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002131L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002132W: bluesmoke.sourceforge.net
2133S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002134F: drivers/edac/i5000_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002135
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002136EDAC-I5400
Joe Perches8b58be82009-07-29 15:04:30 -07002137M: Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002138L: linux-edac@vger.kernel.org
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002139W: bluesmoke.sourceforge.net
2140S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002141F: drivers/edac/i5400_edac.c
Mauro Carvalho Chehab44c12cb2009-01-15 13:50:49 -08002142
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002143EDAC-I7CORE
2144M: Mauro Carvalho Chehab <mchehab@redhat.com>
2145L: linux-edac@vger.kernel.org
2146W: bluesmoke.sourceforge.net
2147S: Maintained
Joe Perches70aff0c2010-07-12 17:45:49 -03002148F: drivers/edac/i7core_edac.c
2149F: drivers/edac/edac_mce.c
2150F: include/linux/edac_mce.h
Mauro Carvalho Chehab67c89312010-06-30 01:45:28 -03002151
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002152EDAC-I82975X
Joe Perches8b58be82009-07-29 15:04:30 -07002153M: Ranganathan Desikan <ravi@jetztechnologies.com>
2154M: "Arvind R." <arvind@jetztechnologies.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002155L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002156W: bluesmoke.sourceforge.net
2157S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002158F: drivers/edac/i82975x_edac.c
Douglas Thompsonba9a5912007-07-19 01:50:32 -07002159
2160EDAC-PASEMI
Joe Perches8b58be82009-07-29 15:04:30 -07002161M: Egor Martovetsky <egor@pasemi.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002162L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Douglas Thompson6bc78402007-07-19 01:50:12 -07002163W: bluesmoke.sourceforge.net
2164S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002165F: drivers/edac/pasemi_edac.c
Douglas Thompson6bc78402007-07-19 01:50:12 -07002166
Dave Peterson0e438e32006-03-26 01:38:55 -08002167EDAC-R82600
Joe Perches8b58be82009-07-29 15:04:30 -07002168M: Tim Small <tim@buttersideup.com>
Jean Delvare7b102d02009-04-13 14:40:02 -07002169L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
Dave Peterson0e438e32006-03-26 01:38:55 -08002170W: bluesmoke.sourceforge.net
2171S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002172F: drivers/edac/r82600_edac.c
Alan Coxda9bb1d2006-01-18 17:44:13 -08002173
Eric Coopere59f8792008-03-13 12:55:46 +01002174EEEPC LAPTOP EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002175M: Corentin Chary <corentincj@iksaif.net>
Eric Coopere59f8792008-03-13 12:55:46 +01002176L: acpi4asus-user@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05002177L: platform-driver-x86@vger.kernel.org
Corentin Chary76593d62009-06-16 19:28:47 +00002178W: http://acpi4asus.sf.net
Eric Coopere59f8792008-03-13 12:55:46 +01002179S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002180F: drivers/platform/x86/eeepc-laptop.c
Eric Coopere59f8792008-03-13 12:55:46 +01002181
Josh Triplett0bee8d22006-07-30 03:03:58 -07002182EFS FILESYSTEM
2183W: http://aeschi.ch.eu.org/efs/
2184S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002185F: fs/efs/
Josh Triplett0bee8d22006-07-30 03:03:58 -07002186
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002187EHCA (IBM GX bus InfiniBand adapter) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002188M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
2189M: Christoph Raisch <raisch@de.ibm.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002190L: linux-rdma@vger.kernel.org
Heiko J Schickfab97222006-09-22 15:22:22 -07002191S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002192F: drivers/infiniband/hw/ehca/
Heiko J Schickfab97222006-09-22 15:22:22 -07002193
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002194EMBEDDED LINUX
Joe Perches8b58be82009-07-29 15:04:30 -07002195M: Paul Gortmaker <paul.gortmaker@windriver.com>
2196M: Matt Mackall <mpm@selenic.com>
2197M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse3e3a7d62008-05-01 04:34:46 -07002198L: linux-embedded@vger.kernel.org
2199S: Maintained
2200
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002201EMULEX LPFC FC SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002202M: James Smart <james.smart@emulex.com>
Jim Cromiece00f852006-11-30 04:49:44 +01002203L: linux-scsi@vger.kernel.org
2204W: http://sourceforge.net/projects/lpfcxxxx
2205S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002206F: drivers/scsi/lpfc/
James.Smart@Emulex.Com3a1c1d42005-08-11 13:42:35 -04002207
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002208ENE CB710 FLASH CARD READER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002209M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Michał Mirosław5f5bac82009-05-22 20:33:59 +02002210S: Maintained
2211F: drivers/misc/cb710/
2212F: drivers/mmc/host/cb710-mmc.*
2213F: include/linux/cb710.h
2214
Maxim Levitsky931e39a2010-07-31 11:59:26 -03002215ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
2216M: Maxim Levitsky <maximlevitsky@gmail.com>
2217S: Maintained
2218F: drivers/media/IR/ene_ir.c
2219F: drivers/media/IR/ene_ir.h
2220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221EPSON 1355 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002222M: Christopher Hoover <ch@murgatroid.com>
2223M: Christopher Hoover <ch@hpl.hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002225F: drivers/video/epson1355fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002227EPSON S1D13XXX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002228M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002229S: Maintained
Kristoffer Ericson084bad92009-07-29 15:04:32 -07002230T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
Joe Perches679655d2009-04-07 20:44:32 -07002231F: drivers/video/s1d13xxxfb.c
2232F: include/video/s1d13xxxfb.h
Kristoffer Ericsond5ca9002008-10-15 22:03:54 -07002233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234ETHEREXPRESS-16 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002235M: Philip Blundell <philb@gnu.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07002236L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002238F: drivers/net/eexpress.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240ETHERNET BRIDGE
Joe Perches8b58be82009-07-29 15:04:30 -07002241M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07002242L: bridge@lists.linux-foundation.org
David S. Miller4c325312010-03-04 00:42:30 -08002243L: netdev@vger.kernel.org
Adrian Bunk57c511d2008-06-03 16:00:01 -07002244W: http://www.linux-foundation.org/en/Net:Bridge
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002246F: include/linux/netfilter_bridge/
2247F: net/bridge/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249ETHERTEAM 16I DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002250M: Mika Kuoppala <miku@iki.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002252F: drivers/net/eth16i.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254EXT2 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002255M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002256L: linux-ext4@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002258F: Documentation/filesystems/ext2.txt
2259F: fs/ext2/
2260F: include/linux/ext2*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262EXT3 FILE SYSTEM
Jan Kara01971952010-07-19 14:57:11 +02002263M: Jan Kara <jack@suse.cz>
Joe Perches8b58be82009-07-29 15:04:30 -07002264M: Andrew Morton <akpm@linux-foundation.org>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002265M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002266L: linux-ext4@vger.kernel.org
2267S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002268F: Documentation/filesystems/ext3.txt
2269F: fs/ext3/
2270F: include/linux/ext3*
Erik Mouw72be2cc2006-12-06 20:40:49 -08002271
2272EXT4 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002273M: "Theodore Ts'o" <tytso@mit.edu>
Andreas Dilger3c373a52010-07-19 14:55:38 +02002274M: Andreas Dilger <adilger.kernel@dilger.ca>
Erik Mouw72be2cc2006-12-06 20:40:49 -08002275L: linux-ext4@vger.kernel.org
Theodore Ts'o08a225f2008-10-06 20:58:09 -04002276W: http://ext4.wiki.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002277Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002279F: Documentation/filesystems/ext4.txt
2280F: fs/ext4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Jean Delvaree53004e2006-01-09 23:26:14 +01002282F71805F HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002283M: Jean Delvare <khali@linux-fr.org>
Jean Delvaree53004e2006-01-09 23:26:14 +01002284L: lm-sensors@lm-sensors.org
2285S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002286F: Documentation/hwmon/f71805f
2287F: drivers/hwmon/f71805f.c
Jean Delvaree53004e2006-01-09 23:26:14 +01002288
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289FARSYNC SYNCHRONOUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002290M: Kevin Curtis <kevin.curtis@farsite.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291W: http://www.farsite.co.uk/
2292S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002293F: drivers/net/wan/farsync.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Akinobu Mitac5408b82007-04-23 14:41:20 -07002295FAULT INJECTION SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002296M: Akinobu Mita <akinobu.mita@gmail.com>
Akinobu Mitac5408b82007-04-23 14:41:20 -07002297S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002298F: Documentation/fault-injection/
2299F: lib/fault-inject.c
Akinobu Mitac5408b82007-04-23 14:41:20 -07002300
Robert Lovecae727d2010-02-16 12:16:00 -08002301FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
2302M: Robert Love <robert.w.love@intel.com>
2303L: devel@open-fcoe.org
2304W: www.Open-FCoE.org
2305S: Supported
2306F: drivers/scsi/libfc/
2307F: drivers/scsi/fcoe/
2308F: include/scsi/fc/
2309F: include/scsi/libfc.h
2310F: include/scsi/libfcoe.h
2311
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002312FILE LOCKING (flock() and fcntl()/lockf())
Joe Perches8b58be82009-07-29 15:04:30 -07002313M: Matthew Wilcox <matthew@wil.cx>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002314L: linux-fsdevel@vger.kernel.org
2315S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002316F: include/linux/fcntl.h
2317F: include/linux/fs.h
2318F: fs/fcntl.c
2319F: fs/locks.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002320
2321FILESYSTEMS (VFS and infrastructure)
Joe Perches8b58be82009-07-29 15:04:30 -07002322M: Alexander Viro <viro@zeniv.linux.org.uk>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002323L: linux-fsdevel@vger.kernel.org
2324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002325F: fs/*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002326
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002327FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Jean Delvare05576a12009-10-09 20:35:19 +02002328M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002329L: lm-sensors@lm-sensors.org
2330S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07002331F: drivers/hwmon/f75375s.c
2332F: include/linux/f75375s.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02002333
Joe Perches7d2c86b2009-04-07 20:59:01 -07002334FIREWIRE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002335M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002336L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002337W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002338T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002339S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002340F: drivers/firewire/
2341F: include/linux/firewire*.h
Stefan Richter9f6d3c42010-07-22 11:58:05 +02002342F: tools/firewire/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002343
2344FIRMWARE LOADER (request_firmware)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002345S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002346F: Documentation/firmware_class/
2347F: drivers/base/firmware*.c
2348F: include/linux/firmware.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002349
2350FPU EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07002351M: Bill Metzenthen <billm@melbpc.org.au>
Joe Perchese7699802009-04-07 21:12:18 -07002352W: http://floatingpoint.sourceforge.net/emulator/index.html
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002354F: arch/x86/math-emu/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002355
2356FRAME RELAY DLCI/FRAD (Sangoma drivers too)
Joe Perches8b58be82009-07-29 15:04:30 -07002357M: Mike McLagan <mike.mclagan@linux.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002358L: netdev@vger.kernel.org
2359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002360F: drivers/net/wan/dlci.c
2361F: drivers/net/wan/sdla.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363FRAMEBUFFER LAYER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002364L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365W: http://linux-fbdev.sourceforge.net/
Andrew Morton36025a82009-06-17 16:25:56 -07002366S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002367F: Documentation/fb/
2368F: drivers/video/fb*
2369F: include/linux/fb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Zhang Wei173acc72008-03-01 07:42:48 -07002371FREESCALE DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002372M: Li Yang <leoli@freescale.com>
2373M: Zhang Wei <zw@zh-kernel.org>
Li Yang0899d632009-05-22 16:39:59 +08002374L: linuxppc-dev@ozlabs.org
Zhang Wei173acc72008-03-01 07:42:48 -07002375S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002376F: drivers/dma/fsldma.*
Zhang Wei173acc72008-03-01 07:42:48 -07002377
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002378FREESCALE I2C CPM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002379M: Jochen Friedrich <jochen@scram.de>
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002380L: linuxppc-dev@ozlabs.org
Jean Delvare846557d2008-10-30 15:55:47 +01002381L: linux-i2c@vger.kernel.org
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002382S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002383F: drivers/i2c/busses/i2c-cpm.c
Jochen Friedrich0d2b4052008-07-14 22:38:28 +02002384
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002385FREESCALE IMX / MXC FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002386M: Sascha Hauer <kernel@pengutronix.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002387L: linux-fbdev@vger.kernel.org
Joe Perchesefc03ec2009-09-21 17:04:27 -07002388L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002390F: arch/arm/plat-mxc/include/mach/imxfb.h
2391F: drivers/video/imxfb.c
Sascha Hauer60e8c5a2008-12-16 11:44:06 +01002392
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002393FREESCALE SOC FS_ENET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002394M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
2395M: Vitaly Bordug <vbordug@ru.mvista.com>
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002396L: linuxppc-dev@ozlabs.org
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002397L: netdev@vger.kernel.org
2398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002399F: drivers/net/fs_enet/
2400F: include/linux/fs_enet_pd.h
Pantelis Antoniou4689a6b2005-10-30 01:21:53 +03002401
Timur Tabid9e9d822008-04-24 08:45:26 +10002402FREESCALE QUICC ENGINE LIBRARY
Joe Perches8b58be82009-07-29 15:04:30 -07002403M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002404L: linuxppc-dev@ozlabs.org
2405S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002406F: arch/powerpc/sysdev/qe_lib/
2407F: arch/powerpc/include/asm/*qe.h
Timur Tabid9e9d822008-04-24 08:45:26 +10002408
Joe Perchesb55ef9292009-10-26 16:49:46 -07002409FREESCALE USB PERIPHERAL DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002410M: Li Yang <leoli@freescale.com>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07002411L: linux-usb@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002412L: linuxppc-dev@ozlabs.org
Li Yanga7205b32007-04-23 10:38:18 -07002413S: Maintained
Li Yang5429c732009-08-11 11:11:11 +08002414F: drivers/usb/gadget/fsl*
Li Yanga7205b32007-04-23 10:38:18 -07002415
Li Yangbeaf53b2007-05-25 13:54:02 +08002416FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002417M: Li Yang <leoli@freescale.com>
Li Yangbeaf53b2007-05-25 13:54:02 +08002418L: netdev@vger.kernel.org
Mark A. Greer88de3ca2007-10-02 10:24:08 +10002419L: linuxppc-dev@ozlabs.org
Li Yangbeaf53b2007-05-25 13:54:02 +08002420S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002421F: drivers/net/ucc_geth*
Li Yangbeaf53b2007-05-25 13:54:02 +08002422
Timur Tabid9e9d822008-04-24 08:45:26 +10002423FREESCALE QUICC ENGINE UCC UART DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002424M: Timur Tabi <timur@freescale.com>
Timur Tabid9e9d822008-04-24 08:45:26 +10002425L: linuxppc-dev@ozlabs.org
2426S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002427F: drivers/serial/ucc_uart.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002428
2429FREESCALE SOC SOUND DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002430M: Timur Tabi <timur@freescale.com>
Joe Perches93711662009-06-16 15:34:07 -07002431L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Timur Tabid9e9d822008-04-24 08:45:26 +10002432L: linuxppc-dev@ozlabs.org
2433S: Supported
Joe Perches69aefce2009-04-09 10:39:22 -07002434F: sound/soc/fsl/fsl*
2435F: sound/soc/fsl/mpc8610_hpcd.c
Timur Tabid9e9d822008-04-24 08:45:26 +10002436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437FREEVXFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002438M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
2440S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002441F: fs/freevxfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Pavel Machek71038f52009-01-15 13:51:02 -08002443FREEZER
Joe Perches8b58be82009-07-29 15:04:30 -07002444M: Pavel Machek <pavel@ucw.cz>
2445M: "Rafael J. Wysocki" <rjw@sisk.pl>
Pavel Machek71038f52009-01-15 13:51:02 -08002446L: linux-pm@lists.linux-foundation.org
2447S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002448F: Documentation/power/freezing-of-tasks.txt
2449F: include/linux/freezer.h
2450F: kernel/freezer.c
Pavel Machek71038f52009-01-15 13:51:02 -08002451
David Howellsa5432f52009-04-20 15:46:45 +01002452FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
Joe Perches8b58be82009-07-29 15:04:30 -07002453M: David Howells <dhowells@redhat.com>
David Howellsa5432f52009-04-20 15:46:45 +01002454L: linux-cachefs@redhat.com
2455S: Supported
2456F: Documentation/filesystems/caching/
2457F: fs/fscache/
2458F: include/linux/fscache*.h
2459
David Howells5ab7ffe2007-04-10 15:10:45 +01002460FUJITSU FR-V (FRV) PORT
Joe Perches8b58be82009-07-29 15:04:30 -07002461M: David Howells <dhowells@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002463F: arch/frv/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Jonathan Woithe20b93732008-06-11 10:14:56 +09302465FUJITSU LAPTOP EXTRAS
Joe Perches8b58be82009-07-29 15:04:30 -07002466M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Matthew Garrettd0944852010-02-11 10:40:13 -05002467L: platform-driver-x86@vger.kernel.org
Jonathan Woithe20b93732008-06-11 10:14:56 +09302468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002469F: drivers/platform/x86/fujitsu-laptop.c
Jonathan Woithe20b93732008-06-11 10:14:56 +09302470
Miklos Szeredi04578f12005-09-09 13:10:22 -07002471FUSE: FILESYSTEM IN USERSPACE
Joe Perches8b58be82009-07-29 15:04:30 -07002472M: Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi04578f12005-09-09 13:10:22 -07002473L: fuse-devel@lists.sourceforge.net
2474W: http://fuse.sourceforge.net/
2475S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002476F: fs/fuse/
2477F: include/linux/fuse.h
Miklos Szeredi04578f12005-09-09 13:10:22 -07002478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
Joe Perches8b58be82009-07-29 15:04:30 -07002480M: Rik Faith <faith@cs.unc.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481L: linux-scsi@vger.kernel.org
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002482S: Odd Fixes (e.g., new signatures)
Joe Perches679655d2009-04-07 20:44:32 -07002483F: drivers/scsi/fdomain.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485GDT SCSI DISK ARRAY CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002486M: Achim Leubner <achim_leubner@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487L: linux-scsi@vger.kernel.org
2488W: http://www.icp-vortex.com/
2489S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002490F: drivers/scsi/gdt*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002492GENERIC GPIO I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002493M: Haavard Skinnemoen <hskinnemoen@atmel.com>
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002494S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002495F: drivers/i2c/busses/i2c-gpio.c
2496F: include/linux/i2c-gpio.h
Haavard Skinnemoen1c23af92007-05-01 23:26:34 +02002497
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01002498GENERIC HDLC (WAN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002499M: Krzysztof Halasa <khc@pm.waw.pl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500W: http://www.kernel.org/pub/linux/utils/net/hdlc/
2501S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002502F: drivers/net/wan/c101.c
2503F: drivers/net/wan/hd6457*
2504F: drivers/net/wan/hdlc*
2505F: drivers/net/wan/n2.c
2506F: drivers/net/wan/pc300too.c
2507F: drivers/net/wan/pci200syn.c
2508F: drivers/net/wan/wanxl*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002510GENERIC INCLUDE/ASM HEADER FILES
Joe Perches8b58be82009-07-29 15:04:30 -07002511M: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann1527aab2009-06-14 22:46:16 +02002512L: linux-arch@vger.kernel.org
2513T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
2514S: Maintained
2515F: include/asm-generic
2516
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002517GENERIC UIO DRIVER FOR PCI DEVICES
Joe Perchesbda25622009-10-26 16:49:39 -07002518M: "Michael S. Tsirkin" <mst@redhat.com>
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002519L: kvm@vger.kernel.org
Michael S. Tsirkinccb86a62009-07-20 10:29:34 +03002520S: Supported
2521F: drivers/uio/uio_pci_generic.c
2522
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002523GFS2 FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002524M: Steven Whitehouse <swhiteho@redhat.com>
David Teiglanda4644182006-06-22 15:29:57 -04002525L: cluster-devel@redhat.com
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002526W: http://sources.redhat.com/cluster/
Joe Perches54e58812009-04-07 21:08:10 -07002527T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
2528T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002529S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002530F: Documentation/filesystems/gfs2*.txt
2531F: fs/gfs2/
2532F: include/linux/gfs2_ondisk.h
Steven Whitehouse5be7b502006-04-28 11:27:32 -04002533
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002534GIGASET ISDN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002535M: Hansjoerg Lipp <hjlipp@web.de>
2536M: Tilman Schmidt <tilman@imap.cc>
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002537L: gigaset307x-common@lists.sourceforge.net
2538W: http://gigaset307x.sourceforge.net/
2539S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002540F: Documentation/isdn/README.gigaset
2541F: drivers/isdn/gigaset/
2542F: include/linux/gigaset_dev.h
Hansjoerg Lipp0a34eb82006-03-26 01:38:28 -08002543
Kristoffer Glembod4c41132010-02-15 03:33:44 +00002544GRETH 10/100/1G Ethernet MAC device driver
2545M: Kristoffer Glembo <kristoffer@gaisler.com>
2546L: netdev@vger.kernel.org
2547S: Maintained
2548F: drivers/net/greth*
2549
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002550HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002551M: Frank Seidel <frank@f-seidel.de>
Frank Seidel211e3e02009-02-17 19:59:54 +01002552L: lm-sensors@lm-sensors.org
2553W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002554S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002555F: drivers/hwmon/hdaps.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002556
Andi Kleen7bc98b92009-12-16 12:19:57 +01002557HWPOISON MEMORY FAILURE HANDLING
2558M: Andi Kleen <andi@firstfloor.org>
2559L: linux-mm@kvack.org
2560L: linux-kernel@vger.kernel.org
2561T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
2562S: Maintained
2563F: mm/memory-failure.c
2564F: mm/hwpoison-inject.c
2565
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002566HYPERVISOR VIRTUAL CONSOLE DRIVER
2567L: linuxppc-dev@ozlabs.org
Michael Ellermanc90bfeb2009-04-02 16:56:43 -07002568S: Odd Fixes
2569F: drivers/char/hvc_*
2570
Konrad Rzeszutek Wilkc4d14092010-02-26 03:53:00 +00002571iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
2572M: Peter Jones <pjones@redhat.com>
2573M: Konrad Rzeszutek Wilk <konrad@kernel.org>
2574S: Maintained
2575F: drivers/firmware/iscsi_ibft*
2576
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002577GSPCA FINEPIX SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002578M: Frank Zago <frank@zago.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002579L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002580T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002581S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002582F: drivers/media/video/gspca/finepix.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002583
Olivier Lorin4b3fa3c2009-10-03 19:09:10 -03002584GSPCA GL860 SUBDRIVER
2585M: Olivier Lorin <o.lorin@laposte.net>
2586L: linux-media@vger.kernel.org
2587T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2588S: Maintained
2589F: drivers/media/video/gspca/gl860/
2590
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002591GSPCA M5602 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002592M: Erik Andren <erik.andren@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002593L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002594T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002596F: drivers/media/video/gspca/m5602/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002597
2598GSPCA PAC207 SONIXB SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002599M: Hans de Goede <hdegoede@redhat.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002600L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002601T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002602S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002603F: drivers/media/video/gspca/pac207.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002604
Brian Johnson261982f2009-07-19 15:58:56 -03002605GSPCA SN9C20X SUBDRIVER
Joe Perchesd95c5b02009-08-16 20:03:51 -03002606M: Brian Johnson <brijohn@gmail.com>
Brian Johnson261982f2009-07-19 15:58:56 -03002607L: linux-media@vger.kernel.org
2608T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
2609S: Maintained
2610F: drivers/media/video/gspca/sn9c20x.c
2611
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002612GSPCA T613 SUBDRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002613M: Leandro Costantino <lcostantino@gmail.com>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002614L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002615T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002617F: drivers/media/video/gspca/t613.c
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002618
2619GSPCA USB WEBCAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002620M: Jean-Francois Moine <moinejf@free.fr>
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002621W: http://moinejf.free.fr
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03002622L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002623T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002624S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002625F: drivers/media/video/gspca/
Jean-Francois Moinee8deeae22008-10-22 10:57:37 -03002626
Jean Delvare5b543962005-08-15 19:51:02 +02002627HARDWARE MONITORING
Jean Delvare5b543962005-08-15 19:51:02 +02002628L: lm-sensors@lm-sensors.org
Jean Delvare595142e2006-12-06 20:39:36 -08002629W: http://www.lm-sensors.org/
Jean Delvarebaaea1d2008-09-20 12:34:33 +02002630S: Orphan
Jean Delvare047f4ec2009-12-09 20:35:46 +01002631F: Documentation/hwmon/
Joe Perches679655d2009-04-07 20:44:32 -07002632F: drivers/hwmon/
Jean Delvare047f4ec2009-12-09 20:35:46 +01002633F: include/linux/hwmon*.h
Jean Delvare5b543962005-08-15 19:51:02 +02002634
Michael Buesch844dd052006-06-26 00:24:59 -07002635HARDWARE RANDOM NUMBER GENERATOR CORE
Joe Perchesc0d07872009-09-23 15:57:17 -07002636M: Matt Mackall <mpm@selenic.com>
2637M: Herbert Xu <herbert@gondor.apana.org.au>
2638S: Odd fixes
Joe Perches679655d2009-04-07 20:44:32 -07002639F: Documentation/hw_random.txt
2640F: drivers/char/hw_random/
2641F: include/linux/hw_random.h
Michael Buesch844dd052006-06-26 00:24:59 -07002642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643HARMONY SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002644M: Kyle McMartin <kyle@mcmartin.ca>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00002645L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002647F: sound/parisc/harmony.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002649HEWLETT-PACKARD SMART2 RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002650M: Chirag Kantharia <chirag.kantharia@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002651L: iss_storagedev@hp.com
2652S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002653F: Documentation/blockdev/cpqarray.txt
2654F: drivers/block/cpqarray.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002655
Stephen M. Cameron9257aa42010-05-27 15:14:44 -05002656HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
2657M: Stephen M. Cameron <scameron@beardog.cce.hp.com>
2658L: iss_storagedev@hp.com
2659S: Supported
2660F: Documentation/scsi/hpsa.txt
2661F: drivers/scsi/hpsa*.[ch]
2662F: include/linux/cciss*.h
2663
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002664HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
Joe Perches8b58be82009-07-29 15:04:30 -07002665M: Mike Miller <mike.miller@hp.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002666L: iss_storagedev@hp.com
2667S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002668F: Documentation/blockdev/cciss.txt
2669F: drivers/block/cciss*
2670F: include/linux/cciss_ioctl.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672HFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002673M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002675F: Documentation/filesystems/hfs.txt
2676F: fs/hfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678HGA FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002679M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680L: linux-nvidia@lists.surfsouth.com
2681W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
2682S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002683F: drivers/video/hgafb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Randy Dunlap4480f15b2008-10-12 16:11:58 -07002685HIBERNATION (aka Software Suspend, aka swsusp)
Joe Perches8b58be82009-07-29 15:04:30 -07002686M: Pavel Machek <pavel@ucw.cz>
2687M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002688L: linux-pm@lists.linux-foundation.org
2689S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002690F: arch/x86/power/
2691F: drivers/base/power/
2692F: kernel/power/
2693F: include/linux/suspend.h
2694F: include/linux/freezer.h
2695F: include/linux/pm.h
Joe Perches679655d2009-04-07 20:44:32 -07002696F: arch/*/include/asm/suspend*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002697
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002698HID CORE LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07002699M: Jiri Kosina <jkosina@suse.cz>
Dmitry Torokhoveb76c5c2007-11-02 09:07:33 -04002700L: linux-input@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07002701T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002702S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002703F: drivers/hid/
2704F: include/linux/hid*
Jiri Kosina4ef4caa2006-12-14 12:03:30 +01002705
Ingo Molnar38bed542007-02-22 09:09:34 +01002706HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
Joe Perches8b58be82009-07-29 15:04:30 -07002707M: Thomas Gleixner <tglx@linutronix.de>
Ingo Molnar38bed542007-02-22 09:09:34 +01002708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002709F: Documentation/timers/
2710F: kernel/hrtimer.c
2711F: include/linux/hrtimer.h
Ingo Molnar38bed542007-02-22 09:09:34 +01002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713HIGH-SPEED SCC DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07002714M: Klaus Kudielka <klaus.kudielka@ieee.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715L: linux-hams@vger.kernel.org
2716W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/
2717S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002718F: drivers/net/hamradio/dmascc.c
2719F: drivers/net/hamradio/scc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002721HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002722M: HighPoint Linux Team <linux@highpoint-tech.com>
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002723W: http://www.highpoint-tech.com
2724S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002725F: Documentation/scsi/hptiop.txt
2726F: drivers/scsi/hptiop.c
HighPoint Linux Teamede1e6f2006-05-16 14:38:09 +08002727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728HIPPI
Joe Perches8b58be82009-07-29 15:04:30 -07002729M: Jes Sorensen <jes@trained-monkey.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730L: linux-hippi@sunsite.dk
2731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002732F: include/linux/hippidevice.h
2733F: include/linux/if_hippi.h
2734F: net/802/hippi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Jouni Malinenff1d2762005-05-12 22:54:16 -04002736HOST AP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002737M: Jouni Malinen <j@w1.fi>
Jouni Malinen85d32e72007-03-24 17:15:30 -07002738L: hostap@shmoo.com (subscribers-only)
Johannes Berg724c6b32007-04-23 12:18:20 -07002739L: linux-wireless@vger.kernel.org
Jouni Malinenff1d2762005-05-12 22:54:16 -04002740W: http://hostap.epitest.fi/
2741S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002742F: drivers/net/wireless/hostap/
Jouni Malinenff1d2762005-05-12 22:54:16 -04002743
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002744HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002745M: Carlos Corbacho <carlos@strangeworlds.co.uk>
Matthew Garrettd0944852010-02-11 10:40:13 -05002746L: platform-driver-x86@vger.kernel.org
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002747S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07002748F: drivers/platform/x86/tc1100-wmi.c
Carlos Corbachodd8cd772008-02-05 02:17:15 +00002749
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002750HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
Joe Perches8b58be82009-07-29 15:04:30 -07002751M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002752S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002753F: drivers/net/hp100.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002754
Joe Perches7d2c86b2009-04-07 20:59:01 -07002755HPET: High Precision Event Timers driver
Joe Perches8b58be82009-07-29 15:04:30 -07002756M: Clemens Ladisch <clemens@ladisch.de>
Bob Piccob9b03322005-11-07 00:59:19 -08002757S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002758F: Documentation/timers/hpet.txt
2759F: drivers/char/hpet.c
2760F: include/linux/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002761
Jiri Kosinae07b5d72010-03-18 10:59:57 +01002762HPET: x86
Venkatesh Pallipadi9c5fb192010-03-17 13:17:52 -07002763M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002764S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002765F: arch/x86/kernel/hpet.c
2766F: arch/x86/include/asm/hpet.h
Bob Piccob9b03322005-11-07 00:59:19 -08002767
Joe Perches7d2c86b2009-04-07 20:59:01 -07002768HPET: ACPI
Joe Perches8b58be82009-07-29 15:04:30 -07002769M: Bob Picco <bob.picco@hp.com>
Bob Piccob9b03322005-11-07 00:59:19 -08002770S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002771F: drivers/char/hpet.c
Bob Piccob9b03322005-11-07 00:59:19 -08002772
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773HPFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002774M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
2776S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002777F: fs/hpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
Joe Perches7d2c86b2009-04-07 20:59:01 -07002779HSO 3G MODEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002780M: Jan Dumon <j.dumon@option.com>
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002781W: http://www.pharscape.org
2782S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002783F: drivers/net/usb/hso.c
Denis Joseph Barrow11cd29b2009-01-02 13:50:36 +00002784
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002785HTCPEN TOUCHSCREEN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002786M: Pau Oliva Fora <pof@eslack.org>
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002787L: linux-input@vger.kernel.org
2788S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002789F: drivers/input/touchscreen/htcpen.c
Pau Oliva Fora5a18c342008-06-02 00:38:35 -04002790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791HUGETLB FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002792M: William Irwin <wli@holomorphy.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002794F: fs/hugetlbfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002796I2C/SMBUS STUB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002797M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01002798L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002799S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002800F: drivers/i2c/busses/i2c-stub.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04002801
Jean Delvare5b543962005-08-15 19:51:02 +02002802I2C SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002803M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
2804M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002805L: linux-i2c@vger.kernel.org
Jean Delvarea01064a2009-01-26 21:19:53 +01002806W: http://i2c.wiki.kernel.org/
2807T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
Uwe Kleine-König0e533002010-01-25 10:20:34 +01002808T: git git://git.fluff.org/bjdooks/linux.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002810F: Documentation/i2c/
2811F: drivers/i2c/
2812F: include/linux/i2c.h
Jean Delvare03b70d62009-11-26 09:22:32 +01002813F: include/linux/i2c-*.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Till Harbaume8c76ee2007-05-01 23:26:35 +02002815I2C-TINY-USB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002816M: Till Harbaum <till@harbaum.org>
Jean Delvare846557d2008-10-30 15:55:47 +01002817L: linux-i2c@vger.kernel.org
Joe Perches932d1872009-04-07 21:10:58 -07002818W: http://www.harbaum.org/till/i2c_tiny_usb
Till Harbaume8c76ee2007-05-01 23:26:35 +02002819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002820F: drivers/i2c/busses/i2c-tiny-usb.c
Till Harbaume8c76ee2007-05-01 23:26:35 +02002821
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822i386 BOOT CODE
Joe Perches8b58be82009-07-29 15:04:30 -07002823M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002825F: arch/x86/boot/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827i386 SETUP CODE / CPU ERRATA WORKAROUNDS
Joe Perches8b58be82009-07-29 15:04:30 -07002828M: "H. Peter Anvin" <hpa@zytor.com>
Joe Perches54e58812009-04-07 21:08:10 -07002829T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830S: Maintained
2831
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832IA64 (Itanium) PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07002833M: Tony Luck <tony.luck@intel.com>
2834M: Fenghua Yu <fenghua.yu@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835L: linux-ia64@vger.kernel.org
2836W: http://www.ia64-linux.org/
Joe Perches54e58812009-04-07 21:08:10 -07002837T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002839F: arch/ia64/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841IBM MCA SCSI SUBSYSTEM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002842M: Michael Lang <langa2@kph.uni-mainz.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843W: http://www.uni-mainz.de/~langm000/linux.html
2844S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002845F: drivers/scsi/ibmmca.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
2847IBM Power Linux RAID adapter
Joe Perches8b58be82009-07-29 15:04:30 -07002848M: Brian King <brking@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002850F: drivers/scsi/ipr.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852IBM ServeRAID RAID DRIVER
2853P: Jack Hammer
Joe Perches8b58be82009-07-29 15:04:30 -07002854M: Dave Jeffery <ipslinux@adaptec.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
Antoine Jacquetb7eee612007-04-27 12:30:59 -03002856S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002857F: drivers/scsi/ips.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Bartlomiej Zolnierkiewicz1e7106f2007-01-27 13:46:14 +01002859IDE SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002860M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861L: linux-ide@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002862Q: http://patchwork.ozlabs.org/project/linux-ide/list/
David S. Miller920d44e2009-06-21 16:11:33 -07002863T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002865F: Documentation/ide/
2866F: drivers/ide/
2867F: include/linux/ide.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Bartlomiej Zolnierkiewicz0f861e82009-03-31 20:15:31 +02002869IDE/ATAPI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002870M: Borislav Petkov <petkovbb@gmail.com>
Jens Axboe9c5b0ce2007-01-03 18:15:20 +01002871L: linux-ide@vger.kernel.org
Borislav Petkovc404c192007-12-24 15:23:44 +01002872S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002873F: Documentation/cdrom/ide-cd
2874F: drivers/ide/ide-cd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Andy Henroid27471fd2008-10-09 11:45:22 -07002876IDLE-I7300
Joe Perches8b58be82009-07-29 15:04:30 -07002877M: Andy Henroid <andrew.d.henroid@intel.com>
Andy Henroid27471fd2008-10-09 11:45:22 -07002878L: linux-pm@lists.linux-foundation.org
2879S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002880F: drivers/idle/i7300_idle.c
Andy Henroid27471fd2008-10-09 11:45:22 -07002881
Joe Perches7d2c86b2009-04-07 20:59:01 -07002882IEEE 1394 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002883M: Stefan Richter <stefanr@s5r6.in-berlin.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884L: linux1394-devel@lists.sourceforge.net
Stefan Richter958a29c2009-12-26 01:36:12 +01002885W: http://ieee1394.wiki.kernel.org/
Joe Perches54e58812009-04-07 21:08:10 -07002886T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
Stefan Richter958a29c2009-12-26 01:36:12 +01002887S: Obsolete
Stefan Richter544df552009-10-03 10:17:29 +02002888F: Documentation/debugging-via-ohci1394.txt
Joe Perches679655d2009-04-07 20:44:32 -07002889F: drivers/ieee1394/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Sergey Lapin02cf2282009-06-08 12:18:50 +00002891IEEE 802.15.4 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002892M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2893M: Sergey Lapin <slapin@ossfans.org>
Dmitry Eremin-Solenikove0af6062009-06-18 13:05:49 +04002894L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
Sergey Lapin02cf2282009-06-08 12:18:50 +00002895W: http://apps.sourceforge.net/trac/linux-zigbee
Dmitry Baryshkova0603302009-06-18 04:16:47 +00002896T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
Sergey Lapin02cf2282009-06-08 12:18:50 +00002897S: Maintained
2898F: net/ieee802154/
Joe Perchesa26c4462009-06-18 16:49:24 -07002899F: drivers/ieee802154/
Sergey Lapin02cf2282009-06-08 12:18:50 +00002900
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002901INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
Joe Perches8b58be82009-07-29 15:04:30 -07002902M: Mimi Zohar <zohar@us.ibm.com>
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002903S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002904F: security/integrity/ima/
Mimi Zoharaa7168f2009-02-04 09:07:03 -05002905
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906IMS TWINTURBO FRAMEBUFFER DRIVER
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002907L: linux-fbdev@vger.kernel.org
Paul Mundt843393d2007-11-19 13:11:04 +09002908S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07002909F: drivers/video/imsttfb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911INFINIBAND SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07002912M: Roland Dreier <rolandd@cisco.com>
2913M: Sean Hefty <sean.hefty@intel.com>
2914M: Hal Rosenstock <hal.rosenstock@gmail.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07002915L: linux-rdma@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916W: http://www.openib.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08002917Q: http://patchwork.kernel.org/project/linux-rdma/list/
Joe Perches54e58812009-04-07 21:08:10 -07002918T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002920F: Documentation/infiniband/
2921F: drivers/infiniband/
2922F: include/linux/if_infiniband.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Robert Lovec9f04f52005-07-15 12:21:07 -04002924INOTIFY
Joe Perches8b58be82009-07-29 15:04:30 -07002925M: John McCutchan <john@johnmccutchan.com>
2926M: Robert Love <rlove@rlove.org>
2927M: Eric Paris <eparis@parisplace.org>
Robert Lovec9f04f52005-07-15 12:21:07 -04002928S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002929F: Documentation/filesystems/inotify.txt
2930F: fs/notify/inotify/
2931F: include/linux/inotify.h
Robert Lovec9f04f52005-07-15 12:21:07 -04002932
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002933INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07002934M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
2935M: Dmitry Torokhov <dtor@mail.ru>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002936L: linux-input@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08002937Q: http://patchwork.kernel.org/project/linux-input/list/
Joe Perches54e58812009-04-07 21:08:10 -07002938T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002939S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002940F: drivers/input/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07002941
Henrik Rydberg3267a872010-06-24 19:10:40 -07002942INPUT MULTITOUCH (MT) PROTOCOL
2943M: Henrik Rydberg <rydberg@euromail.se>
2944L: linux-input@vger.kernel.org
2945S: Maintained
2946F: Documentation/input/multi-touch-protocol.txt
2947K: \b(ABS|SYN)_MT_
2948
Len Brown26717172010-03-08 14:07:30 -05002949INTEL IDLE DRIVER
2950M: Len Brown <lenb@kernel.org>
2951L: linux-pm@lists.linux-foundation.org
2952T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
2953S: Supported
2954F: drivers/idle/intel_idle.c
2955
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002956INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
Maik Broemme55a23c42010-03-10 15:21:44 -08002957M: Maik Broemme <mbroemme@plusserver.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002958L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002959S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002960F: Documentation/fb/intelfb.txt
2961F: drivers/video/intelfb/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08002962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963INTEL 810/815 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002964M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01002965L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01002966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002967F: drivers/video/i810/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302969INTEL MENLOW THERMAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002970M: Sujith Thomas <sujith.thomas@intel.com>
Matthew Garrettd0944852010-02-11 10:40:13 -05002971L: platform-driver-x86@vger.kernel.org
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302972W: http://www.lesswatts.org/projects/acpi/
2973S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002974F: drivers/platform/x86/intel_menlow.c
Thomas, Sujithf4a9bc42008-11-05 16:15:31 +05302975
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976INTEL IA32 MICROCODE UPDATE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07002977M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002979F: arch/x86/kernel/microcode_core.c
2980F: arch/x86/kernel/microcode_intel.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002982INTEL I/OAT DMA DRIVER
Dan Williams9fe3b692010-01-15 01:47:37 -08002983M: Dan Williams <dan.j.williams@intel.com>
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002984S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002985F: drivers/dma/ioat*
Nelson, Shannon248a9dc2007-07-15 23:37:20 -07002986
David Woodhouse6c8909b2008-10-18 16:12:17 +01002987INTEL IOMMU (VT-d)
Joe Perches8b58be82009-07-29 15:04:30 -07002988M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6c8909b2008-10-18 16:12:17 +01002989L: iommu@lists.linux-foundation.org
Joe Perches54e58812009-04-07 21:08:10 -07002990T: git git://git.infradead.org/iommu-2.6.git
David Woodhouse6c8909b2008-10-18 16:12:17 +01002991S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07002992F: drivers/pci/intel-iommu.c
2993F: include/linux/intel-iommu.h
David Woodhouse6c8909b2008-10-18 16:12:17 +01002994
Dan Williamsb3e5f262007-08-07 10:26:35 -07002995INTEL IOP-ADMA DMA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07002996M: Dan Williams <dan.j.williams@intel.com>
Dan Williamsf00f5102009-08-18 15:21:50 -07002997S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07002998F: drivers/dma/iop-adma.c
Dan Williamsb3e5f262007-08-07 10:26:35 -07002999
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003000INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003001M: Krzysztof Halasa <khc@pm.waw.pl>
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003003F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
3004F: arch/arm/mach-ixp4xx/include/mach/npe.h
3005F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
3006F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
3007F: drivers/net/arm/ixp4xx_eth.c
3008F: drivers/net/wan/ixp4xx_hss.c
Krzysztof Hałasa9251ce92008-12-21 23:52:36 +01003009
Michael Buesch844dd052006-06-26 00:24:59 -07003010INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003011M: Deepak Saxena <dsaxena@plexity.net>
Michael Buesch844dd052006-06-26 00:24:59 -07003012S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003013F: drivers/char/hw_random/ixp4xx-rng.c
Michael Buesch844dd052006-06-26 00:24:59 -07003014
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003015INTEL IXP2000 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003016M: Lennert Buytenhek <kernel@wantstofly.org>
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003017L: netdev@vger.kernel.org
3018S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003019F: drivers/net/ixp2000/
Lennert Buytenhek2b7a52a2006-12-29 16:49:30 -08003020
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003021INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe)
Joe Perches8b58be82009-07-29 15:04:30 -07003022M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
3023M: Jesse Brandeburg <jesse.brandeburg@intel.com>
3024M: Bruce Allan <bruce.w.allan@intel.com>
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003025M: Alex Duyck <alexander.h.duyck@intel.com>
Joe Perches8b58be82009-07-29 15:04:30 -07003026M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
3027M: John Ronciak <john.ronciak@intel.com>
Auke Kokdcd01fa2007-03-06 08:58:06 -08003028L: e1000-devel@lists.sourceforge.net
Auke Kokd94e6fe2008-03-03 14:37:47 -08003029W: http://e1000.sourceforge.net/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003031F: drivers/net/e100.c
3032F: drivers/net/e1000/
3033F: drivers/net/e1000e/
3034F: drivers/net/igb/
Jeff Kirsherde4fc072010-01-23 01:20:22 -08003035F: drivers/net/igbvf/
Joe Perches679655d2009-04-07 20:44:32 -07003036F: drivers/net/ixgb/
3037F: drivers/net/ixgbe/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
James Ketrenos826d2ab2005-11-07 18:56:59 -06003039INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003040L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003041S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003042F: Documentation/networking/README.ipw2100
3043F: drivers/net/wireless/ipw2x00/ipw2100.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003044
3045INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
Johannes Berg724c6b32007-04-23 12:18:20 -07003046L: linux-wireless@vger.kernel.org
Zhu Yie7fdc952010-06-10 09:44:29 +08003047S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003048F: Documentation/networking/README.ipw2200
3049F: drivers/net/wireless/ipw2x00/ipw2200.*
James Ketrenos826d2ab2005-11-07 18:56:59 -06003050
Shane Wang4bd96a72010-03-10 14:36:10 +08003051INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
3052M: Joseph Cihula <joseph.cihula@intel.com>
3053M: Shane Wang <shane.wang@intel.com>
3054L: tboot-devel@lists.sourceforge.net
3055W: http://tboot.sourceforge.net
3056T: Mercurial http://www.bughost.org/repos.hg/tboot.hg
3057S: Supported
3058F: Documentation/intel_txt.txt
3059F: include/linux/tboot.h
3060F: arch/x86/kernel/tboot.c
3061
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003062INTEL WIRELESS WIMAX CONNECTION 2400
Joe Perches8b58be82009-07-29 15:04:30 -07003063M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003064M: linux-wimax@intel.com
3065L: wimax@linuxwimax.org
3066S: Supported
3067W: http://linuxwimax.org
Joe Perches679655d2009-04-07 20:44:32 -07003068F: Documentation/wimax/README.i2400m
3069F: drivers/net/wimax/i2400m/
3070F: include/linux/wimax/i2400m.h
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08003071
Zhu Yib481de92007-09-25 17:54:57 -07003072INTEL WIRELESS WIFI LINK (iwlwifi)
Joe Perches8b58be82009-07-29 15:04:30 -07003073M: Reinette Chatre <reinette.chatre@intel.com>
Wey-Yi Guy9edc71b2010-06-02 15:17:49 -07003074M: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Reinette Chatrea0bf7972009-08-21 14:03:51 -07003075M: Intel Linux Wireless <ilw@linux.intel.com>
Zhu Yib481de92007-09-25 17:54:57 -07003076L: linux-wireless@vger.kernel.org
Zhu Yib481de92007-09-25 17:54:57 -07003077W: http://intellinuxwireless.org
Joe Perches54e58812009-04-07 21:08:10 -07003078T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
Zhu Yib481de92007-09-25 17:54:57 -07003079S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003080F: drivers/net/wireless/iwlwifi/
Zhu Yib481de92007-09-25 17:54:57 -07003081
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003082INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
3083M: Samuel Ortiz <samuel.ortiz@intel.com>
Samuel Ortizf6cd53c2009-11-24 11:33:26 +08003084M: Intel Linux Wireless <ilw@linux.intel.com>
3085L: linux-wireless@vger.kernel.org
3086S: Supported
3087W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
3088F: drivers/net/wireless/iwmc3200wifi/
3089
Ralf Baechlecb109a02007-08-30 23:56:30 -07003090IOC3 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003091M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092L: linux-mips@linux-mips.org
3093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003094F: drivers/net/ioc3-eth.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Ralf Baechlecb109a02007-08-30 23:56:30 -07003096IOC3 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003097M: Pat Gefre <pfg@sgi.com>
Joe Perches6650e0a2007-12-10 15:49:32 -08003098L: linux-mips@linux-mips.org
Ralf Baechlecb109a02007-08-30 23:56:30 -07003099S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003100F: drivers/serial/ioc3_serial.c
Ralf Baechlecb109a02007-08-30 23:56:30 -07003101
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003102IP MASQUERADING
Joe Perches8b58be82009-07-29 15:04:30 -07003103M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003105F: net/ipv4/netfilter/ipt_MASQUERADE.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Francois Romieu1202d6f2007-09-17 17:13:55 -07003107IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003108M: Francois Romieu <romieu@fr.zoreil.com>
3109M: Sorbica Shieh <sorbica@icplus.com.tw>
Francois Romieu1202d6f2007-09-17 17:13:55 -07003110L: netdev@vger.kernel.org
3111S: Maintained
Joe Perches3365a292010-03-28 08:42:16 +00003112F: drivers/net/ipg.*
Francois Romieu1202d6f2007-09-17 17:13:55 -07003113
Randy Dunlap4480f15b2008-10-12 16:11:58 -07003114IPATH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003115M: Ralph Campbell <infinipath@qlogic.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003116L: linux-rdma@vger.kernel.org
Arthur Jonesf42b6472007-07-09 20:12:26 -07003117T: git git://git.qlogic.com/ipath-linux-2.6
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003118S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003119F: drivers/infiniband/hw/ipath/
Bryan O'Sullivan77d87982006-03-29 15:23:39 -08003120
Corey Minyard4409ebe2006-04-20 02:43:12 -07003121IPMI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003122M: Corey Minyard <minyard@acm.org>
Randy Dunlapb0c90652009-11-11 14:26:13 -08003123L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
Corey Minyard4409ebe2006-04-20 02:43:12 -07003124W: http://openipmi.sourceforge.net/
3125S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003126F: Documentation/IPMI.txt
3127F: drivers/char/ipmi/
3128F: include/linux/ipmi*
Corey Minyard4409ebe2006-04-20 02:43:12 -07003129
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003130IPS SCSI RAID DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003131M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003132L: linux-scsi@vger.kernel.org
3133W: http://www.adaptec.com/
3134S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003135F: drivers/scsi/ips*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003136
3137IPVS
Joe Perches8b58be82009-07-29 15:04:30 -07003138M: Wensong Zhang <wensong@linux-vs.org>
3139M: Simon Horman <horms@verge.net.au>
3140M: Julian Anastasov <ja@ssi.bg>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003141L: netdev@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003142L: lvs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003144F: Documentation/networking/ipvs-sysctl.txt
Hannes Ederb61d4a712009-09-21 17:04:12 -07003145F: include/net/ip_vs.h
3146F: include/linux/ip_vs.h
Joe Perches679655d2009-04-07 20:44:32 -07003147F: net/netfilter/ipvs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Randy Dunlape7839f22008-10-12 16:11:45 -07003149IPWIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003150M: Jiri Kosina <jkosina@suse.cz>
3151M: David Sterba <dsterba@suse.cz>
David Sterba099dc4f2008-02-07 10:57:12 +01003152S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07003153T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
Joe Perches679655d2009-04-07 20:44:32 -07003154F: drivers/char/pcmcia/ipwireless/
David Sterba099dc4f2008-02-07 10:57:12 +01003155
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003156IPX NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07003157M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003158L: netdev@vger.kernel.org
3159S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003160F: include/linux/ipx.h
3161F: include/net/ipx.h
3162F: net/ipx/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164IRDA SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003165M: Samuel Ortiz <samuel@sortiz.org>
Olaf Heringa2ac9532005-07-12 13:58:35 -07003166L: irda-users@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167W: http://irda.sourceforge.net/
Samuel Ortizf3539762006-05-09 15:24:49 -07003168S: Maintained
Samuel Ortize0057972009-06-05 16:12:00 +02003169T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
Joe Perches679655d2009-04-07 20:44:32 -07003170F: Documentation/networking/irda.txt
3171F: drivers/net/irda/
3172F: include/net/irda/
3173F: net/irda/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003175ISAPNP
Joe Perches8b58be82009-07-29 15:04:30 -07003176M: Jaroslav Kysela <perex@perex.cz>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003177S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003178F: Documentation/isapnp.txt
3179F: drivers/pnp/isapnp/
3180F: include/linux/isapnp.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003181
Mike Christie14816b1e2007-11-28 16:22:06 -08003182ISCSI
Joe Perches8b58be82009-07-29 15:04:30 -07003183M: Mike Christie <michaelc@cs.wisc.edu>
Mike Christie14816b1e2007-11-28 16:22:06 -08003184L: open-iscsi@googlegroups.com
3185W: www.open-iscsi.org
Joe Perches54e58812009-04-07 21:08:10 -07003186T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
Mike Christie14816b1e2007-11-28 16:22:06 -08003187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003188F: drivers/scsi/*iscsi*
3189F: include/scsi/*iscsi*
Mike Christie14816b1e2007-11-28 16:22:06 -08003190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191ISDN SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003192M: Karsten Keil <isdn@linux-pingi.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003193L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
David S. Miller3da0ae62010-03-25 20:32:39 -07003194L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195W: http://www.isdn4linux.de
Joe Perches54e58812009-04-07 21:08:10 -07003196T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003198F: Documentation/isdn/
3199F: drivers/isdn/
3200F: include/linux/isdn.h
3201F: include/linux/isdn/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203ISDN SUBSYSTEM (Eicon active card driver)
Joe Perches8b58be82009-07-29 15:04:30 -07003204M: Armin Schindler <mac@melware.de>
Paul Bolled5d52272008-04-15 00:40:48 -07003205L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206W: http://www.melware.de
3207S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003208F: drivers/isdn/hardware/eicon/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Jean Delvared6248702010-03-05 22:17:20 +01003210IT87 HARDWARE MONITORING DRIVER
3211M: Jean Delvare <khali@linux-fr.org>
3212L: lm-sensors@lm-sensors.org
3213S: Maintained
3214F: Documentation/hwmon/it87
3215F: drivers/hwmon/it87.c
3216
Hans Verkuil91821ff2007-12-02 09:35:33 -03003217IVTV VIDEO4LINUX DRIVER
Andy Walls6afdeaf2010-05-23 18:53:35 -03003218M: Andy Walls <awalls@md.metrocast.net>
Jiri Slabyc4240502010-01-13 19:39:16 -02003219L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03003220L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003221T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Hans Verkuil91821ff2007-12-02 09:35:33 -03003222W: http://www.ivtvdriver.org
3223S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003224F: Documentation/video4linux/*.ivtv
3225F: drivers/media/video/ivtv/
3226F: include/linux/ivtv*
Hans Verkuil91821ff2007-12-02 09:35:33 -03003227
Guenter Roeck4453d732010-08-09 17:21:08 -07003228JC42.4 TEMPERATURE SENSOR DRIVER
3229M: Guenter Roeck <linux@roeck-us.net>
3230L: lm-sensors@lm-sensors.org
3231S: Maintained
3232F: drivers/hwmon/jc42.c
3233F: Documentation/hwmon/jc42
3234
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003235JFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003236M: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003237L: jfs-discussion@lists.sourceforge.net
3238W: http://jfs.sourceforge.net/
Joe Perches54e58812009-04-07 21:08:10 -07003239T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
Dave Kleikamp8f8f0132009-07-13 11:02:24 -05003240S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003241F: Documentation/filesystems/jfs.txt
3242F: fs/jfs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003243
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003244JME NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003245M: Guo-Fu Tseng <cooldavid@cooldavid.org>
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003246L: netdev@vger.kernel.org
3247S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003248F: drivers/net/jme.*
Guo-Fu Tseng95252232008-09-16 01:00:11 +08003249
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07003251M: David Woodhouse <dwmw2@infradead.org>
David Woodhouse6d85d062007-10-27 10:39:48 -04003252L: linux-mtd@lists.infradead.org
3253W: http://www.linux-mtd.infradead.org/doc/jffs2.html
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003255F: fs/jffs2/
3256F: include/linux/jffs2.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
Josh Triplettde456d32006-07-30 03:04:00 -07003258JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
Joe Perches8b58be82009-07-29 15:04:30 -07003259M: Andrew Morton <akpm@linux-foundation.org>
Jan Kara19003c12009-08-03 19:00:57 +02003260M: Jan Kara <jack@suse.cz>
Erik Mouw72be2cc2006-12-06 20:40:49 -08003261L: linux-ext4@vger.kernel.org
Theodore Tsoae0718f2006-05-20 15:00:13 -07003262S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003263F: fs/jbd*/
3264F: include/linux/ext*jbd*.h
3265F: include/linux/jbd*.h
Theodore Tsoae0718f2006-05-20 15:00:13 -07003266
Rudolf Marek4660cb32006-10-08 22:01:26 +02003267K8TEMP HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003268M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek4660cb32006-10-08 22:01:26 +02003269L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003271F: Documentation/hwmon/k8temp
3272F: drivers/hwmon/k8temp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274KCONFIG
Joe Perches8b58be82009-07-29 15:04:30 -07003275M: Roman Zippel <zippel@linux-m68k.org>
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003276L: linux-kbuild@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003277Q: http://patchwork.kernel.org/project/linux-kbuild/list/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003279F: Documentation/kbuild/kconfig-language.txt
3280F: scripts/kconfig/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Vivek Goyalea6c2082006-05-20 14:59:55 -07003282KDUMP
Joe Perches8b58be82009-07-29 15:04:30 -07003283M: Vivek Goyal <vgoyal@redhat.com>
3284M: Haren Myneni <hbabu@us.ibm.com>
Simon Horman34633992007-05-08 00:31:40 -07003285L: kexec@lists.infradead.org
Vivek Goyalea6c2082006-05-20 14:59:55 -07003286W: http://lse.sourceforge.net/kdump/
3287S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07003288F: Documentation/kdump/
Vivek Goyalea6c2082006-05-20 14:59:55 -07003289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290KERNEL AUTOMOUNTER (AUTOFS)
Joe Perches8b58be82009-07-29 15:04:30 -07003291M: "H. Peter Anvin" <hpa@zytor.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292L: autofs@linux.kernel.org
3293S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003294F: fs/autofs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296KERNEL AUTOMOUNTER v4 (AUTOFS4)
Joe Perches8b58be82009-07-29 15:04:30 -07003297M: Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298L: autofs@linux.kernel.org
3299S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003300F: fs/autofs4/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Michal Marek70fb7ba2010-01-29 14:22:43 +01003302KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
Michal Marek5ce45962009-12-14 17:57:43 -08003303M: Michal Marek <mmarek@suse.cz>
Michal Marek3631d9a2010-06-29 11:58:42 +02003304T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
3305T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
Sam Ravnborg347d12d2007-10-18 13:23:33 +02003306L: linux-kbuild@vger.kernel.org
Michal Marek5ce45962009-12-14 17:57:43 -08003307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003308F: Documentation/kbuild/
3309F: Makefile
3310F: scripts/Makefile.*
Michal Marek70fb7ba2010-01-29 14:22:43 +01003311F: scripts/basic/
3312F: scripts/mk*
3313F: scripts/package/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315KERNEL JANITORS
maximilian attemsc3000e02007-07-06 11:17:32 -07003316L: kernel-janitors@vger.kernel.org
Joe Perchesee709b02009-10-26 16:49:43 -07003317W: http://janitor.kernelnewbies.org/
3318S: Odd Fixes
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04003320KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003321M: "J. Bruce Fields" <bfields@fieldses.org>
3322M: Neil Brown <neilb@suse.de>
Neil Brown16141c02007-12-11 16:16:12 -08003323L: linux-nfs@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324W: http://nfs.sourceforge.net/
NeilBrown98fac232007-01-26 00:56:57 -08003325S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003326F: fs/nfsd/
3327F: include/linux/nfsd/
3328F: fs/lockd/
3329F: fs/nfs_common/
3330F: net/sunrpc/
3331F: include/linux/lockd/
3332F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Avi Kivity426d62e2006-12-13 00:34:03 -08003334KERNEL VIRTUAL MACHINE (KVM)
Joe Perches8b58be82009-07-29 15:04:30 -07003335M: Avi Kivity <avi@redhat.com>
Marcelo Tosatti8e616fc2009-09-10 17:21:34 -03003336M: Marcelo Tosatti <mtosatti@redhat.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003337L: kvm@vger.kernel.org
3338W: http://kvm.qumranet.com
Avi Kivity426d62e2006-12-13 00:34:03 -08003339S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003340F: Documentation/*/kvm.txt
3341F: arch/*/kvm/
3342F: arch/*/include/asm/kvm*
3343F: include/linux/kvm*
3344F: virt/kvm/
Avi Kivity426d62e2006-12-13 00:34:03 -08003345
Joerg Roedelad8003d2008-09-10 20:01:07 +02003346KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
Joe Perches8b58be82009-07-29 15:04:30 -07003347M: Joerg Roedel <joerg.roedel@amd.com>
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003348L: kvm@vger.kernel.org
3349W: http://kvm.qumranet.com
3350S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003351F: arch/x86/include/asm/svm.h
Joe Perches679655d2009-04-07 20:44:32 -07003352F: arch/x86/kvm/svm.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003353
Hollis Blanchard513014b2008-04-16 23:28:08 -05003354KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
Alexander Grafddf02892009-12-20 22:24:07 +01003355M: Alexander Graf <agraf@suse.de>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003356L: kvm-ppc@vger.kernel.org
3357W: http://kvm.qumranet.com
Hollis Blanchard513014b2008-04-16 23:28:08 -05003358S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003359F: arch/powerpc/include/asm/kvm*
3360F: arch/powerpc/kvm/
Hollis Blanchard513014b2008-04-16 23:28:08 -05003361
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003362KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
Joe Perches8b58be82009-07-29 15:04:30 -07003363M: Xiantao Zhang <xiantao.zhang@intel.com>
Avi Kivity1fc9d2b2008-05-18 13:50:23 +03003364L: kvm-ia64@vger.kernel.org
3365W: http://kvm.qumranet.com
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003366S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003367F: Documentation/ia64/kvm.txt
3368F: arch/ia64/include/asm/kvm*
3369F: arch/ia64/kvm/
Zhang Xiantao920ed9f2008-01-31 12:03:39 +08003370
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003371KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
Joe Perches8b58be82009-07-29 15:04:30 -07003372M: Carsten Otte <cotte@de.ibm.com>
3373M: Christian Borntraeger <borntraeger@de.ibm.com>
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003374M: linux390@de.ibm.com
3375L: linux-s390@vger.kernel.org
3376W: http://www.ibm.com/developerworks/linux/linux390/
3377S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003378F: Documentation/s390/kvm.txt
3379F: arch/s390/include/asm/kvm*
Joe Perches80811492009-04-08 20:20:27 -07003380F: arch/s390/kvm/
Joe Perchesa968cd32009-12-07 12:52:10 +01003381F: drivers/s390/kvm/
Christian Borntraeger85f8fff2008-03-25 18:47:41 +01003382
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003383KEXEC
Joe Perches8b58be82009-07-29 15:04:30 -07003384M: Eric Biederman <ebiederm@xmission.com>
Signed-off-by@vergenet.net":Simonb7c698f2007-10-18 03:04:33 -07003385W: http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
Simon Horman34633992007-05-08 00:31:40 -07003386L: kexec@lists.infradead.org
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003387S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003388F: include/linux/kexec.h
3389F: kernel/kexec.c
Eric W. Biedermandc009d92005-06-25 14:57:52 -07003390
David Howellse9714612010-03-29 23:42:09 +01003391KEYS/KEYRINGS:
3392M: David Howells <dhowells@redhat.com>
3393L: keyrings@linux-nfs.org
3394S: Maintained
3395F: Documentation/keys.txt
3396F: include/linux/key.h
3397F: include/linux/key-type.h
3398F: include/keys/
3399F: security/keys/
3400
Jason Wessel5b778da2010-05-20 21:04:28 -05003401KGDB / KDB /debug_core
Joe Perches8b58be82009-07-29 15:04:30 -07003402M: Jason Wessel <jason.wessel@windriver.com>
Jason Wessel4063eb52010-05-20 21:04:19 -05003403W: http://kgdb.wiki.kernel.org/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003404L: kgdb-bugreport@lists.sourceforge.net
3405S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003406F: Documentation/DocBook/kgdb.tmpl
3407F: drivers/misc/kgdbts.c
3408F: drivers/serial/kgdboc.c
Jason Wessel5b778da2010-05-20 21:04:28 -05003409F: include/linux/kdb.h
Joe Perches679655d2009-04-07 20:44:32 -07003410F: include/linux/kgdb.h
Jason Wessel4063eb52010-05-20 21:04:19 -05003411F: kernel/debug/
Jason Wessele3e2aaf2008-03-20 13:43:45 -05003412
Pekka Enberg456db8c2008-04-28 22:47:29 +03003413KMEMCHECK
Joe Perches8b58be82009-07-29 15:04:30 -07003414M: Vegard Nossum <vegardno@ifi.uio.no>
Joe Perches410d7a92009-11-17 14:06:15 -08003415M: Pekka Enberg <penberg@cs.helsinki.fi>
Pekka Enberg456db8c2008-04-28 22:47:29 +03003416S: Maintained
Joe Perches410d7a92009-11-17 14:06:15 -08003417F: Documentation/kmemcheck.txt
3418F: arch/x86/include/asm/kmemcheck.h
3419F: arch/x86/mm/kmemcheck/
3420F: include/linux/kmemcheck.h
3421F: mm/kmemcheck.c
Pekka Enberg456db8c2008-04-28 22:47:29 +03003422
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003423KMEMLEAK
Joe Perches8b58be82009-07-29 15:04:30 -07003424M: Catalin Marinas <catalin.marinas@arm.com>
Catalin Marinasc3bb4d22009-06-12 09:35:22 +01003425S: Maintained
3426F: Documentation/kmemleak.txt
3427F: include/linux/kmemleak.h
3428F: mm/kmemleak.c
3429F: mm/kmemleak-test.c
3430
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003431KPROBES
Joe Perches8b58be82009-07-29 15:04:30 -07003432M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
3433M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
3434M: "David S. Miller" <davem@davemloft.net>
Masami Hiramatsu97c29e72010-06-29 15:05:32 -07003435M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003436S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003437F: Documentation/kprobes.txt
3438F: include/linux/kprobes.h
3439F: kernel/kprobes.c
Prasanna S Panchamukhi89559a62005-09-22 21:43:47 -07003440
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003441KS0108 LCD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003442M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
Miguel Ojeda450c6222008-07-04 09:59:33 -07003443W: http://miguelojeda.es/auxdisplay.htm
3444W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003445S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003446F: Documentation/auxdisplay/ks0108
3447F: drivers/auxdisplay/ks0108.c
3448F: include/linux/ks0108.h
Miguel Ojeda Sandonis70e84042007-02-10 01:44:32 -08003449
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450LAPB module
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451L: linux-x25@vger.kernel.org
David S. Millerbf9915c2006-07-21 14:55:17 -07003452S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07003453F: Documentation/networking/lapb-module.txt
3454F: include/*/lapb.h
3455F: net/lapb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457LASI 53c700 driver for PARISC
Joe Perches8b58be82009-07-29 15:04:30 -07003458M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459L: linux-scsi@vger.kernel.org
3460S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003461F: Documentation/scsi/53c700.txt
3462F: drivers/scsi/53c700*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Richard Purdie263de9b2006-05-15 09:44:16 -07003464LED SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003465M: Richard Purdie <rpurdie@rpsys.net>
Richard Purdie263de9b2006-05-15 09:44:16 -07003466S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003467F: drivers/leds/
3468F: include/linux/leds.h
Richard Purdie263de9b2006-05-15 09:44:16 -07003469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470LEGO USB Tower driver
Joe Perches8b58be82009-07-29 15:04:30 -07003471M: Juergen Stuber <starblue@users.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472L: legousb-devel@lists.sourceforge.net
3473W: http://legousb.sourceforge.net/
3474S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003475F: drivers/usb/misc/legousbtower.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Rusty Russell568a17f2007-10-25 14:12:24 +10003477LGUEST
Joe Perches8b58be82009-07-29 15:04:30 -07003478M: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell568a17f2007-10-25 14:12:24 +10003479L: lguest@ozlabs.org
3480W: http://lguest.ozlabs.org/
3481S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003482F: Documentation/lguest/
3483F: arch/x86/lguest/
3484F: drivers/lguest/
3485F: include/linux/lguest*.h
3486F: arch/x86/include/asm/lguest*.h
Rusty Russell568a17f2007-10-25 14:12:24 +10003487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488LINUX FOR IBM pSERIES (RS/6000)
Joe Perches8b58be82009-07-29 15:04:30 -07003489M: Paul Mackerras <paulus@au.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490W: http://www.ibm.com/linux/ltc/projects/ppc
3491S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003492F: arch/powerpc/boot/rs6000.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Paul Mackerras852bb9f2008-07-04 21:04:42 +10003494LINUX FOR POWERPC (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07003495M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
3496M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497W: http://www.penguinppc.org/
3498L: linuxppc-dev@ozlabs.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003499Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
Joe Perches54e58812009-04-07 21:08:10 -07003500T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501S: Supported
Joe Perches11c34c72009-12-04 07:16:59 +00003502F: Documentation/powerpc/
3503F: arch/powerpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505LINUX FOR POWER MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003506M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507W: http://www.penguinppc.org/
3508L: linuxppc-dev@ozlabs.org
3509S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003510F: arch/powerpc/platforms/powermac/
3511F: drivers/macintosh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Grant Likely77a76362008-07-12 12:11:43 -06003513LINUX FOR POWERPC EMBEDDED MPC5XXX
Joe Perches8b58be82009-07-29 15:04:30 -07003514M: Grant Likely <grant.likely@secretlab.ca>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003516T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003518F: arch/powerpc/platforms/512x/
3519F: arch/powerpc/platforms/52xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
3521LINUX FOR POWERPC EMBEDDED PPC4XX
Joe Perches8b58be82009-07-29 15:04:30 -07003522M: Josh Boyer <jwboyer@linux.vnet.ibm.com>
3523M: Matt Porter <mporter@kernel.crashing.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003525L: linuxppc-dev@ozlabs.org
Josh Boyer9ae2ccf2009-04-24 08:57:47 -04003526T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003528F: arch/powerpc/platforms/40x/
3529F: arch/powerpc/platforms/44x/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530
Grant Likely260c02a2007-10-02 12:15:34 +10003531LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
Joe Perches8b58be82009-07-29 15:04:30 -07003532M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyf210d432007-10-03 23:24:52 -06003533W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
Grant Likely260c02a2007-10-02 12:15:34 +10003534L: linuxppc-dev@ozlabs.org
Grant Likely9d37a902009-04-28 06:50:15 +00003535T: git git://git.secretlab.ca/git/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003537F: arch/powerpc/*/*virtex*
3538F: arch/powerpc/*/*/*virtex*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
Tom Rinie93adf12005-07-26 12:49:53 -07003540LINUX FOR POWERPC EMBEDDED PPC8XX
Joe Perches8b58be82009-07-29 15:04:30 -07003541M: Vitaly Bordug <vitb@kernel.crashing.org>
3542M: Marcelo Tosatti <marcelo@kvack.org>
Tom Rinie93adf12005-07-26 12:49:53 -07003543W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003544L: linuxppc-dev@ozlabs.org
Tom Rinie93adf12005-07-26 12:49:53 -07003545S: Maintained
Joe Perchesa2b1f7c2010-08-09 17:20:47 -07003546F: arch/powerpc/platforms/8xx/
Tom Rinie93adf12005-07-26 12:49:53 -07003547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
Joe Perches8b58be82009-07-29 15:04:30 -07003549M: Kumar Gala <galak@kernel.crashing.org>
Jim Cromiece00f852006-11-30 04:49:44 +01003550W: http://www.penguinppc.org/
Mark A. Greer88de3ca2007-10-02 10:24:08 +10003551L: linuxppc-dev@ozlabs.org
Jim Cromiece00f852006-11-30 04:49:44 +01003552S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003553F: arch/powerpc/platforms/83xx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Olof Johanssonab06ff32006-09-06 14:44:54 -05003555LINUX FOR POWERPC PA SEMI PWRFICIENT
Joe Perches8b58be82009-07-29 15:04:30 -07003556M: Olof Johansson <olof@lixom.net>
Olof Johanssonab06ff32006-09-06 14:44:54 -05003557L: linuxppc-dev@ozlabs.org
Olof Johansson92e19702010-05-22 05:17:38 +00003558S: Maintained
Joe Perches11c34c72009-12-04 07:16:59 +00003559F: arch/powerpc/platforms/pasemi/
3560F: drivers/*/*pasemi*
3561F: drivers/*/*/*pasemi*
Olof Johanssonab06ff32006-09-06 14:44:54 -05003562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563LINUX SECURITY MODULE (LSM) FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07003564M: Chris Wright <chrisw@sous-sol.org>
Chris Wright1a4520b2006-03-11 03:27:20 -08003565L: linux-security-module@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07003566T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567S: Supported
3568
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003569LLC (802.2)
Joe Perches8b58be82009-07-29 15:04:30 -07003570M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003571S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003572F: include/linux/llc.h
3573F: include/net/llc*
3574F: net/llc/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003575
Pavel Machek455fbdd2008-11-12 13:27:02 -08003576LIS3LV02D ACCELEROMETER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003577M: Eric Piel <eric.piel@tremplin-utc.net>
Pavel Machek455fbdd2008-11-12 13:27:02 -08003578S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003579F: Documentation/hwmon/lis3lv02d
3580F: drivers/hwmon/lis3lv02d.*
Pavel Machek455fbdd2008-11-12 13:27:02 -08003581
Adrien Demarez4e233cb2009-12-09 20:35:50 +01003582LM73 HARDWARE MONITOR DRIVER
3583M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
3584L: lm-sensors@lm-sensors.org
3585S: Maintained
3586F: drivers/hwmon/lm73.c
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588LM83 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003589M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003590L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003592F: Documentation/hwmon/lm83
3593F: drivers/hwmon/lm83.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
3595LM90 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003596M: Jean Delvare <khali@linux-fr.org>
Jean Delvarecc0b07e2005-05-22 09:39:11 +02003597L: lm-sensors@lm-sensors.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003599F: Documentation/hwmon/lm90
3600F: drivers/hwmon/lm90.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003602LOCKDEP AND LOCKSTAT
Joe Perches8b58be82009-07-29 15:04:30 -07003603M: Peter Zijlstra <peterz@infradead.org>
3604M: Ingo Molnar <mingo@redhat.com>
Joe Perches54e58812009-04-07 21:08:10 -07003605T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003606S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003607F: Documentation/lockdep*.txt
3608F: Documentation/lockstat.txt
3609F: include/linux/lockdep.h
3610F: kernel/lockdep*
Peter Zijlstra512e67f2007-10-11 22:11:11 +02003611
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003612LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
Joe Perches8b58be82009-07-29 15:04:30 -07003613M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
Anton Altaparmakovdde33342007-05-21 09:37:42 +01003614L: linux-ntfs-dev@lists.sourceforge.net
3615W: http://www.linux-ntfs.org/content/view/19/37/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003617F: Documentation/ldm.txt
3618F: fs/partitions/ldm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Joern Engelef6ada32009-11-20 22:17:12 +01003620LogFS
3621M: Joern Engel <joern@logfs.org>
3622L: logfs@logfs.org
3623W: logfs.org
3624S: Maintained
3625F: fs/logfs/
3626
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003627LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
Joe Perches8b58be82009-07-29 15:04:30 -07003628M: Eric Moore <Eric.Moore@lsi.com>
Eric Moored8a82d72006-12-29 16:47:43 -08003629M: support@lsi.com
Eric Moorecec744f2007-09-14 19:08:08 -06003630L: DL-MPTFusionLinux@lsi.com
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003631L: linux-scsi@vger.kernel.org
3632W: http://www.lsilogic.com/support
3633S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003634F: drivers/message/fusion/
Moore, Eric Deanc87e34e2005-12-01 11:06:25 -07003635
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
Joe Perches8b58be82009-07-29 15:04:30 -07003637M: Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638L: linux-scsi@vger.kernel.org
3639S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003640F: drivers/scsi/sym53c8xx_2/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641
Mike Frysinger81365c32008-10-29 14:01:12 -07003642LTP (Linux Test Project)
Rishikesh763458e2010-02-10 13:56:40 -08003643M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
3644M: Garrett Cooper <yanegomi@gmail.com>
Joe Perches28b8e8d2010-03-23 13:35:20 -07003645M: Mike Frysinger <vapier@gentoo.org>
3646M: Subrata Modak <subrata@linux.vnet.ibm.com>
Mike Frysinger81365c32008-10-29 14:01:12 -07003647L: ltp-list@lists.sourceforge.net (subscribers-only)
3648W: http://ltp.sourceforge.net/
Subrata Modaka5fe2472010-08-09 17:20:50 -07003649T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
Mike Frysinger81365c32008-10-29 14:01:12 -07003650S: Maintained
3651
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003652M32R ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003653M: Hirokazu Takata <takata@linux-m32r.org>
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003654L: linux-m32r@ml.linux-m32r.org
3655L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
3656W: http://www.linux-m32r.org/
3657S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003658F: arch/m32r/
Hirokazu Takatac12a54b2007-07-15 23:38:45 -07003659
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660M68K ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003661M: Geert Uytterhoeven <geert@linux-m68k.org>
3662M: Roman Zippel <zippel@linux-m68k.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663L: linux-m68k@lists.linux-m68k.org
3664W: http://www.linux-m68k.org/
Joe Perches54e58812009-04-07 21:08:10 -07003665T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003667F: arch/m68k/
Joe Perches9db35182009-04-08 08:39:56 -07003668F: drivers/zorro/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
3670M68K ON APPLE MACINTOSH
Joe Perches8b58be82009-07-29 15:04:30 -07003671M: Joshua Thompson <funaho@jurai.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672W: http://www.mac.linux-m68k.org/
Finn Thain9bb9f222007-11-18 11:10:05 +01003673L: linux-m68k@lists.linux-m68k.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674S: Maintained
Joe Perches9db35182009-04-08 08:39:56 -07003675F: arch/m68k/mac/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677M68K ON HP9000/300
Joe Perches8b58be82009-07-29 15:04:30 -07003678M: Philip Blundell <philb@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679W: http://www.tazenda.demon.co.uk/phil/linux-hp
3680S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003681F: arch/m68k/hp300/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682
Jiri Benc64a327a2007-05-05 11:47:08 -07003683MAC80211
Joe Perches8b58be82009-07-29 15:04:30 -07003684M: Johannes Berg <johannes@sipsolutions.net>
Jiri Benc64a327a2007-05-05 11:47:08 -07003685L: linux-wireless@vger.kernel.org
3686W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07003687T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Jiri Benc64a327a2007-05-05 11:47:08 -07003688S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003689F: Documentation/networking/mac80211-injection.txt
3690F: include/net/mac80211.h
3691F: net/mac80211/
Jiri Benc64a327a2007-05-05 11:47:08 -07003692
Stefano Brivio1036d862007-12-23 04:46:27 +01003693MAC80211 PID RATE CONTROL
Joe Perches8b58be82009-07-29 15:04:30 -07003694M: Stefano Brivio <stefano.brivio@polimi.it>
3695M: Mattias Nissler <mattias.nissler@gmx.de>
Stefano Brivio1036d862007-12-23 04:46:27 +01003696L: linux-wireless@vger.kernel.org
3697W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
Joe Perches54e58812009-04-07 21:08:10 -07003698T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
Stefano Brivio1036d862007-12-23 04:46:27 +01003699S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003700F: net/mac80211/rc80211_pid*
Stefano Brivio1036d862007-12-23 04:46:27 +01003701
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003702MACVLAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003703M: Patrick McHardy <kaber@trash.net>
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003704L: netdev@vger.kernel.org
3705S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003706F: drivers/net/macvlan.c
3707F: include/linux/if_macvlan.h
Patrick McHardyb863ceb2007-07-14 18:55:06 -07003708
Michael Kerriskfaf16682005-07-31 22:34:47 -07003709MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
Joe Perches8b58be82009-07-29 15:04:30 -07003710M: Michael Kerrisk <mtk.manpages@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003711W: http://www.kernel.org/doc/man-pages
Michael Kerriskbd7ebec2008-10-03 15:23:44 -07003712L: linux-man@vger.kernel.org
Michael Kerrisk1b53dc72009-03-12 14:31:32 -07003713S: Maintained
Michael Kerriskfaf16682005-07-31 22:34:47 -07003714
Stefano Brivio74cda162007-11-19 20:27:46 +01003715MARVELL LIBERTAS WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003716M: Dan Williams <dcbw@redhat.com>
Stefano Brivio74cda162007-11-19 20:27:46 +01003717L: libertas-dev@lists.infradead.org
3718S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003719F: drivers/net/wireless/libertas/
Stefano Brivio74cda162007-11-19 20:27:46 +01003720
Dale Farnsworthb60d6972006-01-16 16:45:45 -07003721MARVELL MV643XX ETHERNET DRIVER
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003722M: Lennert Buytenhek <buytenh@wantstofly.org>
Ralf Baechle979b6c12005-06-13 14:30:40 -07003723L: netdev@vger.kernel.org
Lennert Buytenhekf5ca8502010-02-22 22:34:54 +00003724S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003725F: drivers/net/mv643xx_eth.*
3726F: include/linux/mv643xx.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003728MARVELL MWL8K WIRELESS DRIVER
Lennert Buytenheka040d532010-02-23 09:34:38 +01003729M: Lennert Buytenhek <buytenh@wantstofly.org>
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003730L: linux-wireless@vger.kernel.org
Lennert Buytenhek16345912010-07-29 01:47:04 +02003731S: Odd Fixes
Lennert Buytenheka2c3f652009-08-18 05:13:48 +02003732F: drivers/net/wireless/mwl8k.c
3733
Pierre Ossman2a695672009-03-16 19:52:26 +01003734MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04003735M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04003736S: Odd Fixes
3737F: drivers/mmc/host/mvsdio.*
Pierre Ossman2a695672009-03-16 19:52:26 +01003738
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003739MARVELL YUKON / SYSKONNECT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003740M: Mirko Lindner <mlindner@syskonnect.de>
3741M: Ralph Roesler <rroesler@syskonnect.de>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07003742W: http://www.syskonnect.com
3743S: Supported
3744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745MATROX FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003746M: Petr Vandrovec <vandrove@vc.cvut.cz>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01003747L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003749F: drivers/video/matrox/matroxfb_*
3750F: include/linux/matroxfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003752MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003753M: "Hans J. Koch" <hjk@linutronix.de>
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003754L: lm-sensors@lm-sensors.org
3755S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003756F: Documentation/hwmon/max6650
3757F: drivers/hwmon/max6650.c
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +02003758
Joe Perches127c49a2009-04-08 08:34:04 -07003759MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
Joe Perches8b58be82009-07-29 15:04:30 -07003760M: Mauro Carvalho Chehab <mchehab@infradead.org>
Joe Perches127c49a2009-04-08 08:34:04 -07003761P: LinuxTV.org Project
3762L: linux-media@vger.kernel.org
3763W: http://linuxtv.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003764Q: http://patchwork.kernel.org/project/linux-media/list/
Joe Perches127c49a2009-04-08 08:34:04 -07003765T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
3766S: Maintained
3767F: Documentation/dvb/
3768F: Documentation/video4linux/
3769F: drivers/media/
3770F: include/media/
3771F: include/linux/dvb/
3772F: include/linux/videodev*.h
Steven Rostedt70ea91f2006-07-30 03:03:53 -07003773
3774MEGARAID SCSI DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07003775M: Neela Syam Kolli <megaraidlinux@lsi.com>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003776L: linux-scsi@vger.kernel.org
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003777W: http://megaraid.lsilogic.com
3778S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003779F: Documentation/scsi/megaraid.txt
3780F: drivers/scsi/megaraid.*
3781F: drivers/scsi/megaraid/
Kolli, Neela Syam757e0102005-10-14 15:59:13 -07003782
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003783MEMORY MANAGEMENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784L: linux-mm@kvack.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785W: http://www.linux-mm.org
3786S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003787F: include/linux/mm.h
3788F: mm/
David Woodhousef4e9ce66c2006-04-11 19:29:07 -04003789
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003790MEMORY RESOURCE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003791M: Balbir Singh <balbir@linux.vnet.ibm.com>
KAMEZAWA Hiroyukia38374b2010-03-10 15:22:40 -08003792M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
Joe Perches8b58be82009-07-29 15:04:30 -07003793M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003794L: linux-mm@kvack.org
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003795S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003796F: mm/memcontrol.c
akpm@linux-foundation.org938a9202008-03-04 14:28:29 -08003797
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798MEMORY TECHNOLOGY DEVICES (MTD)
Joe Perches8b58be82009-07-29 15:04:30 -07003799M: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800L: linux-mtd@lists.infradead.org
Joe Perches8a6e2532010-03-05 13:43:11 -08003801W: http://www.linux-mtd.infradead.org/
3802Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
Josh Boyer2c560ac2005-11-23 15:43:57 -08003803T: git git://git.infradead.org/mtd-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003805F: drivers/mtd/
3806F: include/linux/mtd/
3807F: include/mtd/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
Michal Simekc6375b02009-03-27 14:25:52 +01003809MICROBLAZE ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07003810M: Michal Simek <monstr@monstr.eu>
Michal Simekc6375b02009-03-27 14:25:52 +01003811L: microblaze-uclinux@itee.uq.edu.au
3812W: http://www.monstr.eu/fdt/
3813T: git git://git.monstr.eu/linux-2.6-microblaze.git
3814S: Supported
Michal Simek0a8c7912009-04-14 11:38:57 +02003815F: arch/microblaze/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
3817MICROTEK X6 SCANNER
Joe Perches8b58be82009-07-29 15:04:30 -07003818M: Oliver Neukum <oliver@neukum.name>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003820F: drivers/usb/image/microtek.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
3822MIPS
Joe Perches8b58be82009-07-29 15:04:30 -07003823M: Ralf Baechle <ralf@linux-mips.org>
Ralf Baechled50f7ec2005-10-04 13:30:10 +01003824W: http://www.linux-mips.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825L: linux-mips@linux-mips.org
Joe Perches54e58812009-04-07 21:08:10 -07003826T: git git://git.linux-mips.org/pub/scm/linux.git
Ralf Baechle7425b342006-03-10 13:47:21 +00003827S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003828F: Documentation/mips/
3829F: arch/mips/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
3831MISCELLANEOUS MCA-SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003832M: James Bottomley <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003834F: Documentation/ia64/mca.txt
3835F: Documentation/mca.txt
3836F: drivers/mca/
3837F: include/linux/mca*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
3839MODULE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003840M: Rusty Russell <rusty@rustcorp.com.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003842F: include/linux/module.h
3843F: kernel/module.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003846M: Stelian Pop <stelian@popies.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847W: http://popies.net/meye/
3848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003849F: Documentation/video4linux/meye.txt
3850F: drivers/media/video/meye.*
3851F: include/linux/meye.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Pavel Pisac58ff042007-05-16 01:10:41 +02003853MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003854M: Pavel Pisa <ppisa@pikron.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07003855L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Pavel Pisac58ff042007-05-16 01:10:41 +02003856S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003857F: drivers/mmc/host/imxmmc.*
Pavel Pisac58ff042007-05-16 01:10:41 +02003858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859MOUSE AND MISC DEVICES [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07003860M: Alessandro Rubini <rubini@ipvvis.unipv.it>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003862F: drivers/input/mouse/
3863F: include/linux/gpio_mouse.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Jiri Slabyb9705b62008-04-30 00:53:48 -07003865MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
Joe Perches8b58be82009-07-29 15:04:30 -07003866M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003867S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003868F: Documentation/serial/moxa-smartio
3869F: drivers/char/mxser.*
Jiri Slabyd7354102006-12-08 02:38:35 -08003870
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003871MSI LAPTOP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07003872M: Lennart Poettering <mzxreary@0pointer.de>
Matthew Garrettd0944852010-02-11 10:40:13 -05003873L: platform-driver-x86@vger.kernel.org
Joe Perches04bdfb92007-12-22 14:03:27 -08003874W: https://tango.0pointer.de/mailman/listinfo/s270-linux
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003875W: http://0pointer.de/lennart/tchibo.html
3876S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003877F: drivers/platform/x86/msi-laptop.c
Lennart Poettering8c4c7312006-10-06 01:27:02 -04003878
Anisse Astier0f1006b2009-12-17 11:28:49 +01003879MSI WMI SUPPORT
3880M: Anisse Astier <anisse@astier.eu>
Matthew Garrettd0944852010-02-11 10:40:13 -05003881L: platform-driver-x86@vger.kernel.org
Anisse Astier0f1006b2009-12-17 11:28:49 +01003882S: Supported
3883F: drivers/platform/x86/msi-wmi.c
3884
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003885MULTIFUNCTION DEVICES (MFD)
Joe Perches8b58be82009-07-29 15:04:30 -07003886M: Samuel Ortiz <sameo@linux.intel.com>
Joe Perches54e58812009-04-07 21:08:10 -07003887T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003888S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003889F: drivers/mfd/
Samuel Ortiz4e0d13c2008-07-04 09:59:53 -07003890
Pierre Ossman5c4e6f12007-05-21 20:23:20 +02003891MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
Pierre Ossman3822a0e32009-07-31 12:27:28 +02003892S: Orphan
Andrew Mortonb2503a92009-08-18 14:11:12 -07003893L: linux-mmc@vger.kernel.org
Joe Perches679655d2009-04-07 20:44:32 -07003894F: drivers/mmc/
3895F: include/linux/mmc/
Russell Kingbaca2da2006-06-04 17:36:31 +01003896
David Brownell15a05802007-08-08 09:12:54 -07003897MULTIMEDIA CARD (MMC) ETC. OVER SPI
Joe Perches8b58be82009-07-29 15:04:30 -07003898M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvarebaaea1d2008-09-20 12:34:33 +02003899S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07003900F: drivers/mmc/host/mmc_spi.c
3901F: include/linux/spi/mmc_spi.h
David Brownell15a05802007-08-08 09:12:54 -07003902
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903MULTISOUND SOUND DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07003904M: Andrew Veliath <andrewtv@usa.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003906F: Documentation/sound/oss/MultiSound
3907F: sound/oss/msnd*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Jiri Slabyd7354102006-12-08 02:38:35 -08003909MULTITECH MULTIPORT CARD (ISICOM)
Joe Perches8b58be82009-07-29 15:04:30 -07003910M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabyd7354102006-12-08 02:38:35 -08003911S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003912F: drivers/char/isicom.c
3913F: include/linux/isicom.h
Jiri Slabyd7354102006-12-08 02:38:35 -08003914
Felipe Balbi550a7372008-07-24 12:27:36 +03003915MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
Joe Perches8b58be82009-07-29 15:04:30 -07003916M: Felipe Balbi <felipe.balbi@nokia.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02003917L: linux-usb@vger.kernel.org
Felipe Balbi8a700f32009-12-15 11:08:45 +02003918T: git git://gitorious.org/usb/usb.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02003919S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003920F: drivers/usb/musb/
Felipe Balbi550a7372008-07-24 12:27:36 +03003921
Brice Goglin2d3cf582008-05-17 12:45:36 +02003922MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
Joe Perches8b58be82009-07-29 15:04:30 -07003923M: Andrew Gallatin <gallatin@myri.com>
3924M: Brice Goglin <brice@myri.com>
Brice Goglin2d3cf582008-05-17 12:45:36 +02003925L: netdev@vger.kernel.org
3926W: http://www.myri.com/scs/download-Myri10GE.html
3927S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003928F: drivers/net/myri10ge/
Brice Goglin2d3cf582008-05-17 12:45:36 +02003929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930NATSEMI ETHERNET DRIVER (DP8381x)
Joe Perches8b58be82009-07-29 15:04:30 -07003931M: Tim Hockin <thockin@hockin.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003933F: drivers/net/natsemi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
3935NCP FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07003936M: Petr Vandrovec <vandrove@vc.cvut.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003938F: fs/ncpfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
3940NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
Joe Perches8b58be82009-07-29 15:04:30 -07003941M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942L: linux-scsi@vger.kernel.org
3943S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003944F: drivers/scsi/NCR_D700.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003946NETEFFECT IWARP RNIC DRIVER (IW_NES)
Joe Perches8b58be82009-07-29 15:04:30 -07003947M: Faisal Latif <faisal.latif@intel.com>
3948M: Chien Tung <chien.tin.tung@intel.com>
Roland Dreiere6cc0fd2009-09-07 21:54:38 -07003949L: linux-rdma@vger.kernel.org
Glenn Streiff3c2d7742008-02-04 20:20:45 -08003950W: http://www.neteffect.com
3951S: Supported
3952F: drivers/infiniband/hw/nes/
3953
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003954NETEM NETWORK EMULATOR
Joe Perches8b58be82009-07-29 15:04:30 -07003955M: Stephen Hemminger <shemminger@linux-foundation.org>
David Brownellf318a632007-04-23 14:41:06 -07003956L: netem@lists.linux-foundation.org
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003957S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07003958F: net/sched/sch_netem.c
Stephen Hemmingerbe2f2e82006-05-25 16:14:43 -07003959
Jon Masonb2f5a052010-07-15 08:47:27 +00003960NETERION 10GbE DRIVERS (s2io/vxge)
3961M: Ramkrishna Vepa <ramkrishna.vepa@exar.com>
3962M: Sivakumar Subramani <sivakumar.subramani@exar.com>
3963M: Sreenivasa Honnur <sreenivasa.honnur@exar.com>
3964M: Jon Mason <jon.mason@exar.com>
Jiri Slaby4a584482007-08-30 23:56:39 -07003965L: netdev@vger.kernel.org
Ramkrishna Vepab136d1c2009-04-01 18:14:25 +00003966W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
3967W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
Jiri Slaby4a584482007-08-30 23:56:39 -07003968S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003969F: Documentation/networking/s2io.txt
3970F: drivers/net/s2io*
Jon Masonb2f5a052010-07-15 08:47:27 +00003971F: Documentation/networking/vxge.txt
3972F: drivers/net/vxge/
Jiri Slaby4a584482007-08-30 23:56:39 -07003973
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974NETFILTER/IPTABLES/IPCHAINS
3975P: Rusty Russell
3976P: Marc Boucher
3977P: James Morris
3978P: Harald Welte
3979P: Jozsef Kadlecsik
Joe Perches8b58be82009-07-29 15:04:30 -07003980M: Patrick McHardy <kaber@trash.net>
Patrick McHardy1a03b812007-09-18 13:19:26 -07003981L: netfilter-devel@vger.kernel.org
3982L: netfilter@vger.kernel.org
Patrick McHardy82b98542006-10-12 14:08:55 -07003983L: coreteam@netfilter.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984W: http://www.netfilter.org/
3985W: http://www.iptables.org/
Joe Perches34693712009-11-11 14:26:45 -08003986T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07003988F: include/linux/netfilter*
3989F: include/linux/netfilter/
3990F: include/net/netfilter/
3991F: net/*/netfilter.c
3992F: net/*/netfilter/
3993F: net/netfilter/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Paul Moore4cc67732006-09-25 15:57:13 -07003995NETLABEL
Joe Perches8b58be82009-07-29 15:04:30 -07003996M: Paul Moore <paul.moore@hp.com>
Paul Moore4cc67732006-09-25 15:57:13 -07003997W: http://netlabel.sf.net
3998L: netdev@vger.kernel.org
3999S: Supported
Joe Perches80811492009-04-08 20:20:27 -07004000F: Documentation/netlabel/
Joe Perches679655d2009-04-07 20:44:32 -07004001F: include/net/netlabel.h
4002F: net/netlabel/
Paul Moore4cc67732006-09-25 15:57:13 -07004003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004NETROM NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004005M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004007W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004009F: include/linux/netrom.h
4010F: include/net/netrom.h
4011F: net/netrom/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Pavel Machek5ddb88c2006-09-29 02:01:29 -07004013NETWORK BLOCK DEVICE (NBD)
Joe Perches8b58be82009-07-29 15:04:30 -07004014M: Paul Clements <Paul.Clements@steeleye.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004016F: Documentation/blockdev/nbd.txt
4017F: drivers/block/nbd.c
4018F: include/linux/nbd.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019
Neil Horman6e436502009-10-05 03:56:55 +00004020NETWORK DROP MONITOR
4021M: Neil Horman <nhorman@tuxdriver.com>
4022L: netdev@vger.kernel.org
4023S: Maintained
4024W: https://fedorahosted.org/dropwatch/
4025F: net/core/drop_monitor.c
4026
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027NETWORKING [GENERAL]
Joe Perches8b58be82009-07-29 15:04:30 -07004028M: "David S. Miller" <davem@davemloft.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004029L: netdev@vger.kernel.org
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004030W: http://www.linuxfoundation.org/en/Net
Eric Dumazetd1f68032009-10-10 21:40:54 +00004031W: http://patchwork.ozlabs.org/project/netdev/list/
Joe Perchesb1e8fd52009-04-16 09:38:46 +00004032T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perchesdffc1432009-11-04 09:38:58 -08004033T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004035F: net/
4036F: include/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004037F: include/linux/in.h
4038F: include/linux/net.h
4039F: include/linux/netdevice.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
4041NETWORKING [IPv4/IPv6]
Joe Perches8b58be82009-07-29 15:04:30 -07004042M: "David S. Miller" <davem@davemloft.net>
4043M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
4044M: "Pekka Savola (ipv6)" <pekkas@netcore.fi>
4045M: James Morris <jmorris@namei.org>
4046M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
4047M: Patrick McHardy <kaber@trash.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004048L: netdev@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004049T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004051F: net/ipv4/
4052F: net/ipv6/
4053F: include/net/ip*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
James Morris10e2ff12007-08-25 14:41:28 -07004055NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
Joe Perches8b58be82009-07-29 15:04:30 -07004056M: Paul Moore <paul.moore@hp.com>
James Morris10e2ff12007-08-25 14:41:28 -07004057L: netdev@vger.kernel.org
4058S: Maintained
4059
John W. Linville29f8f632006-01-18 14:52:48 -08004060NETWORKING [WIRELESS]
Joe Perches8b58be82009-07-29 15:04:30 -07004061M: "John W. Linville" <linville@tuxdriver.com>
Randy Dunlap2cb4abd2007-02-07 15:52:36 -08004062L: linux-wireless@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004063Q: http://patchwork.kernel.org/project/linux-wireless/list/
Joe Perches54e58812009-04-07 21:08:10 -07004064T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
John W. Linville29f8f632006-01-18 14:52:48 -08004065S: Maintained
Joe Perches34b921c2009-08-07 13:16:15 -07004066F: net/mac80211/
4067F: net/rfkill/
Joe Perches679655d2009-04-07 20:44:32 -07004068F: net/wireless/
4069F: include/net/ieee80211*
Joe Perchescc8b4a22009-06-18 16:49:24 -07004070F: include/linux/wireless.h
Joe Perchesc984e242010-08-09 17:20:39 -07004071F: include/net/iw_handler.h
Joe Perches34b921c2009-08-07 13:16:15 -07004072F: drivers/net/wireless/
John W. Linville29f8f632006-01-18 14:52:48 -08004073
Joe Perches788873a2009-04-16 09:38:45 +00004074NETWORKING DRIVERS
4075L: netdev@vger.kernel.org
4076W: http://www.linuxfoundation.org/en/Net
4077T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
Joe Perches3af26f52010-02-08 22:42:40 -08004078T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
Joe Perches788873a2009-04-16 09:38:45 +00004079S: Odd Fixes
4080F: drivers/net/
Joe Perches018d21e2009-08-07 06:43:01 +00004081F: include/linux/if_*
4082F: include/linux/*device.h
Joe Perches788873a2009-04-16 09:38:45 +00004083
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004084NETXEN (1/10) GbE SUPPORT
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004085M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004086L: netdev@vger.kernel.org
Amit Kumar Salecha9c2b5bd2009-11-13 16:37:37 +00004087W: http://www.qlogic.com
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004088S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004089F: drivers/net/netxen/
Amit S. Kale3d396eb2006-10-21 15:33:03 -04004090
J. Bruce Fieldse8b43552008-07-23 08:49:50 -04004091NFS, SUNRPC, AND LOCKD CLIENTS
Joe Perches8b58be82009-07-29 15:04:30 -07004092M: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust78f58152007-12-12 20:16:06 -05004093L: linux-nfs@vger.kernel.org
4094W: http://client.linux-nfs.org
4095T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004097F: fs/lockd/
4098F: fs/nfs/
4099F: fs/nfs_common/
4100F: net/sunrpc/
4101F: include/linux/lockd/
4102F: include/linux/nfs*
4103F: include/linux/sunrpc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
4105NI5010 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004106M: Jan-Pascal van Best <janpascal@vanbest.org>
4107M: Andreas Mohr <andi@lisas.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004108L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004110F: drivers/net/ni5010.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004112NILFS2 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004113M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
Ryusuke Konishi6aff43f2010-01-02 21:41:53 +09004114L: linux-nilfs@vger.kernel.org
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004115W: http://www.nilfs.org/en/
4116S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004117F: Documentation/filesystems/nilfs2.txt
4118F: fs/nilfs2/
4119F: include/linux/nilfs2_fs.h
Ryusuke Konishi85ef9ce2009-04-06 19:01:46 -07004120
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004122M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4124S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004125F: Documentation/scsi/NinjaSCSI.txt
4126F: drivers/scsi/pcmcia/nsp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
4128NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004129M: GOTO Masanori <gotom@debian.or.jp>
4130M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
4132S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004133F: Documentation/scsi/NinjaSCSI.txt
4134F: drivers/scsi/nsp32*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136NTFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004137M: Anton Altaparmakov <aia21@cantab.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138L: linux-ntfs-dev@lists.sourceforge.net
Adrian Bunk169ccbd2008-09-02 14:35:37 -07004139W: http://www.linux-ntfs.org/
Joe Perches54e58812009-04-07 21:08:10 -07004140T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004142F: Documentation/filesystems/ntfs.txt
4143F: fs/ntfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004145NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004146M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004147L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004148S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004149F: drivers/video/riva/
4150F: drivers/video/nvidia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
Tony Lindgrenf5525782009-05-28 13:23:53 -07004152OMAP SUPPORT
Joe Perches0e24bdd2009-10-26 16:49:40 -07004153M: Tony Lindgren <tony@atomide.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004154L: linux-omap@vger.kernel.org
4155W: http://www.muru.com/linux/omap/
4156W: http://linux.omap.com/
Joe Perches8a6e2532010-03-05 13:43:11 -08004157Q: http://patchwork.kernel.org/project/linux-omap/list/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004158T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
4159S: Maintained
Felipe Contreras4e04d5a2009-09-21 17:04:25 -07004160F: arch/arm/*omap*/
Tony Lindgrenf5525782009-05-28 13:23:53 -07004161
4162OMAP CLOCK FRAMEWORK SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004163M: Paul Walmsley <paul@pwsan.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004164L: linux-omap@vger.kernel.org
4165S: Maintained
4166F: arch/arm/*omap*/*clock*
4167
4168OMAP POWER MANAGEMENT SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004169M: Kevin Hilman <khilman@deeprootsystems.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004170L: linux-omap@vger.kernel.org
4171S: Maintained
4172F: arch/arm/*omap*/*pm*
4173
4174OMAP AUDIO SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004175M: Jarkko Nikula <jhnikula@gmail.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004176L: alsa-devel@alsa-project.org (subscribers-only)
4177L: linux-omap@vger.kernel.org
4178S: Maintained
4179F: sound/soc/omap/
4180
4181OMAP FRAMEBUFFER SUPPORT
Tomi Valkeinen3043c102010-01-07 13:06:51 +02004182M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004183L: linux-fbdev@vger.kernel.org
Tony Lindgrenf5525782009-05-28 13:23:53 -07004184L: linux-omap@vger.kernel.org
4185S: Maintained
4186F: drivers/video/omap/
4187
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004188OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004189M: Tomi Valkeinen <tomi.valkeinen@nokia.com>
4190L: linux-omap@vger.kernel.org
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004191L: linux-fbdev@vger.kernel.org
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004192S: Maintained
Tomi Valkeinen676eec02010-01-07 13:18:04 +02004193F: drivers/video/omap2/
Tomi Valkeinen178ff4c2009-09-22 13:30:24 +03004194F: Documentation/arm/OMAP/DSS
4195
Tony Lindgrenf5525782009-05-28 13:23:53 -07004196OMAP MMC SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004197M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004198L: linux-omap@vger.kernel.org
4199S: Maintained
Madhusudhan Chikkature653f41b2009-09-22 16:45:06 -07004200F: drivers/mmc/host/omap.c
4201
4202OMAP HS MMC SUPPORT
4203M: Madhusudhan Chikkature <madhu.cr@ti.com>
4204L: linux-omap@vger.kernel.org
4205S: Maintained
4206F: drivers/mmc/host/omap_hsmmc.c
Tony Lindgrenf5525782009-05-28 13:23:53 -07004207
4208OMAP RANDOM NUMBER GENERATOR SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004209M: Deepak Saxena <dsaxena@plexity.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004210S: Maintained
4211F: drivers/char/hw_random/omap-rng.c
4212
4213OMAP USB SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004214M: Felipe Balbi <felipe.balbi@nokia.com>
4215M: David Brownell <dbrownell@users.sourceforge.net>
Tony Lindgrenf5525782009-05-28 13:23:53 -07004216L: linux-usb@vger.kernel.org
4217L: linux-omap@vger.kernel.org
4218S: Maintained
Joe Perchesa16fbd62010-08-09 17:20:48 -07004219F: drivers/usb/*/*omap*
4220F: arch/arm/*omap*/usb*
Tony Lindgrenf5525782009-05-28 13:23:53 -07004221
Bob Copeland0ad122d2008-07-25 19:45:18 -07004222OMFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004223M: Bob Copeland <me@bobcopeland.com>
Bob Copeland0ad122d2008-07-25 19:45:18 -07004224L: linux-karma-devel@lists.sourceforge.net
4225S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004226F: Documentation/filesystems/omfs.txt
4227F: fs/omfs/
Bob Copeland0ad122d2008-07-25 19:45:18 -07004228
Harald Weltec1986ee2005-11-13 16:06:29 -08004229OMNIKEY CARDMAN 4000 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004230M: Harald Welte <laforge@gnumonks.org>
Harald Weltec1986ee2005-11-13 16:06:29 -08004231S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004232F: drivers/char/pcmcia/cm4000_cs.c
4233F: include/linux/cm4000_cs.h
Harald Weltec1986ee2005-11-13 16:06:29 -08004234
Harald Welte77c44ab2005-11-13 16:06:26 -08004235OMNIKEY CARDMAN 4040 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004236M: Harald Welte <laforge@gnumonks.org>
Harald Welte77c44ab2005-11-13 16:06:26 -08004237S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004238F: drivers/char/pcmcia/cm4040_cs.*
Harald Welte77c44ab2005-11-13 16:06:26 -08004239
Jonathan Corbet77d51402007-03-22 19:44:17 -03004240OMNIVISION OV7670 SENSOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004241M: Jonathan Corbet <corbet@lwn.net>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004242L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004243T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jonathan Corbet77d51402007-03-22 19:44:17 -03004244S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004245F: drivers/media/video/ov7670.c
Jonathan Corbet77d51402007-03-22 19:44:17 -03004246
Thomas Gleixner431bca72007-05-02 09:31:35 +02004247ONENAND FLASH DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004248M: Kyungmin Park <kyungmin.park@samsung.com>
Thomas Gleixner431bca72007-05-02 09:31:35 +02004249L: linux-mtd@lists.infradead.org
4250S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004251F: drivers/mtd/onenand/
4252F: include/linux/mtd/onenand*.h
Thomas Gleixner431bca72007-05-02 09:31:35 +02004253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254ONSTREAM SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004255M: Willem Riede <osst@riede.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256L: osst-users@lists.sourceforge.net
4257L: linux-scsi@vger.kernel.org
4258S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004259F: drivers/scsi/osst*
4260F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004262OPENCORES I2C BUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004263M: Peter Korsgaard <jacmet@sunsite.dk>
Jean Delvare846557d2008-10-30 15:55:47 +01004264L: linux-i2c@vger.kernel.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004265S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004266F: Documentation/i2c/busses/i2c-ocores
4267F: drivers/i2c/busses/i2c-ocores.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004268
Grant Likely860c44c2009-10-26 16:49:49 -07004269OPEN FIRMWARE AND FLATTENED DEVICE TREE
4270M: Grant Likely <grant.likely@secretlab.ca>
4271L: devicetree-discuss@lists.ozlabs.org
4272W: http://fdt.secretlab.ca
Grant Likely3bbf9b92010-06-08 07:48:29 -06004273T: git git://git.secretlab.ca/git/linux-2.6.git
Grant Likely860c44c2009-10-26 16:49:49 -07004274S: Maintained
4275F: drivers/of
4276F: include/linux/of*.h
4277K: of_get_property
4278
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279OPROFILE
Joe Perches8b58be82009-07-29 15:04:30 -07004280M: Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281L: oprofile-list@lists.sf.net
4282S: Maintained
Robert Richter81c4a8a2010-04-22 19:14:49 +02004283F: arch/*/include/asm/oprofile*.h
Joe Perches679655d2009-04-07 20:44:32 -07004284F: arch/*/oprofile/
4285F: drivers/oprofile/
4286F: include/linux/oprofile.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004288ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
Joe Perches8b58be82009-07-29 15:04:30 -07004289M: Mark Fasheh <mfasheh@suse.com>
4290M: Joel Becker <joel.becker@oracle.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004291L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
4292W: http://oss.oracle.com/projects/ocfs2/
Joel Becker2191aeb2009-04-17 15:58:50 -07004293T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004294S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004295F: Documentation/filesystems/ocfs2.txt
4296F: Documentation/filesystems/dlmfs.txt
4297F: fs/ocfs2/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004298
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299ORINOCO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004300M: Pavel Roskin <proski@gnu.org>
4301M: David Gibson <hermes@gibson.dropbear.id.au>
Johannes Berg724c6b32007-04-23 12:18:20 -07004302L: linux-wireless@vger.kernel.org
Pavel Roskinecffdde2005-05-05 16:16:01 -07004303L: orinoco-users@lists.sourceforge.net
4304L: orinoco-devel@lists.sourceforge.net
4305W: http://www.nongnu.org/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004307F: drivers/net/wireless/orinoco/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004309OSD LIBRARY and FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004310M: Boaz Harrosh <bharrosh@panasas.com>
4311M: Benny Halevy <bhalevy@panasas.com>
Boaz Harrosh68274792009-01-25 17:24:14 +02004312L: osd-dev@open-osd.org
4313W: http://open-osd.org
Joe Perches54e58812009-04-07 21:08:10 -07004314T: git git://git.open-osd.org/open-osd.git
Boaz Harrosh68274792009-01-25 17:24:14 +02004315S: Maintained
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004316F: drivers/scsi/osd/
Joe Perches6b6f0b62009-08-18 14:11:06 -07004317F: include/scsi/osd_*
Boaz Harrosh42c55aa2009-06-17 16:54:34 +03004318F: fs/exofs/
Boaz Harrosh68274792009-01-25 17:24:14 +02004319
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004320P54 WIRELESS DRIVER
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004321M: Christian Lamparter <chunkeey@googlemail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004322L: linux-wireless@vger.kernel.org
Christian Lamparter084cb0f2010-07-12 19:01:41 +02004323W: http://wireless.kernel.org/en/users/Drivers/p54
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004324S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004325F: drivers/net/wireless/p54/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004326
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004327PA SEMI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004328M: Olof Johansson <olof@lixom.net>
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004329L: netdev@vger.kernel.org
4330S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004331F: drivers/net/pasemi_mac.*
Olof Johanssonf5cd7872007-01-31 21:43:54 -06004332
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004333PA SEMI SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004334M: Olof Johansson <olof@lixom.net>
Jean Delvare846557d2008-10-30 15:55:47 +01004335L: linux-i2c@vger.kernel.org
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004336S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004337F: drivers/i2c/busses/i2c-pasemi.c
Olof Johanssonbeb58aa2007-02-13 22:09:03 +01004338
Harald Welte709ee532008-09-23 17:46:57 +02004339PANASONIC LAPTOP ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004340M: Harald Welte <laforge@gnumonks.org>
Matthew Garrettd0944852010-02-11 10:40:13 -05004341L: platform-driver-x86@vger.kernel.org
Harald Welte709ee532008-09-23 17:46:57 +02004342S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004343F: drivers/platform/x86/panasonic-laptop.c
Harald Welte709ee532008-09-23 17:46:57 +02004344
David Howells4fa97182008-10-13 10:42:44 +01004345PANASONIC MN10300/AM33 PORT
Joe Perches8b58be82009-07-29 15:04:30 -07004346M: David Howells <dhowells@redhat.com>
4347M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
David Howells4fa97182008-10-13 10:42:44 +01004348L: linux-am33-list@redhat.com (moderated for non-subscribers)
4349W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
4350S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004351F: Documentation/mn10300/
4352F: arch/mn10300/
David Howells4fa97182008-10-13 10:42:44 +01004353
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354PARALLEL PORT SUPPORT
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004355L: linux-parport@lists.infradead.org (subscribers-only)
David Brownell5fdc2ab2007-03-05 00:30:13 -08004356S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004357F: drivers/parport/
4358F: include/linux/parport*.h
4359F: drivers/char/ppdev.c
4360F: include/linux/ppdev.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004362PARAVIRT_OPS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07004363M: Jeremy Fitzhardinge <jeremy@xensource.com>
4364M: Chris Wright <chrisw@sous-sol.org>
4365M: Alok Kataria <akataria@vmware.com>
4366M: Rusty Russell <rusty@rustcorp.com.au>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004367L: virtualization@lists.osdl.org
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004368S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004369F: Documentation/ia64/paravirt_ops.txt
4370F: arch/*/kernel/paravirt*
4371F: arch/*/include/asm/paravirt.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
Joe Perches8b58be82009-07-29 15:04:30 -07004374M: Tim Waugh <tim@cyberelk.net>
Randy Dunlap3dd1a322007-05-16 22:11:12 -07004375L: linux-parport@lists.infradead.org (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376W: http://www.torque.net/linux-pp.html
4377S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004378F: Documentation/blockdev/paride.txt
4379F: drivers/block/paride/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380
4381PARISC ARCHITECTURE
Joe Perches8b58be82009-07-29 15:04:30 -07004382M: Kyle McMartin <kyle@mcmartin.ca>
4383M: Helge Deller <deller@gmx.de>
James Bottomleyb8828772009-08-04 23:59:55 +00004384M: "James E.J. Bottomley" <jejb@parisc-linux.org>
Kyle McMartinac6aecb2007-12-03 22:04:34 +00004385L: linux-parisc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386W: http://www.parisc-linux.org/
Joe Perches8a6e2532010-03-05 13:43:11 -08004387Q: http://patchwork.kernel.org/project/linux-parisc/list/
Joe Perches54e58812009-04-07 21:08:10 -07004388T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004390F: arch/parisc/
4391F: drivers/parisc/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Jim Cromie1662d322006-10-06 00:43:59 -07004393PC87360 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004394M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004395L: lm-sensors@lm-sensors.org
4396S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004397F: Documentation/hwmon/pc87360
4398F: drivers/hwmon/pc87360.c
Jim Cromie1662d322006-10-06 00:43:59 -07004399
4400PC8736x GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004401M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07004402S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004403F: drivers/char/pc8736x_gpio.c
Jim Cromie1662d322006-10-06 00:43:59 -07004404
Jean Delvare1ad107f2010-08-14 21:09:00 +02004405PC87427 HARDWARE MONITORING DRIVER
4406M: Jean Delvare <khali@linux-fr.org>
4407L: lm-sensors@lm-sensors.org
4408S: Maintained
4409F: Documentation/hwmon/pc87427
4410F: drivers/hwmon/pc87427.c
4411
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004412PCA9532 LED DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004413M: Riku Voipio <riku.voipio@iki.fi>
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004414S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07004415F: drivers/leds/leds-pca9532.c
4416F: include/linux/leds-pca9532.h
Riku Voipiob26e0ed2009-03-03 21:37:17 +02004417
Wolfram Sanga1867d32009-09-18 22:45:51 +02004418PCA9564/PCA9665 I2C BUS DRIVER
4419M: Wolfram Sang <w.sang@pengutronix.de>
4420L: linux-i2c@vger.kernel.org
4421S: Maintained
4422F: drivers/i2c/algos/i2c-algo-pca.c
4423F: drivers/i2c/busses/i2c-pca-*
4424F: include/linux/i2c-algo-pca.h
4425F: include/linux/i2c-pca-platform.h
4426
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004427PCI ERROR RECOVERY
Joe Perches8b58be82009-07-29 15:04:30 -07004428M: Linas Vepstas <linas@austin.ibm.com>
Jesse Barnesc1f69db2008-05-19 15:28:16 -07004429L: linux-pci@vger.kernel.org
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004430S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004431F: Documentation/PCI/pci-error-recovery.txt
4432F: Documentation/powerpc/eeh-pci-error-recovery.txt
linas@austin.ibm.com065c6352005-12-02 19:16:18 -06004433
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434PCI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004435M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes29054742008-05-03 08:35:49 -07004436L: linux-pci@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08004437Q: http://patchwork.kernel.org/project/linux-pci/list/
Joe Perches54e58812009-04-07 21:08:10 -07004438T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004440F: Documentation/PCI/
4441F: drivers/pci/
4442F: include/linux/pci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004444PCI HOTPLUG
4445M: Jesse Barnes <jbarnes@virtuousgeek.org>
Jesse Barnes64dab202008-06-10 14:20:03 -07004446L: linux-pci@vger.kernel.org
Len Brown8b59a452007-01-08 19:03:28 -05004447S: Supported
Jesse Barnesbe3652b2009-09-17 10:01:07 -07004448F: drivers/pci/hotplug
Kristen Accardi8cf4c192005-08-16 15:16:10 -07004449
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450PCMCIA SUBSYSTEM
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004451P: Linux PCMCIA Team
Randy Dunlapf5df58812006-07-14 00:24:29 -07004452L: linux-pcmcia@lists.infradead.org
Joe Perches6650e0a2007-12-10 15:49:32 -08004453W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
Joe Perches54e58812009-04-07 21:08:10 -07004454T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
Dominik Brodowski4230dfc2005-07-07 17:59:06 -07004455S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004456F: Documentation/pcmcia/
4457F: drivers/pcmcia/
4458F: include/pcmcia/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
4460PCNET32 NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004461M: Don Fry <pcnet32@verizon.net>
Ralf Baechle979b6c12005-06-13 14:30:40 -07004462L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004464F: drivers/net/pcnet32.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004466PER-TASK DELAY ACCOUNTING
Joe Perches8b58be82009-07-29 15:04:30 -07004467M: Balbir Singh <balbir@linux.vnet.ibm.com>
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004468S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004469F: include/linux/delayacct.h
4470F: kernel/delayacct.c
Shailabh Nagarad4ecbc2006-07-14 00:24:44 -07004471
Ingo Molnar57c0c152009-09-21 12:20:38 +02004472PERFORMANCE EVENTS SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004473M: Peter Zijlstra <a.p.zijlstra@chello.nl>
4474M: Paul Mackerras <paulus@samba.org>
4475M: Ingo Molnar <mingo@elte.hu>
Ingo Molnarcfb581b2010-03-08 15:20:50 +01004476M: Arnaldo Carvalho de Melo <acme@redhat.com>
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004477S: Supported
Robert Richter141c4292010-03-17 12:49:11 +01004478F: kernel/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004479F: include/linux/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004480F: arch/*/kernel/perf_event*.c
4481F: arch/*/kernel/*/perf_event*.c
4482F: arch/*/kernel/*/*/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004483F: arch/*/include/asm/perf_event.h
Robert Richter141c4292010-03-17 12:49:11 +01004484F: arch/*/lib/perf_event*.c
Vincent Legolla0032362009-10-13 14:48:14 +02004485F: arch/*/kernel/perf_callchain.c
4486F: tools/perf/
Paul Mackerras6c0b3242009-04-09 09:27:37 +10004487
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004488PERSONALITY HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07004489M: Christoph Hellwig <hch@infradead.org>
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004490L: linux-abi-devel@lists.sourceforge.net
4491S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004492F: include/linux/personality.h
Jim Cromiedd49d0f2006-03-24 18:08:17 +01004493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494PHRAM MTD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004495M: Joern Engel <joern@lazybastard.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496L: linux-mtd@lists.infradead.org
4497S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004498F: drivers/mtd/devices/phram.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
Peter Osterlund249a6772005-09-27 21:45:30 -07004500PKTCDVD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004501M: Peter Osterlund <petero2@telia.com>
Peter Osterlund249a6772005-09-27 21:45:30 -07004502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004503F: drivers/block/pktcdvd.c
4504F: include/linux/pktcdvd.h
Peter Osterlund249a6772005-09-27 21:45:30 -07004505
Anil Ravindranath89a36812009-08-25 17:35:18 -07004506PMC SIERRA MaxRAID DRIVER
Joe Perches076cfaa2009-09-21 17:04:26 -07004507M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
Anil Ravindranath89a36812009-08-25 17:35:18 -07004508L: linux-scsi@vger.kernel.org
4509W: http://www.pmc-sierra.com/
4510S: Supported
4511F: drivers/scsi/pmcraid.*
4512
jack wangdbf9bfe2009-10-14 16:19:21 +08004513PMC SIERRA PM8001 DRIVER
4514M: jack_wang@usish.com
4515M: lindar_liu@usish.com
4516L: linux-scsi@vger.kernel.org
4517S: Supported
4518F: drivers/scsi/pm8001/
4519
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520POSIX CLOCKS and TIMERS
Joe Perches8b58be82009-07-29 15:04:30 -07004521M: Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004523F: fs/timerfd.c
4524F: include/linux/timer*
4525F: kernel/*timer*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Anton Vorontsov3be86142007-07-15 04:43:36 +04004527POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004528M: Anton Vorontsov <cbou@mail.ru>
4529M: David Woodhouse <dwmw2@infradead.org>
Joe Perches54e58812009-04-07 21:08:10 -07004530T: git git://git.infradead.org/battery-2.6.git
Anton Vorontsov3be86142007-07-15 04:43:36 +04004531S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004532F: include/linux/power_supply.h
4533F: drivers/power/power_supply*
Anton Vorontsov3be86142007-07-15 04:43:36 +04004534
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535PNP SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004536M: Adam Belay <abelay@mit.edu>
4537M: Bjorn Helgaas <bjorn.helgaas@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004539F: drivers/pnp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540
Vitaly Wool999445d2007-01-04 13:07:03 +01004541PNXxxxx I2C DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004542M: Vitaly Wool <vitalywool@gmail.com>
Jean Delvare846557d2008-10-30 15:55:47 +01004543L: linux-i2c@vger.kernel.org
Vitaly Wool999445d2007-01-04 13:07:03 +01004544S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004545F: drivers/i2c/busses/i2c-pnx.c
Vitaly Wool999445d2007-01-04 13:07:03 +01004546
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547PPP PROTOCOL DRIVERS AND COMPRESSORS
Joe Perches8b58be82009-07-29 15:04:30 -07004548M: Paul Mackerras <paulus@samba.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549L: linux-ppp@vger.kernel.org
4550S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004551F: drivers/net/ppp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
4553PPP OVER ATM (RFC 2364)
Joe Perches8b58be82009-07-29 15:04:30 -07004554M: Mitchell Blank Jr <mitch@sfgoth.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004556F: net/atm/pppoatm.c
4557F: include/linux/atmppp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
4559PPP OVER ETHERNET
Joe Perches8b58be82009-07-29 15:04:30 -07004560M: Michal Ostrowski <mostrows@earthlink.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004562F: drivers/net/pppoe.c
4563F: drivers/net/pppox.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
James Chapmana6d23702007-06-27 15:53:17 -07004565PPP OVER L2TP
Joe Perches8b58be82009-07-29 15:04:30 -07004566M: James Chapman <jchapman@katalix.com>
James Chapmana6d23702007-06-27 15:53:17 -07004567S: Maintained
Joe Perches90ca28d2010-08-09 17:20:40 -07004568F: net/l2tp/l2tp_ppp.c
Joe Perches679655d2009-04-07 20:44:32 -07004569F: include/linux/if_pppol2tp.h
James Chapmana6d23702007-06-27 15:53:17 -07004570
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004571PPS SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004572M: Rodolfo Giometti <giometti@enneenne.com>
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004573W: http://wiki.enneenne.com/index.php/LinuxPPS_support
4574L: linuxpps@ml.enneenne.com (subscribers-only)
4575S: Maintained
Joe Perchescabaaf42009-07-29 15:04:24 -07004576F: Documentation/pps/
4577F: drivers/pps/
4578F: include/linux/pps*.h
Rodolfo Giomettieae9d2b2009-06-17 16:28:37 -07004579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580PREEMPTIBLE KERNEL
Joe Perches8b58be82009-07-29 15:04:30 -07004581M: Robert Love <rml@tech9.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582L: kpreempt-tech@lists.sourceforge.net
4583W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
4584S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004585F: Documentation/preempt-locking.txt
4586F: include/linux/preempt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
4588PRISM54 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004589M: "Luis R. Rodriguez" <mcgrof@gmail.com>
Johannes Berg724c6b32007-04-23 12:18:20 -07004590L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591W: http://prism54.org
John W. Linville1d89cae2010-07-22 14:25:40 -04004592S: Obsolete
Joe Perches679655d2009-04-07 20:44:32 -07004593F: drivers/net/wireless/prism54/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004595PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004596M: Mikael Pettersson <mikpe@it.uu.se>
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004597L: linux-ide@vger.kernel.org
4598S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004599F: drivers/ata/sata_promise.*
Mikael Petterssonb3277df2007-01-10 09:33:53 +01004600
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004601PS3 NETWORK SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004602M: Geoff Levand <geoff@infradead.org>
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004603L: netdev@vger.kernel.org
4604L: cbe-oss-dev@ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004605S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004606F: drivers/net/ps3_gelic_net.*
Masakazu Mokuno02c18892007-07-05 20:11:16 +09004607
Geoff Levandf58a9d12006-11-23 00:46:51 +01004608PS3 PLATFORM SUPPORT
Geoff Levandb809b9c2010-04-15 09:11:34 +00004609M: Geoff Levand <geoff@infradead.org>
Geoff Levandf58a9d12006-11-23 00:46:51 +01004610L: linuxppc-dev@ozlabs.org
4611L: cbe-oss-dev@ozlabs.org
Geoff Levandb809b9c2010-04-15 09:11:34 +00004612S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004613F: arch/powerpc/boot/ps3*
4614F: arch/powerpc/include/asm/lv1call.h
4615F: arch/powerpc/include/asm/ps3*.h
4616F: arch/powerpc/platforms/ps3/
4617F: drivers/*/ps3*
4618F: drivers/ps3/
Geoff Levandfec629b2009-04-16 09:05:40 +00004619F: drivers/rtc/rtc-ps3.c
Joe Perches679655d2009-04-07 20:44:32 -07004620F: drivers/usb/host/*ps3.c
Geoff Levandfec629b2009-04-16 09:05:40 +00004621F: sound/ppc/snd_ps3*
Geoff Levandf58a9d12006-11-23 00:46:51 +01004622
Jim Pariscffb4add2009-01-06 11:32:10 +00004623PS3VRAM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004624M: Jim Paris <jim@jtan.com>
Jim Pariscffb4add2009-01-06 11:32:10 +00004625L: cbe-oss-dev@ozlabs.org
4626S: Maintained
Joe Perches8a3977c2010-08-09 17:20:49 -07004627F: drivers/block/ps3vram.c
Jim Pariscffb4add2009-01-06 11:32:10 +00004628
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004629PTRACE SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004630M: Roland McGrath <roland@redhat.com>
4631M: Oleg Nesterov <oleg@redhat.com>
Christoph Hellwigcf94a4d2009-04-30 15:08:12 -07004632S: Maintained
4633F: include/asm-generic/syscall.h
4634F: include/linux/ptrace.h
4635F: include/linux/regset.h
4636F: include/linux/tracehook.h
4637F: kernel/ptrace.c
4638
Michael Krufky83202042006-07-03 00:24:18 -07004639PVRUSB2 VIDEO4LINUX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004640M: Mike Isely <isely@pobox.com>
Mike Isely16e94952007-01-03 18:08:06 -03004641L: pvrusb2@isely.net (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004642L: linux-media@vger.kernel.org
Michael Krufky83202042006-07-03 00:24:18 -07004643W: http://www.isely.net/pvrusb2/
Joe Perches54e58812009-04-07 21:08:10 -07004644T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Michael Krufky83202042006-07-03 00:24:18 -07004645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004646F: Documentation/video4linux/README.pvrusb2
4647F: drivers/media/video/pvrusb2/
Michael Krufky83202042006-07-03 00:24:18 -07004648
Eric Miao30ec2612008-06-12 15:21:41 -07004649PXA2xx/PXA3xx SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004650M: Eric Miao <eric.y.miao@gmail.com>
4651M: Russell King <linux@arm.linux.org.uk>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004652L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004654F: arch/arm/mach-pxa/
4655F: drivers/pcmcia/pxa2xx*
4656F: drivers/spi/pxa2xx*
4657F: drivers/usb/gadget/pxa2*
4658F: include/sound/pxa2xx-lib.h
Mark Brownbec4c992009-05-06 10:36:34 +01004659F: sound/arm/pxa*
4660F: sound/soc/pxa
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004662PXA168 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004663M: Eric Miao <eric.y.miao@gmail.com>
4664M: Jason Chagas <jason.chagas@marvell.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004665L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004666T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004667S: Maintained
Eric Miaoa6bb4ba2009-02-19 21:13:21 +08004668
Eric Miao5fa82eb2009-03-20 12:52:24 +08004669PXA910 SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07004670M: Eric Miao <eric.y.miao@gmail.com>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004671L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Joe Perches54e58812009-04-07 21:08:10 -07004672T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
Eric Miao7517b3f2009-06-13 00:10:17 +08004673S: Maintained
Eric Miao5fa82eb2009-03-20 12:52:24 +08004674
Eric Miaoe8e6cb32010-01-05 15:28:26 +08004675MMP2 SUPPORT (aka ARMADA610)
4676M: Haojian Zhuang <haojian.zhuang@marvell.com>
4677M: Eric Miao <eric.y.miao@gmail.com>
4678L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4679T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
4680S: Maintained
4681
Pierre Ossman272f1332007-05-14 21:25:26 +02004682PXA MMCI DRIVER
4683S: Orphan
4684
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004685PXA RTC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004686M: Robert Jarzmik <robert.jarzmik@free.fr>
Robert Jarzmik57f63bc2009-02-11 13:04:19 -08004687L: rtc-linux@googlegroups.com
4688S: Maintained
4689
Jes Sorensen5e9772b2010-06-30 15:37:38 +02004690QLOGIC QLA1280 SCSI DRIVER
4691M: Michael Reed <mdr@sgi.com>
4692L: linux-scsi@vger.kernel.org
4693S: Maintained
4694F: drivers/scsi/qla1280.[ch]
4695
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696QLOGIC QLA2XXX FC-SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004697M: Andrew Vasquez <andrew.vasquez@qlogic.com>
Andrew Vasquez95e6a852006-03-14 14:41:04 -08004698M: linux-driver@qlogic.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699L: linux-scsi@vger.kernel.org
4700S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004701F: Documentation/scsi/LICENSE.qla2xxx
4702F: drivers/scsi/qla2xxx/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703
Ravi Anand883c98f2010-04-28 11:45:49 +05304704QLOGIC QLA4XXX iSCSI DRIVER
4705M: Ravi Anand <ravi.anand@qlogic.com>
4706M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
4707M: iscsi-driver@qlogic.com
4708L: linux-scsi@vger.kernel.org
4709S: Supported
4710F: drivers/scsi/qla4xxx/
4711
Ron Mercer5a4faa872006-07-25 00:40:21 -07004712QLOGIC QLA3XXX NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004713M: Ron Mercer <ron.mercer@qlogic.com>
Ron Mercer5a4faa872006-07-25 00:40:21 -07004714M: linux-driver@qlogic.com
4715L: netdev@vger.kernel.org
4716S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004717F: Documentation/networking/LICENSE.qla3xxx
4718F: drivers/net/qla3xxx.*
Ron Mercer5a4faa872006-07-25 00:40:21 -07004719
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004720QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
4721M: Amit Kumar Salecha <amit.salecha@qlogic.com>
Amit Kumar Salecha7b39f902010-05-18 22:57:36 -07004722M: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
Amit Kumar Salecha0ec00f02010-01-13 00:37:26 +00004723M: linux-driver@qlogic.com
4724L: netdev@vger.kernel.org
4725S: Supported
4726F: drivers/net/qlcnic/
4727
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004728QLOGIC QLGE 10Gb ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004729M: Ron Mercer <ron.mercer@qlogic.com>
Joe Perches4cbfbe22009-07-29 15:04:21 -07004730M: linux-driver@qlogic.com
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004731L: netdev@vger.kernel.org
4732S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004733F: drivers/net/qlge/
Ron Mercerc4e84bd2008-09-18 11:56:28 -04004734
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735QNX4 FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004736M: Anders Larsen <al@alarsen.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737W: http://www.alarsen.net/linux/qnx4fs/
4738S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07004739F: fs/qnx4/
Joe Perches679655d2009-04-07 20:44:32 -07004740F: include/linux/qnx4_fs.h
4741F: include/linux/qnxtypes.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
4743RADEON FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004744M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004745L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004747F: drivers/video/aty/radeon*
4748F: include/linux/radeonfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749
4750RAGE128 FRAMEBUFFER DISPLAY DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004751M: Paul Mackerras <paulus@samba.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004752L: linux-fbdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004754F: drivers/video/aty/aty128fb.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755
Randy Dunlape7839f22008-10-12 16:11:45 -07004756RALINK RT2X00 WIRELESS LAN DRIVER
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004757P: rt2x00 project
Ivo van Doorne1a65422009-11-07 19:14:47 +01004758M: Ivo van Doorn <IvDoorn@gmail.com>
Gertjan van Wingerde4a7bd3e2009-11-08 12:31:20 +01004759M: Gertjan van Wingerde <gwingerde@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004760L: linux-wireless@vger.kernel.org
Bartlomiej Zolnierkiewicz83fc9c82009-10-26 20:14:33 +01004761L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004762W: http://rt2x00.serialmonkey.com/
4763S: Maintained
Joe Perches54e58812009-04-07 21:08:10 -07004764T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
Ivo van Doorn95ea3622007-09-25 17:57:13 -07004765F: drivers/net/wireless/rt2x00/
4766
Nick Piggin9db55792008-02-08 04:19:49 -08004767RAMDISK RAM BLOCK DEVICE DRIVER
Nick Piggin6e575592010-08-05 21:08:09 +10004768M: Nick Piggin <npiggin@kernel.dk>
Nick Piggin9db55792008-02-08 04:19:49 -08004769S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004770F: Documentation/blockdev/ramdisk.txt
4771F: drivers/block/brd.c
Nick Piggin9db55792008-02-08 04:19:49 -08004772
Matt Mackall9e95ce22005-04-16 15:25:56 -07004773RANDOM NUMBER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004774M: Matt Mackall <mpm@selenic.com>
Matt Mackall9e95ce22005-04-16 15:25:56 -07004775S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004776F: drivers/char/random.c
Matt Mackall9e95ce22005-04-16 15:25:56 -07004777
Matt Porter394b7012005-11-07 01:00:15 -08004778RAPIDIO SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004779M: Matt Porter <mporter@kernel.crashing.org>
Matt Porter394b7012005-11-07 01:00:15 -08004780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004781F: drivers/rapidio/
Matt Porter394b7012005-11-07 01:00:15 -08004782
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004783RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004784L: linux-wireless@vger.kernel.org
John W. Linvillef52a5492010-07-22 14:36:52 -04004785S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004786F: drivers/net/wireless/ray*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004787
4788RCUTORTURE MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07004789M: Josh Triplett <josh@freedesktop.org>
4790M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004791S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004792F: Documentation/RCU/torture.txt
4793F: kernel/rcutorture.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004794
Florian Fainellic1f766b2008-02-06 22:39:44 +01004795RDC R-321X SoC
Joe Perches8b58be82009-07-29 15:04:30 -07004796M: Florian Fainelli <florian@openwrt.org>
Florian Fainellic1f766b2008-02-06 22:39:44 +01004797S: Maintained
4798
Florian Fainellidb17f392007-12-19 11:30:30 +01004799RDC R6040 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004800M: Florian Fainelli <florian@openwrt.org>
Florian Fainellidb17f392007-12-19 11:30:30 +01004801L: netdev@vger.kernel.org
4802S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004803F: drivers/net/r6040.c
Florian Fainellidb17f392007-12-19 11:30:30 +01004804
Andy Grovera09ed662009-02-24 15:30:41 +00004805RDS - RELIABLE DATAGRAM SOCKETS
Joe Perches8b58be82009-07-29 15:04:30 -07004806M: Andy Grover <andy.grover@oracle.com>
Kyle McMartinfbb5a552009-04-09 14:09:47 +00004807L: rds-devel@oss.oracle.com (moderated for non-subscribers)
Andy Grovera09ed662009-02-24 15:30:41 +00004808S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004809F: net/rds/
Andy Grovera09ed662009-02-24 15:30:41 +00004810
Josh Triplett595182b2006-10-04 02:17:21 -07004811READ-COPY UPDATE (RCU)
Joe Perches8b58be82009-07-29 15:04:30 -07004812M: Dipankar Sarma <dipankar@in.ibm.com>
4813M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Josh Triplett595182b2006-10-04 02:17:21 -07004814W: http://www.rdrop.com/users/paulmck/rclock/
Josh Triplett595182b2006-10-04 02:17:21 -07004815S: Supported
Paul E. McKenneyf9094d82010-01-04 16:04:00 -08004816F: Documentation/RCU/
4817F: include/linux/rcu*
4818F: include/linux/srcu*
4819F: kernel/rcu*
4820F: kernel/srcu*
4821X: kernel/rcutorture.c
Josh Triplett595182b2006-10-04 02:17:21 -07004822
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823REAL TIME CLOCK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004824M: Paul Gortmaker <p_gortmaker@yahoo.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004826F: Documentation/rtc.txt
4827F: drivers/rtc/
4828F: include/linux/rtc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004830REAL TIME CLOCK (RTC) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07004831M: Alessandro Zummo <a.zummo@towertech.it>
Alessandro Zummo76465492006-12-10 02:19:06 -08004832L: rtc-linux@googlegroups.com
Joe Perches8a6e2532010-03-05 13:43:11 -08004833Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004834S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004835F: Documentation/rtc.txt
4836F: drivers/rtc/
4837F: include/linux/rtc.h
Alessandro Zummo0c86edc2006-03-27 01:16:37 -08004838
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839REISERFS FILE SYSTEM
Jeff Mahoney76c4e5e2007-06-08 13:47:02 -07004840L: reiserfs-devel@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004842F: fs/reiserfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Ivo van Doorne08976452008-04-12 19:23:55 +02004844RFKILL
Joe Perches8b58be82009-07-29 15:04:30 -07004845M: Johannes Berg <johannes@sipsolutions.net>
Johannes Berg19d337d2009-06-02 13:01:37 +02004846L: linux-wireless@vger.kernel.org
Ivo van Doorne08976452008-04-12 19:23:55 +02004847S: Maintained
Joe Perches505c9242009-11-12 14:55:00 -08004848F: Documentation/rfkill.txt
Joe Perches80811492009-04-08 20:20:27 -07004849F: net/rfkill/
Ivo van Doorne08976452008-04-12 19:23:55 +02004850
Maxim Levitsky67e054e2010-02-22 20:39:42 +02004851RICOH SMARTMEDIA/XD DRIVER
4852M: Maxim Levitsky <maximlevitsky@gmail.com>
4853S: Maintained
Joe Perches21c26f52010-08-09 17:20:40 -07004854F: drivers/mtd/nand/r852.c
4855F: drivers/mtd/nand/r852.h
Maxim Levitsky67e054e2010-02-22 20:39:42 +02004856
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004857RISCOM8 DRIVER
4858S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07004859F: Documentation/serial/riscom8.txt
4860F: drivers/char/riscom8*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07004861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862ROCKETPORT DRIVER
4863P: Comtrol Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864W: http://www.comtrol.com
4865S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004866F: Documentation/serial/rocket.txt
4867F: drivers/char/rocket*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
4869ROSE NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004870M: Ralf Baechle <ralf@linux-mips.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871L: linux-hams@vger.kernel.org
Ralf Baechled34cb282006-04-19 04:14:30 +02004872W: http://www.linux-ax25.org/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004874F: include/linux/rose.h
4875F: include/net/rose.h
4876F: net/rose/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877
Larry Finger59840482008-11-12 17:13:09 -06004878RTL8180 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004879M: "John W. Linville" <linville@tuxdriver.com>
Michael Wu605bebe2007-05-14 01:41:02 -04004880L: linux-wireless@vger.kernel.org
4881W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004882T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Michael Wu605bebe2007-05-14 01:41:02 -04004883S: Maintained
Joe Perches2b3daf52009-07-21 13:09:56 -07004884F: drivers/net/wireless/rtl818x/rtl8180*
Michael Wu605bebe2007-05-14 01:41:02 -04004885
Larry Finger59840482008-11-12 17:13:09 -06004886RTL8187 WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004887M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
4888M: Hin-Tak Leung <htl10@users.sourceforge.net>
4889M: Larry Finger <Larry.Finger@lwfinger.net>
Joe Perches7d2c86b2009-04-07 20:59:01 -07004890L: linux-wireless@vger.kernel.org
4891W: http://linuxwireless.org/
Joe Perches54e58812009-04-07 21:08:10 -07004892T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
Joe Perches7d2c86b2009-04-07 20:59:01 -07004893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004894F: drivers/net/wireless/rtl818x/rtl8187*
Larry Finger59840482008-11-12 17:13:09 -06004895
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004896S3 SAVAGE FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004897M: Antonino Daplas <adaplas@gmail.com>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01004898L: linux-fbdev@vger.kernel.org
Jim Cromiece00f852006-11-30 04:49:44 +01004899S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004900F: drivers/video/savage/
Antonino A. Daplas9eb8ef72006-01-14 13:21:26 -08004901
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902S390
Joe Perches8b58be82009-07-29 15:04:30 -07004903M: Martin Schwidefsky <schwidefsky@de.ibm.com>
4904M: Heiko Carstens <heiko.carstens@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004906L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004907W: http://www.ibm.com/developerworks/linux/linux390/
4908S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004909F: arch/s390/
Joe Perchesa968cd32009-12-07 12:52:10 +01004910F: drivers/s390/
Jonathan Nieder3bfe6852010-05-26 23:27:13 +02004911F: fs/partitions/ibm.c
4912F: Documentation/s390/
4913F: Documentation/DocBook/s390*
Heiko Carstens5238da42006-02-11 17:56:01 -08004914
4915S390 NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07004916M: Ursula Braun <ursula.braun@de.ibm.com>
4917M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004918M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004919L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004920W: http://www.ibm.com/developerworks/linux/linux390/
4921S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004922F: drivers/s390/net/
Heiko Carstens5238da42006-02-11 17:56:01 -08004923
Felix Beckfeed9b62009-03-26 15:24:23 +01004924S390 ZCRYPT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004925M: Felix Beck <felix.beck@de.ibm.com>
4926M: Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
Felix Beckfeed9b62009-03-26 15:24:23 +01004927M: linux390@de.ibm.com
4928L: linux-s390@vger.kernel.org
Joe Perchesa968cd32009-12-07 12:52:10 +01004929W: http://www.ibm.com/developerworks/linux/linux390/
Felix Beckfeed9b62009-03-26 15:24:23 +01004930S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07004931F: drivers/s390/crypto/
Felix Beckfeed9b62009-03-26 15:24:23 +01004932
Heiko Carstens5238da42006-02-11 17:56:01 -08004933S390 ZFCP DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004934M: Christof Schmitt <christof.schmitt@de.ibm.com>
Christof Schmitt07bbd0f2010-04-01 13:04:07 +02004935M: Swen Schillig <swen@vnet.ibm.com>
Heiko Carstens5238da42006-02-11 17:56:01 -08004936M: linux390@de.ibm.com
Martin Schwidefskyd58140c2007-02-05 21:17:27 +01004937L: linux-s390@vger.kernel.org
Heiko Carstens5238da42006-02-11 17:56:01 -08004938W: http://www.ibm.com/developerworks/linux/linux390/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004940F: drivers/s390/scsi/zfcp_*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941
Ursula Braundd96df22007-09-19 13:09:02 +02004942S390 IUCV NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07004943M: Ursula Braun <ursula.braun@de.ibm.com>
Ursula Braundd96df22007-09-19 13:09:02 +02004944M: linux390@de.ibm.com
4945L: linux-s390@vger.kernel.org
4946W: http://www.ibm.com/developerworks/linux/linux390/
4947S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004948F: drivers/s390/net/*iucv*
4949F: include/net/iucv/
4950F: net/iucv/
Ursula Braundd96df22007-09-19 13:09:02 +02004951
Ben Dooks4dde7f72008-06-30 22:40:38 +01004952S3C24XX SD/MMC Driver
Joe Perches8b58be82009-07-29 15:04:30 -07004953M: Ben Dooks <ben-linux@fluff.org>
Joe Perchesefc03ec2009-09-21 17:04:27 -07004954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Ben Dooks4dde7f72008-06-30 22:40:38 +01004955S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07004956F: drivers/mmc/host/s3cmci.*
Ben Dooks4dde7f72008-06-30 22:40:38 +01004957
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958SAA7146 VIDEO4LINUX-2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004959M: Michael Hunold <michael@mihu.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03004960L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07004961T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962W: http://www.mihu.de/linux/saa7146
4963S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004964F: drivers/media/common/saa7146*
4965F: drivers/media/video/*7146*
4966F: include/media/*7146*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
Mark Brown4a109cc2010-09-24 10:50:46 +01004968SAMSUNG AUDIO (ASoC) DRIVERS
4969M: Jassi Brar <jassi.brar@samsung.com>
4970L: alsa-devel@alsa-project.org (moderated for non-subscribers)
4971S: Supported
4972F: sound/soc/s3c24xx
4973
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004974TLG2300 VIDEO4LINUX-2 DRIVER
Joe Perchesd2fa2182010-02-23 14:08:20 -03004975M: Huang Shijie <shijie8@gmail.com>
4976M: Kang Yong <kangyong@telegent.com>
4977M: Zhang Xiaobing <xbzhang@telegent.com>
Huang Shijie5b3f03f2010-02-02 04:07:47 -03004978S: Supported
4979F: drivers/media/video/tlg2300
4980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981SC1200 WDT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07004982M: Zwane Mwaikambo <zwane@arm.linux.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004984F: drivers/watchdog/sc1200wdt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
4986SCHEDULER
Joe Perches8b58be82009-07-29 15:04:30 -07004987M: Ingo Molnar <mingo@elte.hu>
4988M: Peter Zijlstra <peterz@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07004990F: kernel/sched*
4991F: include/linux/sched.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Chen Liqin6bcf6732009-06-13 15:24:33 +08004993SCORE ARCHITECTURE
Joe Perchesa2681a72009-10-26 16:49:43 -07004994M: Chen Liqin <liqin.chen@sunplusct.com>
4995M: Lennox Wu <lennox.wu@gmail.com>
Chen Liqin6bcf6732009-06-13 15:24:33 +08004996W: http://www.sunplusct.com
4997S: Supported
Joe Perchesa2681a72009-10-26 16:49:43 -07004998F: arch/score/
Chen Liqin6bcf6732009-06-13 15:24:33 +08004999
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000SCSI CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005001M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002L: linux-scsi@vger.kernel.org
5003W: http://www.kernel.dk
5004S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005005F: drivers/scsi/sr*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006
5007SCSI SG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005008M: Doug Gilbert <dgilbert@interlog.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009L: linux-scsi@vger.kernel.org
5010W: http://www.torque.net/sg
5011S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005012F: drivers/scsi/sg.c
5013F: include/scsi/sg.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014
5015SCSI SUBSYSTEM
James Bottomley60df75c2009-08-13 19:23:12 +00005016M: "James E.J. Bottomley" <James.Bottomley@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017L: linux-scsi@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005018T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
5019T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
5020T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005022F: drivers/scsi/
5023F: include/scsi/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024
5025SCSI TAPE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005026M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027L: linux-scsi@vger.kernel.org
5028S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005029F: Documentation/scsi/st.txt
5030F: drivers/scsi/st*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
5032SCTP PROTOCOL
Joe Perches8b58be82009-07-29 15:04:30 -07005033M: Vlad Yasevich <vladislav.yasevich@hp.com>
5034M: Sridhar Samudrala <sri@us.ibm.com>
Vlad Yasevich1a418792008-04-12 18:55:42 -07005035L: linux-sctp@vger.kernel.org
Sridhar Samudrala5f858132007-03-23 11:39:51 -07005036W: http://lksctp.sourceforge.net
Jim Cromiece00f852006-11-30 04:49:44 +01005037S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005038F: Documentation/networking/sctp.txt
5039F: include/linux/sctp.h
5040F: include/net/sctp/
5041F: net/sctp/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
5043SCx200 CPU SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005044M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005045S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005046F: Documentation/i2c/busses/scx200_acb
5047F: arch/x86/kernel/scx200_32.c
5048F: drivers/watchdog/scx200_wdt.c
5049F: drivers/i2c/busses/scx200*
5050F: drivers/mtd/maps/scx200_docflash.c
5051F: include/linux/scx200.h
Jim Cromie1662d322006-10-06 00:43:59 -07005052
5053SCx200 GPIO DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005054M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005055S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005056F: drivers/char/scx200_gpio.c
5057F: include/linux/scx200_gpio.h
Jim Cromie1662d322006-10-06 00:43:59 -07005058
5059SCx200 HRT CLOCKSOURCE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005060M: Jim Cromie <jim.cromie@gmail.com>
Jim Cromie1662d322006-10-06 00:43:59 -07005061S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005062F: drivers/clocksource/scx200_hrt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Sascha Sommer6a369132008-07-15 14:21:29 +02005064SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005065M: Sascha Sommer <saschasommer@freenet.de>
Sascha Sommer6a369132008-07-15 14:21:29 +02005066L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
5067S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005068F: drivers/mmc/host/sdricoh_cs.c
Sascha Sommer6a369132008-07-15 14:21:29 +02005069
Randy Dunlape7839f22008-10-12 16:11:45 -07005070SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
Joe Perches7a241d62009-10-26 16:49:42 -07005071S: Orphan
5072L: linux-mmc@vger.kernel.org
5073F: drivers/mmc/host/sdhci.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005074
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005075SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
Joe Perches8b58be82009-07-29 15:04:30 -07005076M: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov3085e9c2009-03-17 00:14:05 +03005077L: linuxppc-dev@ozlabs.org
Joe Perches7a241d62009-10-26 16:49:42 -07005078L: linux-mmc@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079S: Maintained
Joe Perches7a241d62009-10-26 16:49:42 -07005080F: drivers/mmc/host/sdhci-of.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
Ben Dooks0d1bb412009-06-14 13:52:37 +01005082SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005083M: Ben Dooks <ben-linux@fluff.org>
Joe Perches7a241d62009-10-26 16:49:42 -07005084L: linux-mmc@vger.kernel.org
Ben Dooks0d1bb412009-06-14 13:52:37 +01005085S: Maintained
5086F: drivers/mmc/host/sdhci-s3c.c
5087
Viresh KUMARc63b3cb2010-05-26 14:42:10 -07005088SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
5089M: Viresh Kumar <viresh.kumar@st.com>
5090L: linux-mmc@vger.kernel.org
5091S: Maintained
5092F: drivers/mmc/host/sdhci-spear.c
5093
James Morris8711cca2008-12-04 03:19:45 +11005094SECURITY SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005095M: James Morris <jmorris@namei.org>
James Morris8711cca2008-12-04 03:19:45 +11005096L: linux-security-module@vger.kernel.org (suggested Cc:)
Joe Perchesdf69f0da2009-11-11 14:26:46 -08005097T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
James Morrisc8334dc2009-01-07 20:06:18 +11005098W: http://security.wiki.kernel.org/
James Morris8711cca2008-12-04 03:19:45 +11005099S: Supported
Joe Perches7d2c86b2009-04-07 20:59:01 -07005100F: security/
James Morris8711cca2008-12-04 03:19:45 +11005101
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102SECURITY CONTACT
Joe Perches8b58be82009-07-29 15:04:30 -07005103M: Security Officers <security@kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104S: Supported
5105
5106SELINUX SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005107M: Stephen Smalley <sds@tycho.nsa.gov>
5108M: James Morris <jmorris@namei.org>
5109M: Eric Paris <eparis@parisplace.org>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005110L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
Stephen Smalleyf0589252008-09-11 09:20:26 -04005111W: http://selinuxproject.org
Joe Perches54e58812009-04-07 21:08:10 -07005112T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005114F: include/linux/selinux*
5115F: security/selinux/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
John Johansenc1c124e2010-07-29 14:48:09 -07005117APPARMOR SECURITY MODULE
5118M: John Johansen <john.johansen@canonical.com>
5119L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
5120W: apparmor.wiki.kernel.org
5121T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
5122S: Supported
5123F: security/apparmor/
5124
Jiri Slabycef2cf02007-05-08 00:31:45 -07005125SENSABLE PHANTOM
Joe Perches8b58be82009-07-29 15:04:30 -07005126M: Jiri Slaby <jirislaby@gmail.com>
Jiri Slabycef2cf02007-05-08 00:31:45 -07005127S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005128F: drivers/misc/phantom.c
5129F: include/linux/phantom.h
Jiri Slabycef2cf02007-05-08 00:31:45 -07005130
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005131SERIAL ATA (SATA) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005132M: Jeff Garzik <jgarzik@pobox.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133L: linux-ide@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005134T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135S: Supported
Joe Perchesd5ca6912009-04-09 02:42:01 -07005136F: drivers/ata/
5137F: include/linux/ata.h
5138F: include/linux/libata.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305140SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
Joe Perches3387f652009-11-11 14:26:11 -08005141M: Jayamohan Kallickal <jayamohank@serverengines.com>
5142L: linux-scsi@vger.kernel.org
5143W: http://www.serverengines.com
5144S: Supported
5145F: drivers/scsi/be2iscsi/
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05305146
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005147SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005148M: Sathya Perla <sathyap@serverengines.com>
5149M: Subbu Seetharaman <subbus@serverengines.com>
Ajit Khapardef66d7442010-02-19 14:00:03 +00005150M: Sarveshwar Bandi <sarveshwarb@serverengines.com>
5151M: Ajit Khaparde <ajitk@serverengines.com>
Joe Perches7d2c86b2009-04-07 20:59:01 -07005152L: netdev@vger.kernel.org
5153W: http://www.serverengines.com
5154S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005155F: drivers/net/benet/
Sathya Perla6b7c5b92009-03-11 23:32:03 -07005156
Ben Hutchings8ceee662008-04-27 12:55:59 +01005157SFC NETWORK DRIVER
Joe Perchesc06f51e2009-08-26 08:47:47 +00005158M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
5159M: Steve Hodgson <shodgson@solarflare.com>
5160M: Ben Hutchings <bhutchings@solarflare.com>
5161L: netdev@vger.kernel.org
Ben Hutchings8ceee662008-04-27 12:55:59 +01005162S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005163F: drivers/net/sfc/
Ben Hutchings8ceee662008-04-27 12:55:59 +01005164
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005165SGI GRU DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005166M: Jack Steiner <steiner@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005168F: drivers/misc/sgi-gru/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005169
5170SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005171M: Pat Gefre <pfg@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005172L: linux-ia64@vger.kernel.org
5173S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005174F: Documentation/ia64/serial.txt
5175F: drivers/serial/ioc?_serial.c
5176F: include/linux/ioc?.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005177
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178SGI VISUAL WORKSTATION 320 AND 540
Joe Perches8b58be82009-07-29 15:04:30 -07005179M: Andrey Panin <pazke@donpac.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180L: linux-visws-devel@lists.sf.net
5181W: http://linux-visws.sf.net
5182S: Maintained for 2.6.
Joe Perches679655d2009-04-07 20:44:32 -07005183F: Documentation/sgi-visws.txt
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
Jack Steiner75312612008-08-15 00:40:42 -07005185SGI XP/XPC/XPNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005186M: Robin Holt <holt@sgi.com>
Jack Steiner75312612008-08-15 00:40:42 -07005187S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005188F: drivers/misc/sgi-xp/
Jack Steiner75312612008-08-15 00:40:42 -07005189
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005190SHARP LH SUPPORT (LH7952X & LH7A40X)
Joe Perches8b58be82009-07-29 15:04:30 -07005191M: Marc Singer <elf@buici.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005192W: http://projects.buici.com/arm
Joe Perchesefc03ec2009-09-21 17:04:27 -07005193L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005194S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005195F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
5196F: arch/arm/mach-lh7a40x/
5197F: drivers/serial/serial_lh7a40x.c
5198F: drivers/usb/gadget/lh7a40*
5199F: drivers/usb/host/ohci-lh7a40*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005200
Len Brown6349d992009-08-14 15:07:14 -04005201SIMPLE FIRMWARE INTERFACE (SFI)
Joe Perches2bf822d2009-10-26 16:49:44 -07005202M: Len Brown <lenb@kernel.org>
Len Brown6349d992009-08-14 15:07:14 -04005203L: sfi-devel@simplefirmware.org
5204W: http://simplefirmware.org/
5205T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005206S: Supported
Len Brown6349d992009-08-14 15:07:14 -04005207F: arch/x86/kernel/*sfi*
5208F: drivers/sfi/
5209F: include/linux/sfi*.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211SIMTEC EB110ATX (Chalice CATS)
5212P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005213M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214W: http://www.simtec.co.uk/products/EB110ATX/
5215S: Supported
5216
5217SIMTEC EB2410ITX (BAST)
5218P: Ben Dooks
Joe Perches8b58be82009-07-29 15:04:30 -07005219M: Vincent Sanders <support@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220W: http://www.simtec.co.uk/products/EB2410ITX/
5221S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005222F: arch/arm/mach-s3c2410/
5223F: drivers/*/*s3c2410*
5224F: drivers/*/*/*s3c2410*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005226TI DAVINCI MACHINE SUPPORT
5227P: Kevin Hilman
5228M: davinci-linux-open-source@linux.davincidsp.com
Joe Perches8a6e2532010-03-05 13:43:11 -08005229Q: http://patchwork.kernel.org/project/linux-davinci/list/
Kevin Hilman4c5adde2009-06-19 12:02:33 -07005230S: Supported
5231F: arch/arm/mach-davinci
5232
Francois Romieu92aab3c2005-07-30 13:11:18 +02005233SIS 190 ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005234M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu92aab3c2005-07-30 13:11:18 +02005235L: netdev@vger.kernel.org
5236S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005237F: drivers/net/sis190.c
Francois Romieu92aab3c2005-07-30 13:11:18 +02005238
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239SIS 900/7016 FAST ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005240M: Daniele Venzano <venza@brownhat.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241W: http://www.brownhat.org/sis900.html
Ralf Baechle979b6c12005-06-13 14:30:40 -07005242L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005244F: drivers/net/sis900.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005246SIS 96X I2C/SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005247M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Jean Delvare846557d2008-10-30 15:55:47 +01005248L: linux-i2c@vger.kernel.org
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005250F: Documentation/i2c/busses/i2c-sis96x
5251F: drivers/i2c/busses/i2c-sis96x.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005252
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253SIS FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005254M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255W: http://www.winischhofer.net/linuxsisvga.shtml
Antoine Jacquetb7eee612007-04-27 12:30:59 -03005256S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005257F: Documentation/fb/sisfb.txt
5258F: drivers/video/sis/
5259F: include/video/sisfb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260
5261SIS USB2VGA DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005262M: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263W: http://www.winischhofer.at/linuxsisusbvga.shtml
5264S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005265F: drivers/usb/misc/sisusbvga/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005267SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005268M: Stephen Hemminger <shemminger@linux-foundation.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005269L: netdev@vger.kernel.org
5270S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005271F: drivers/net/skge.*
5272F: drivers/net/sky2.*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005273
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005274SLAB ALLOCATOR
Joe Perches8b58be82009-07-29 15:04:30 -07005275M: Christoph Lameter <cl@linux-foundation.org>
5276M: Pekka Enberg <penberg@cs.helsinki.fi>
5277M: Matt Mackall <mpm@selenic.com>
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005278L: linux-mm@kvack.org
5279S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005280F: include/linux/sl?b*.h
5281F: mm/sl?b.c
Christoph Lameter415ad26d2007-07-26 10:40:56 -07005282
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283SMC91x ETHERNET DRIVER
Nicolas Pitre2f82af02009-09-14 03:25:28 -04005284M: Nicolas Pitre <nico@fluxnic.net>
Nicolas Pitre18e28422010-05-03 16:43:47 -04005285S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005286F: drivers/net/smc91x.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
Guenter Roeck920fa1f2010-08-09 17:21:06 -07005288SMM665 HARDWARE MONITOR DRIVER
5289M: Guenter Roeck <linux@roeck-us.net>
5290L: lm-sensors@lm-sensors.org
5291S: Maintained
5292F: Documentation/hwmon/smm665
5293F: drivers/hwmon/smm665.c
5294
Steve Glendinning9df73052010-08-14 21:08:54 +02005295SMSC EMC2103 HARDWARE MONITOR DRIVER
5296M: Steve Glendinning <steve.glendinning@smsc.com>
5297L: lm-sensors@lm-sensors.org
5298S: Supported
5299F: Documentation/hwmon/emc2103
5300F: drivers/hwmon/emc2103.c
5301
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005302SMSC47B397 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005303M: "Mark M. Hoffman" <mhoffman@lightlink.com>
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005304L: lm-sensors@lm-sensors.org
5305S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005306F: Documentation/hwmon/smsc47b397
5307F: drivers/hwmon/smsc47b397.c
Mark M. Hoffman6ea884d2007-06-09 10:11:15 -04005308
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005309SMSC911x ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005310M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005311L: netdev@vger.kernel.org
5312S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005313F: include/linux/smsc911x.h
5314F: drivers/net/smsc911x.*
Steve Glendinningfd9abb32008-11-05 00:35:37 +00005315
Steve Glendinning2cb37722008-12-11 20:54:30 -08005316SMSC9420 PCI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005317M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2cb37722008-12-11 20:54:30 -08005318L: netdev@vger.kernel.org
5319S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005320F: drivers/net/smsc9420.*
Steve Glendinning2cb37722008-12-11 20:54:30 -08005321
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005322SN-IA64 (Itanium) SUB-PLATFORM
Joe Perches8b58be82009-07-29 15:04:30 -07005323M: Jes Sorensen <jes@sgi.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005324L: linux-altix@sgi.com
5325L: linux-ia64@vger.kernel.org
5326W: http://www.sgi.com/altix
5327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005328F: arch/ia64/sn/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005329
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005330SOC-CAMERA V4L2 SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005331M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005332L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005333T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Jean Delvare795fb7e2008-09-20 12:33:08 +02005334S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005335F: include/media/v4l2*
5336F: drivers/media/video/v4l2*
Guennadi Liakhovetski668acf32008-07-19 07:54:43 -03005337
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005338SOEKRIS NET48XX LED SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005339M: Chris Boot <bootc@bootc.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005340S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005341F: drivers/leds/leds-net48xx.c
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005342
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343SOFTWARE RAID (Multiple Disks) SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005344M: Neil Brown <neilb@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345L: linux-raid@vger.kernel.org
NeilBrown524418b2007-01-26 00:57:01 -08005346S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005347F: drivers/md/
5348F: include/linux/raid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350SONIC NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005351M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Ralf Baechle979b6c12005-06-13 14:30:40 -07005352L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005354F: drivers/net/sonic.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355
Michael Buesch61e115a2007-09-18 15:12:50 -04005356SONICS SILICON BACKPLANE DRIVER (SSB)
Joe Perches8b58be82009-07-29 15:04:30 -07005357M: Michael Buesch <mb@bu3sch.de>
Michael Buesch61e115a2007-09-18 15:12:50 -04005358L: netdev@vger.kernel.org
5359S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005360F: drivers/ssb/
5361F: include/linux/ssb/
Michael Buesch61e115a2007-09-18 15:12:50 -04005362
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363SONY VAIO CONTROL DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005364M: Mattia Dongili <malattia@linux.it>
Matthew Garrettd0944852010-02-11 10:40:13 -05005365L: platform-driver-x86@vger.kernel.org
Mattia Dongili5b181672007-03-12 21:43:57 +01005366W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005368F: Documentation/laptops/sony-laptop.txt
5369F: drivers/char/sonypi.c
5370F: drivers/platform/x86/sony-laptop.c
5371F: include/linux/sony-laptop.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Alex Dubovbaf85322008-02-09 10:20:54 -08005373SONY MEMORYSTICK CARD SUPPORT
Joe Perches8b58be82009-07-29 15:04:30 -07005374M: Alex Dubov <oakad@yahoo.com>
Alex Dubovbaf85322008-02-09 10:20:54 -08005375W: http://tifmxx.berlios.de/
5376S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005377F: drivers/memstick/host/tifm_ms.c
Alex Dubovbaf85322008-02-09 10:20:54 -08005378
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379SOUND
Joe Perches8b58be82009-07-29 15:04:30 -07005380M: Jaroslav Kysela <perex@perex.cz>
5381M: Takashi Iwai <tiwai@suse.de>
Joe Perches93711662009-06-16 15:34:07 -07005382L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Joe Perches3126a172009-04-15 23:38:45 -07005383W: http://www.alsa-project.org/
5384T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
5385T: git git://git.alsa-project.org/alsa-kernel.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386S: Maintained
Joe Perches3126a172009-04-15 23:38:45 -07005387F: Documentation/sound/
5388F: include/sound/
Joe Perches679655d2009-04-07 20:44:32 -07005389F: sound/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390
Mark Brownbd903bd2008-11-19 19:16:05 +00005391SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
Joe Perches8b58be82009-07-29 15:04:30 -07005392M: Liam Girdwood <lrg@slimlogic.co.uk>
5393M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownbb74a6e2009-05-13 17:23:54 +01005394T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
Joe Perches93711662009-06-16 15:34:07 -07005395L: alsa-devel@alsa-project.org (moderated for non-subscribers)
Liam Girdwoodb0b8daf2008-09-18 14:36:37 +01005396W: http://alsa-project.org/main/index.php/ASoC
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005397S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005398F: sound/soc/
Mark Browne6e55122009-05-05 11:10:24 +01005399F: include/sound/soc*
Liam Girdwoodeb1a6af2006-10-06 18:34:51 +02005400
Sam Ravnborg473321f2009-01-04 15:47:49 -08005401SPARC + UltraSPARC (sparc/sparc64)
Joe Perches8b58be82009-07-29 15:04:30 -07005402M: "David S. Miller" <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403L: sparclinux@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005404Q: http://patchwork.ozlabs.org/project/sparclinux/list/
Joe Perches54e58812009-04-07 21:08:10 -07005405T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5406T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005408F: arch/sparc/
David S. Miller7765b8b2010-07-20 23:37:12 -07005409F: drivers/sbus/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410
David S. Miller6404fcc2010-03-16 01:00:17 -07005411SPARC SERIAL DRIVERS
5412M: "David S. Miller" <davem@davemloft.net>
5413L: sparclinux@vger.kernel.org
5414T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
5415T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
5416S: Maintained
5417F: drivers/serial/suncore.c
5418F: drivers/serial/suncore.h
5419F: drivers/serial/sunhv.c
5420F: drivers/serial/sunsab.c
5421F: drivers/serial/sunsab.h
5422F: drivers/serial/sunsu.c
5423F: drivers/serial/sunzilog.c
5424F: drivers/serial/sunzilog.h
5425
viresh kumarfc0c1952010-04-01 12:31:21 +01005426SPEAR PLATFORM SUPPORT
5427M: Viresh Kumar <viresh.kumar@st.com>
5428W: http://www.st.com/spear
5429S: Maintained
5430F: arch/arm/plat-spear/
5431
5432SPEAR3XX MACHINE SUPPORT
5433M: Viresh Kumar <viresh.kumar@st.com>
5434W: http://www.st.com/spear
5435S: Maintained
5436F: arch/arm/mach-spear3xx/
5437
5438SPEAR6XX MACHINE SUPPORT
5439M: Rajeev Kumar <rajeev-dlh.kumar@st.com>
5440W: http://www.st.com/spear
5441S: Maintained
5442F: arch/arm/mach-spear6xx/
5443
5444SPEAR CLOCK FRAMEWORK SUPPORT
5445M: Viresh Kumar <viresh.kumar@st.com>
5446W: http://www.st.com/spear
5447S: Maintained
5448F: arch/arm/mach-spear*/clock.c
5449F: arch/arm/mach-spear*/include/mach/clkdev.h
5450F: arch/arm/plat-spear/clock.c
Joe Perches83823b72010-08-09 17:20:42 -07005451F: arch/arm/plat-spear/include/plat/clkdev.h
5452F: arch/arm/plat-spear/include/plat/clock.h
viresh kumarfc0c1952010-04-01 12:31:21 +01005453
5454SPEAR PAD MULTIPLEXING SUPPORT
5455M: Viresh Kumar <viresh.kumar@st.com>
5456W: http://www.st.com/spear
5457S: Maintained
5458F: arch/arm/plat-spear/include/plat/padmux.h
5459F: arch/arm/plat-spear/padmux.c
5460F: arch/arm/mach-spear*/spear*xx.c
5461F: arch/arm/mach-spear*/include/mach/generic.h
5462F: arch/arm/mach-spear3xx/spear3*0.c
5463F: arch/arm/mach-spear3xx/spear3*0_evb.c
5464F: arch/arm/mach-spear6xx/spear600.c
5465F: arch/arm/mach-spear6xx/spear600_evb.c
5466
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005468M: Roger Wolff <R.E.Wolff@BitWizard.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005470F: Documentation/serial/specialix.txt
5471F: drivers/char/specialix*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005473SPI SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005474M: David Brownell <dbrownell@users.sourceforge.net>
Grant Likelyd33c8612009-11-25 07:32:25 -07005475M: Grant Likely <grant.likely@secretlab.ca>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005476L: spi-devel-general@lists.sourceforge.net
Joe Perches8a6e2532010-03-05 13:43:11 -08005477Q: http://patchwork.kernel.org/project/spi-devel-general/list/
Grant Likely3bbf9b92010-06-08 07:48:29 -06005478T: git git://git.secretlab.ca/git/linux-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005479S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005480F: Documentation/spi/
5481F: drivers/spi/
5482F: include/linux/spi/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005483
Jim Lewis2752e402006-09-29 02:01:19 -07005484SPIDERNET NETWORK DRIVER for CELL
Joe Perches8b58be82009-07-29 15:04:30 -07005485M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
5486M: Jens Osterkamp <jens@de.ibm.com>
Jim Lewis2752e402006-09-29 02:01:19 -07005487L: netdev@vger.kernel.org
5488S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005489F: Documentation/networking/spider_net.txt
5490F: drivers/net/spider_net*
Jim Lewis2752e402006-09-29 02:01:19 -07005491
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005492SPU FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005493M: Jeremy Kerr <jk@ozlabs.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005494L: linuxppc-dev@ozlabs.org
5495L: cbe-oss-dev@ozlabs.org
5496W: http://www.ibm.com/developerworks/power/cell/
5497S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005498F: Documentation/filesystems/spufs.txt
5499F: arch/powerpc/platforms/cell/spufs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005500
Phillip Lougherfc555842009-01-05 08:46:29 +00005501SQUASHFS FILE SYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005502M: Phillip Lougher <phillip@lougher.demon.co.uk>
Phillip Lougherfc555842009-01-05 08:46:29 +00005503L: squashfs-devel@lists.sourceforge.net (subscribers-only)
5504W: http://squashfs.org.uk
5505S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005506F: Documentation/filesystems/squashfs.txt
5507F: fs/squashfs/
Phillip Lougherfc555842009-01-05 08:46:29 +00005508
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509SRM (Alpha) environment access
Joe Perches8b58be82009-07-29 15:04:30 -07005510M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005512F: arch/alpha/kernel/srm_env.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
Linus Torvalds26e9a392008-10-17 09:50:12 -07005514STABLE BRANCH
Joe Perches8b58be82009-07-29 15:04:30 -07005515M: Greg Kroah-Hartman <greg@kroah.com>
5516M: Chris Wright <chrisw@sous-sol.org>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005517L: stable@kernel.org
5518S: Maintained
5519
Linus Torvalds26e9a392008-10-17 09:50:12 -07005520STAGING SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005521M: Greg Kroah-Hartman <gregkh@suse.de>
Linus Torvalds26e9a392008-10-17 09:50:12 -07005522T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Greg Kroah-Hartman1c6ccf62009-06-05 11:23:47 -07005523L: devel@driverdev.osuosl.org
Linus Torvalds26e9a392008-10-17 09:50:12 -07005524S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005525F: drivers/staging/
Linus Torvalds26e9a392008-10-17 09:50:12 -07005526
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527STARFIRE/DURALAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005528M: Ion Badulescu <ionut@badula.org>
Joe Perchesb4f90182009-06-30 11:41:32 -07005529S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005530F: drivers/net/starfire*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532STRADIS MPEG-2 DECODER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005533M: Nathan Laredo <laredo@gnu.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534W: http://www.stradis.com/
5535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005536F: drivers/media/video/stradis.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005538SUN3/3X
Joe Perches8b58be82009-07-29 15:04:30 -07005539M: Sam Creasey <sammy@sammy.net>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005540W: http://sammy.net/sun3/
5541S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005542F: arch/m68k/kernel/*sun3*
5543F: arch/m68k/sun3*/
5544F: arch/m68k/include/asm/sun3*
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005545
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005546SUPERH
Joe Perches8b58be82009-07-29 15:04:30 -07005547M: Paul Mundt <lethal@linux-sh.org>
Paul Mundt2cbb12a2007-11-19 13:08:37 +09005548L: linux-sh@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005549W: http://www.linux-sh.org
Joe Perches8a6e2532010-03-05 13:43:11 -08005550Q: http://patchwork.kernel.org/project/linux-sh/list/
Joe Perches54e58812009-04-07 21:08:10 -07005551T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
Paul Mundt5c806b22008-07-29 06:34:01 +09005552S: Supported
Paul Mundt066069e2009-04-14 06:32:08 +09005553F: Documentation/sh/
Joe Perches679655d2009-04-07 20:44:32 -07005554F: arch/sh/
Paul Mundt066069e2009-04-14 06:32:08 +09005555F: drivers/sh/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005557SUSPEND TO RAM
Joe Perches8b58be82009-07-29 15:04:30 -07005558M: Len Brown <len.brown@intel.com>
5559M: Pavel Machek <pavel@ucw.cz>
5560M: "Rafael J. Wysocki" <rjw@sisk.pl>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005561L: linux-pm@lists.linux-foundation.org
5562S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005563F: Documentation/power/
5564F: arch/x86/kernel/acpi/
5565F: drivers/base/power/
5566F: kernel/power/
5567F: include/linux/suspend.h
5568F: include/linux/freezer.h
5569F: include/linux/pm.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
5571SVGA HANDLING
Joe Perches8b58be82009-07-29 15:04:30 -07005572M: Martin Mares <mj@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573L: linux-video@atrey.karlin.mff.cuni.cz
5574S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005575F: Documentation/svga.txt
5576F: arch/x86/boot/video*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
5578SYSV FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005579M: Christoph Hellwig <hch@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005581F: Documentation/filesystems/sysv-fs.txt
5582F: fs/sysv/
5583F: include/linux/sysv_fs.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584
Alan Cox4e688522008-04-30 00:52:11 -07005585TASKSTATS STATISTICS INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07005586M: Balbir Singh <balbir@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005587S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005588F: Documentation/accounting/taskstats*
5589F: include/linux/taskstats*
5590F: kernel/taskstats.c
Alan Cox4e688522008-04-30 00:52:11 -07005591
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005592TC CLASSIFIER
Joe Perches8b58be82009-07-29 15:04:30 -07005593M: Jamal Hadi Salim <hadi@cyberus.ca>
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005594L: netdev@vger.kernel.org
5595S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005596F: include/linux/pkt_cls.h
5597F: include/net/pkt_cls.h
5598F: net/sched/
Stephen Hemminger781b456a2006-07-10 20:25:29 -07005599
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005600TCP LOW PRIORITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005601M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
5602M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005603W: http://tcp-lp-mod.sourceforge.net/
5604S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005605F: net/ipv4/tcp_lp.c
Wong Hoi Sing Edison5067f082006-09-13 20:31:13 -07005606
Erik Gilling84b94142010-06-09 15:35:53 -07005607TEGRA SUPPORT
5608M: Colin Cross <ccross@android.com>
5609M: Erik Gilling <konkers@android.com>
5610M: Olof Johansson <olof@lixom.net>
5611L: linux-tegra@vger.kernel.org
5612T: git git://android.git.kernel.org/kernel/tegra.git
5613S: Supported
5614F: arch/arm/mach-tegra
5615
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005616TEHUTI ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005617M: Alexander Indenbaum <baum@tehutinetworks.net>
5618M: Andy Gospodarek <andy@greyhouse.net>
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005619L: netdev@vger.kernel.org
5620S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005621F: drivers/net/tehuti*
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07005622
Alan Cox4e688522008-04-30 00:52:11 -07005623Telecom Clock Driver for MCPL0010
Joe Perches8b58be82009-07-29 15:04:30 -07005624M: Mark Gross <mark.gross@intel.com>
Alan Cox4e688522008-04-30 00:52:11 -07005625S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005626F: drivers/char/tlclk.c
Alan Cox4e688522008-04-30 00:52:11 -07005627
Randy Dunlap4480f15b2008-10-12 16:11:58 -07005628TENSILICA XTENSA PORT (xtensa)
Joe Perches8b58be82009-07-29 15:04:30 -07005629M: Chris Zankel <chris@zankel.net>
Alan Cox4e688522008-04-30 00:52:11 -07005630S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005631F: arch/xtensa/
Alan Cox4e688522008-04-30 00:52:11 -07005632
5633THINKPAD ACPI EXTRAS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005634M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
Alan Cox4e688522008-04-30 00:52:11 -07005635L: ibm-acpi-devel@lists.sourceforge.net
Matthew Garrettd0944852010-02-11 10:40:13 -05005636L: platform-driver-x86@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07005637W: http://ibm-acpi.sourceforge.net
5638W: http://thinkwiki.org/wiki/Ibm-acpi
Joe Perches54e58812009-04-07 21:08:10 -07005639T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
Alan Cox4e688522008-04-30 00:52:11 -07005640S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005641F: drivers/platform/x86/thinkpad_acpi.c
Alan Cox4e688522008-04-30 00:52:11 -07005642
Alex Dubov4020f2d2006-10-04 02:15:37 -07005643TI FLASH MEDIA INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005644M: Alex Dubov <oakad@yahoo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005645S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005646F: drivers/misc/tifm*
5647F: drivers/mmc/host/tifm_sd.c
5648F: include/linux/tifm.h
Alex Dubov4020f2d2006-10-04 02:15:37 -07005649
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005650TI TWL4030 SERIES SOC CODEC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005651M: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Peter Ujfalusidd5e8e62009-06-25 13:26:09 +03005652L: alsa-devel@alsa-project.org (moderated for non-subscribers)
5653S: Maintained
5654F: sound/soc/codecs/twl4030*
5655
Per Lidene86eaa32006-01-12 16:45:18 +01005656TIPC NETWORK LAYER
Joe Perches8b58be82009-07-29 15:04:30 -07005657M: Jon Maloy <jon.maloy@ericsson.com>
5658M: Allan Stephens <allan.stephens@windriver.com>
Per Lidene86eaa32006-01-12 16:45:18 +01005659L: tipc-discussion@lists.sourceforge.net
5660W: http://tipc.sourceforge.net/
5661W: http://tipc.cslab.ericsson.net/
Joe Perches54e58812009-04-07 21:08:10 -07005662T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git
Per Lidene86eaa32006-01-12 16:45:18 +01005663S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005664F: include/linux/tipc*.h
5665F: include/net/tipc/
5666F: net/tipc/
Per Lidene86eaa32006-01-12 16:45:18 +01005667
Chris Metcalf867e3592010-05-28 23:09:12 -04005668TILE ARCHITECTURE
5669M: Chris Metcalf <cmetcalf@tilera.com>
5670W: http://www.tilera.com/scm/
5671S: Supported
5672F: arch/tile/
5673
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674TLAN NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005675M: Samuel Chessman <chessman@tux.org>
Gabriel Craciunescu88c07dd2007-11-22 19:43:36 +08005676L: tlan-devel@lists.sourceforge.net (subscribers-only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677W: http://sourceforge.net/projects/tlan/
5678S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005679F: Documentation/networking/tlan.txt
5680F: drivers/net/tlan.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005682TOMOYO SECURITY MODULE
Joe Perches8b58be82009-07-29 15:04:30 -07005683M: Kentaro Takeda <takedakn@nttdata.co.jp>
5684M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005685L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
5686L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
5687L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
5688W: http://tomoyo.sourceforge.jp/
Tetsuo Handae6f6a4c2010-07-27 17:17:06 +09005689T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005690S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005691F: security/tomoyo/
Kentaro Takedad74db3b2009-02-05 17:18:18 +09005692
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005693TOPSTAR LAPTOP EXTRAS DRIVER
5694M: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Matthew Garrettd0944852010-02-11 10:40:13 -05005695L: platform-driver-x86@vger.kernel.org
Herton Ronaldo Krzesinski9caeb532009-09-14 21:11:21 -03005696S: Maintained
5697F: drivers/platform/x86/topstar-laptop.c
5698
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699TOSHIBA ACPI EXTRAS DRIVER
Matthew Garrettd0944852010-02-11 10:40:13 -05005700L: platform-driver-x86@vger.kernel.org
Johannes Berg15065532009-03-30 12:02:35 +02005701S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07005702F: drivers/platform/x86/toshiba_acpi.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
5704TOSHIBA SMM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005705M: Jonathan Buzzard <jonathan@buzzard.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706L: tlinux-users@tce.toshiba-dme.co.jp
5707W: http://www.buzzard.org.uk/toshiba/
5708S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005709F: drivers/char/toshiba.c
5710F: include/linux/toshiba.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711
Pierre Ossmand719f902009-03-24 21:06:09 +01005712TMIO MMC DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005713M: Ian Molton <ian@mnementh.co.uk>
Pierre Ossmand719f902009-03-24 21:06:09 +01005714S: Maintained
Joe Perchesd5ca6912009-04-09 02:42:01 -07005715F: drivers/mmc/host/tmio_mmc.*
Pierre Ossmand719f902009-03-24 21:06:09 +01005716
Hugh Dickins98f32602009-05-21 20:33:58 +01005717TMPFS (SHMEM FILESYSTEM)
Hugh Dickinsbfcc6e22010-05-14 19:40:35 -07005718M: Hugh Dickins <hughd@google.com>
Hugh Dickins98f32602009-05-21 20:33:58 +01005719L: linux-mm@kvack.org
5720S: Maintained
5721F: include/linux/shmem_fs.h
5722F: mm/shmem.c
5723
Alan Cox4e688522008-04-30 00:52:11 -07005724TPM DEVICE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005725M: Debora Velarde <debora@linux.vnet.ibm.com>
5726M: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Alan Cox4e688522008-04-30 00:52:11 -07005727W: http://tpmdd.sourceforge.net
Joe Perches8b58be82009-07-29 15:04:30 -07005728M: Marcel Selhorst <m.selhorst@sirrix.com>
Marcel Selhorst7dcce132009-02-11 13:04:27 -08005729W: http://www.sirrix.com
Rajiv Andrade63a10df2008-10-15 22:04:36 -07005730L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
Alan Cox4e688522008-04-30 00:52:11 -07005731S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005732F: drivers/char/tpm/
Alan Cox4e688522008-04-30 00:52:11 -07005733
Joe Perchesd6f005a2009-10-26 16:49:40 -07005734TRACING
5735M: Steven Rostedt <rostedt@goodmis.org>
5736M: Frederic Weisbecker <fweisbec@gmail.com>
5737M: Ingo Molnar <mingo@redhat.com>
Frederic Weisbecker86a8c632010-07-15 23:03:38 +02005738T: 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 -07005739S: Maintained
5740F: Documentation/trace/ftrace.txt
5741F: arch/*/*/*/ftrace.h
5742F: arch/*/kernel/ftrace.c
5743F: include/*/ftrace.h
5744F: include/linux/trace*.h
5745F: include/trace/
5746F: kernel/trace/
5747
Linus Torvalds1da177e2005-04-16 15:20:36 -07005748TRIVIAL PATCHES
Joe Perches8b58be82009-07-29 15:04:30 -07005749M: Jiri Kosina <trivial@kernel.org>
Joe Perches54e58812009-04-07 21:08:10 -07005750T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005751S: Maintained
5752
Alan Cox4e688522008-04-30 00:52:11 -07005753TTY LAYER
Greg Kroah-Hartman57d7f282009-07-31 21:28:16 -07005754M: Greg Kroah-Hartman <gregkh@suse.de>
5755S: Maintained
5756T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Alan Coxe3288772009-07-07 16:39:54 +01005757F: drivers/char/tty_*
5758F: drivers/serial/serial_core.c
5759F: include/linux/serial_core.h
5760F: include/linux/serial.h
5761F: include/linux/tty.h
Alan Cox4e688522008-04-30 00:52:11 -07005762
Grant Grundler740db6d2008-02-17 11:53:49 -07005763TULIP NETWORK DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07005764M: Grant Grundler <grundler@parisc-linux.org>
5765M: Kyle McMartin <kyle@mcmartin.ca>
Grant Grundler740db6d2008-02-17 11:53:49 -07005766L: netdev@vger.kernel.org
5767S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005768F: drivers/net/tulip/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769
5770TUN/TAP driver
Joe Perches8b58be82009-07-29 15:04:30 -07005771M: Maxim Krasnyansky <maxk@qualcomm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772L: vtun@office.satix.net
5773W: http://vtun.sourceforge.net/tun
5774S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005775F: Documentation/networking/tuntap.txt
5776F: arch/um/os-Linux/drivers/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005778TURBOCHANNEL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005779M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005780S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005781F: drivers/tc/
5782F: include/linux/tc.h
Maciej W. Rozyckib454cc62007-02-05 16:28:25 -08005783
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784U14-34F SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005785M: Dario Ballabio <ballabio_dario@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005786L: linux-scsi@vger.kernel.org
5787S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005788F: drivers/scsi/u14-34f.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005790UBI FILE SYSTEM (UBIFS)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005791M: Artem Bityutskiy <dedekind1@gmail.com>
Joe Perches8b58be82009-07-29 15:04:30 -07005792M: Adrian Hunter <adrian.hunter@nokia.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005793L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005794T: git git://git.infradead.org/ubifs-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005795W: http://www.linux-mtd.infradead.org/doc/ubifs.html
5796S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005797F: Documentation/filesystems/ubifs.txt
5798F: fs/ubifs/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005799
Alan Coxcc2020e2008-05-19 14:21:51 +01005800UCLINUX (AND M68KNOMMU)
Joe Perches8b58be82009-07-29 15:04:30 -07005801M: Greg Ungerer <gerg@uclinux.org>
Alan Coxcc2020e2008-05-19 14:21:51 +01005802W: http://www.uclinux.org/
5803L: uclinux-dev@uclinux.org (subscribers-only)
5804S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005805F: arch/m68knommu/
Alan Coxcc2020e2008-05-19 14:21:51 +01005806
Robert P. J. Day14fadca2009-04-21 12:24:47 -07005807UCLINUX FOR RENESAS H8/300 (H8300)
Joe Perches8b58be82009-07-29 15:04:30 -07005808M: Yoshinori Sato <ysato@users.sourceforge.jp>
Alan Coxcc2020e2008-05-19 14:21:51 +01005809W: http://uclinux-h8.sourceforge.jp/
5810S: Supported
Joe Perchesa7e4fd92010-08-09 17:20:44 -07005811F: arch/h8300/
5812F: drivers/ide/ide-h8300.c
5813F: drivers/net/ne-h8300.c
Alan Coxcc2020e2008-05-19 14:21:51 +01005814
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815UDF FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005816M: Jan Kara <jack@suse.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817W: http://linux-udf.sourceforge.net
5818S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005819F: Documentation/filesystems/udf.txt
5820F: fs/udf/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821
Alan Coxcc2020e2008-05-19 14:21:51 +01005822UFS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005823M: Evgeniy Dushistov <dushistov@mail.ru>
Alan Coxcc2020e2008-05-19 14:21:51 +01005824S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005825F: Documentation/filesystems/ufs.txt
5826F: fs/ufs/
Alan Coxcc2020e2008-05-19 14:21:51 +01005827
David Vrabel18332a82008-09-17 16:34:44 +01005828ULTRA-WIDEBAND (UWB) SUBSYSTEM:
Joe Perches8b58be82009-07-29 15:04:30 -07005829M: David Vrabel <david.vrabel@csr.com>
David Vrabel18332a82008-09-17 16:34:44 +01005830L: linux-usb@vger.kernel.org
5831S: Supported
David Vrabel355ffe62009-12-22 13:13:28 +00005832F: drivers/uwb/
5833X: drivers/uwb/wlp/
5834X: drivers/uwb/i1480/i1480u-wlp/
5835X: drivers/uwb/i1480/i1480-wlp.h
Joe Perches679655d2009-04-07 20:44:32 -07005836F: include/linux/uwb.h
5837F: include/linux/uwb/
David Vrabel18332a82008-09-17 16:34:44 +01005838
Tony Finchd8379ab2009-11-27 15:50:30 +00005839UNIFDEF
5840M: Tony Finch <dot@dotat.at>
5841W: http://dotat.at/prog/unifdef
5842S: Maintained
5843F: scripts/unifdef.c
5844
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845UNIFORM CDROM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005846M: Jens Axboe <axboe@kernel.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847W: http://www.kernel.dk
5848S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005849F: Documentation/cdrom/
5850F: drivers/cdrom/cdrom.c
5851F: include/linux/cdrom.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005852
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005853UNSORTED BLOCK IMAGES (UBI)
Artem Bityutskiy949cb622009-10-20 10:21:45 +03005854M: Artem Bityutskiy <dedekind1@gmail.com>
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005855W: http://www.linux-mtd.infradead.org/
5856L: linux-mtd@lists.infradead.org
Artem Bityutskiye2966cb2008-10-25 18:54:04 +03005857T: git git://git.infradead.org/ubi-2.6.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005858S: Maintained
Joe Perches80811492009-04-08 20:20:27 -07005859F: drivers/mtd/ubi/
Joe Perches679655d2009-04-07 20:44:32 -07005860F: include/linux/mtd/ubi.h
5861F: include/mtd/ubi-user.h
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07005862
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863USB ACM DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005864M: Oliver Neukum <oliver@neukum.name>
Greg Kroah-Hartman63725942007-11-21 15:16:59 -07005865L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005867F: Documentation/usb/acm.txt
5868F: drivers/usb/class/cdc-acm.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
5870USB BLOCK DRIVER (UB ub)
Joe Perches8b58be82009-07-29 15:04:30 -07005871M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005872L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005874F: drivers/block/ub.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876USB CDC ETHERNET DRIVER
Oliver Neukumf0348d42009-12-11 15:01:26 -08005877M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005878L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005880F: drivers/net/usb/cdc_*.c
5881F: include/linux/usb/cdc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07005882
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005883USB CYPRESS C67X00 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005884M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005885L: linux-usb@vger.kernel.org
5886S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005887F: drivers/usb/c67x00/
Peter Korsgaardb02b3712008-04-27 08:59:44 +02005888
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005889USB DAVICOM DM9601 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005890M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard043600a2007-06-27 21:18:18 +02005891L: netdev@vger.kernel.org
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005892W: http://www.linux-usb.org/usbnet
5893S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005894F: drivers/net/usb/dm9601.c
Peter Korsgaardd0374f42007-02-16 17:03:54 +01005895
Alan Coxcc2020e2008-05-19 14:21:51 +01005896USB DIAMOND RIO500 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005897M: Cesar Miquel <miquel@df.uba.ar>
Alan Coxcc2020e2008-05-19 14:21:51 +01005898L: rio500-users@lists.sourceforge.net
5899W: http://rio500.sourceforge.net
5900S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005901F: drivers/usb/misc/rio500*
Alan Coxcc2020e2008-05-19 14:21:51 +01005902
Linus Torvalds1da177e2005-04-16 15:20:36 -07005903USB EHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005904M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005905L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005906S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005907F: Documentation/usb/ehci.txt
5908F: drivers/usb/host/ehci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Luca Risolia7ce08c92006-01-11 02:06:59 +00005910USB ET61X[12]51 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005911M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005912L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03005913L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005914T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia7ce08c92006-01-11 02:06:59 +00005915W: http://www.linux-projects.org
5916S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005917F: drivers/media/video/et61x251/
Luca Risolia7ce08c92006-01-11 02:06:59 +00005918
David Brownell69ae9e32006-11-14 02:03:31 -08005919USB GADGET/PERIPHERAL SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07005920M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005921L: linux-usb@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08005922W: http://www.linux-usb.org/gadget
5923S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005924F: drivers/usb/gadget/
5925F: include/linux/usb/gadget*
David Brownell69ae9e32006-11-14 02:03:31 -08005926
Jiri Kosina2dea64b2007-07-11 12:12:11 +02005927USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
Joe Perches8b58be82009-07-29 15:04:30 -07005928M: Jiri Kosina <jkosina@suse.cz>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005929L: linux-usb@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07005930T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07005931S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005932F: Documentation/usb/hiddev.txt
5933F: drivers/hid/usbhid/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934
Olav Kongas959eea22005-11-03 17:38:14 +02005935USB ISP116X DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005936M: Olav Kongas <ok@artecdesign.ee>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005937L: linux-usb@vger.kernel.org
Olav Kongas959eea22005-11-03 17:38:14 +02005938S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005939F: drivers/usb/host/isp116x*
5940F: include/linux/usb/isp116x.h
Olav Kongas959eea22005-11-03 17:38:14 +02005941
Linus Torvalds1da177e2005-04-16 15:20:36 -07005942USB KAWASAKI LSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005943M: Oliver Neukum <oliver@neukum.name>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005944L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005946F: drivers/usb/serial/kl5kusb105.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
5948USB MASS STORAGE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005949M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005950L: linux-usb@vger.kernel.org
Matthew Dharm8836aeb2005-12-04 22:03:47 -08005951L: usb-storage@lists.one-eyed-alien.net
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952S: Maintained
5953W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
Joe Perches679655d2009-04-07 20:44:32 -07005954F: drivers/usb/storage/
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955
5956USB OHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005957M: David Brownell <dbrownell@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005958L: linux-usb@vger.kernel.org
David Brownell23d8c902006-12-05 03:10:08 -08005959S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07005960F: Documentation/usb/ohci.txt
5961F: drivers/usb/host/ohci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962
Matthias Urlichsba460e42005-07-14 00:33:47 -07005963USB OPTION-CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005964M: Matthias Urlichs <smurf@smurf.noris.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005965L: linux-usb@vger.kernel.org
Matthias Urlichsba460e42005-07-14 00:33:47 -07005966S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005967F: drivers/usb/serial/option.c
Matthias Urlichsba460e42005-07-14 00:33:47 -07005968
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969USB OV511 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005970M: Mark McClelland <mmcclell@bigfoot.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005971L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972W: http://alpha.dyndns.org/ov511/
5973S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005974F: drivers/media/video/ov511.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975
5976USB PEGASUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005977M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005978L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005979L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980W: http://pegasus2.sourceforge.net/
5981S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005982F: drivers/net/usb/pegasus.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005984USB PRINTER DRIVER (usblp)
Joe Perches8b58be82009-07-29 15:04:30 -07005985M: Pete Zaitcev <zaitcev@redhat.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005986L: linux-usb@vger.kernel.org
Pete Zaitcev73e4fb32007-06-21 15:18:35 -07005987S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07005988F: drivers/usb/class/usblp.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989
5990USB RTL8150 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005991M: Petko Manolov <petkan@users.sourceforge.net>
Jean Delvare795fb7e2008-09-20 12:33:08 +02005992L: linux-usb@vger.kernel.org
Peter Korsgaard043600a2007-06-27 21:18:18 +02005993L: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994W: http://pegasus2.sourceforge.net/
5995S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07005996F: drivers/net/usb/rtl8150.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997
5998USB SE401 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07005999M: Jeroen Vreeken <pe1rxq@amsat.org>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006000L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001W: http://www.chello.nl/~j.vreeken/se401/
6002S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006003F: Documentation/video4linux/se401.txt
6004F: drivers/media/video/se401.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005
Alan Cox4e688522008-04-30 00:52:11 -07006006USB SERIAL BELKIN F5U103 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006007M: William Greathouse <wgreathouse@smva.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006008L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006009S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006010F: drivers/usb/serial/belkin_sa.*
Alan Cox4e688522008-04-30 00:52:11 -07006011
6012USB SERIAL CYPRESS M8 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006013M: Lonnie Mendez <dignome@gmail.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006014L: linux-usb@vger.kernel.org
Alan Cox4e688522008-04-30 00:52:11 -07006015S: Maintained
6016W: http://geocities.com/i0xox0i
6017W: http://firstlight.net/cvs
Joe Perches679655d2009-04-07 20:44:32 -07006018F: drivers/usb/serial/cypress_m8.*
Alan Cox4e688522008-04-30 00:52:11 -07006019
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020USB SERIAL CYBERJACK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006021M: Matthias Bruestle and Harald Welte <support@reiner-sct.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022W: http://www.reiner-sct.de/support/treiber_cyberjack.php
6023S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006024F: drivers/usb/serial/cyberjack.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025
6026USB SERIAL DIGI ACCELEPORT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006027M: Peter Berger <pberger@brimson.com>
6028M: Al Borchers <alborchers@steinerpoint.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006029L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006031F: drivers/usb/serial/digi_acceleport.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032
6033USB SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006034M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006035L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006037F: Documentation/usb/usb-serial.txt
6038F: drivers/usb/serial/generic.c
6039F: drivers/usb/serial/usb-serial.c
6040F: include/linux/usb/serial.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006043M: Gary Brubaker <xavyer@ix.netcom.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006044L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006045S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006046F: drivers/usb/serial/empeg.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006047
6048USB SERIAL KEYSPAN DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006049M: Greg Kroah-Hartman <greg@kroah.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006050L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051W: http://www.kroah.com/linux/
6052S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006053F: drivers/usb/serial/*keyspan*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054
6055USB SERIAL WHITEHEAT DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006056M: Support Department <support@connecttech.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006057L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058W: http://www.connecttech.com
6059S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006060F: drivers/usb/serial/whiteheat*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006062USB SMSC95XX ETHERNET DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006063M: Steve Glendinning <steve.glendinning@smsc.com>
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006064L: netdev@vger.kernel.org
6065S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006066F: drivers/net/usb/smsc95xx.*
Steve Glendinning2f7ca802008-10-02 05:27:57 +00006067
Luca Risoliaf423b9a2007-03-26 16:12:04 -03006068USB SN9C1xx DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006069M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006070L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006071L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006072T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073W: http://www.linux-projects.org
6074S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006075F: Documentation/video4linux/sn9c102.txt
6076F: drivers/media/video/sn9c102/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077
6078USB SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006079M: Greg Kroah-Hartman <gregkh@suse.de>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006080L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081W: http://www.linux-usb.org
Jody McIntyre6fb04252005-11-18 09:31:06 -08006082T: quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006083S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006084F: Documentation/usb/
6085F: drivers/net/usb/
6086F: drivers/usb/
6087F: include/linux/usb.h
6088F: include/linux/usb/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089
6090USB UHCI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006091M: Alan Stern <stern@rowland.harvard.edu>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006092L: linux-usb@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006093S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006094F: drivers/usb/host/uhci*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095
David Brownell69ae9e32006-11-14 02:03:31 -08006096USB "USBNET" DRIVER FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006097M: David Brownell <dbrownell@users.sourceforge.net>
Peter Korsgaard043600a2007-06-27 21:18:18 +02006098L: netdev@vger.kernel.org
David Brownell69ae9e32006-11-14 02:03:31 -08006099W: http://www.linux-usb.org/usbnet
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006101F: drivers/net/usb/usbnet.c
6102F: include/linux/usb/usbnet.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006104USB VIDEO CLASS
Joe Perchesc53ac072010-08-09 17:20:51 -07006105M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Jiri Slabya67534a2008-12-10 09:09:27 -03006106L: linux-uvc-devel@lists.berlios.de (subscribers-only)
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006107L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006108T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Laurent Pinchart57c6d2e2010-04-30 10:48:51 -03006109W: http://www.ideasonboard.org/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006110S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006111F: drivers/media/video/uvc/
Laurent Pinchartc0efd232008-06-30 15:04:50 -03006112
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113USB W996[87]CF DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006114M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006115L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006116L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006117T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118W: http://www.linux-projects.org
6119S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006120F: Documentation/video4linux/w9968cf.txt
6121F: drivers/media/video/w996*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006123USB WIRELESS RNDIS DRIVER (rndis_wlan)
Joe Perches8b58be82009-07-29 15:04:30 -07006124M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006125L: linux-wireless@vger.kernel.org
6126S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006127F: drivers/net/wireless/rndis_wlan.c
Jussi Kivilinnabf164cc2008-01-26 00:51:51 +02006128
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006129USB XHCI DRIVER
Sarah Sharp36d03442009-12-01 10:37:07 -08006130M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006131L: linux-usb@vger.kernel.org
6132S: Supported
Sarah Sharp36d03442009-12-01 10:37:07 -08006133F: drivers/usb/host/xhci*
6134F: drivers/usb/host/pci-quirks*
Sarah Sharpeb6bab12009-04-29 19:07:13 -07006135
Luca Risolia60f78052006-02-06 16:29:35 +00006136USB ZC0301 DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006137M: Luca Risolia <luca.risolia@studio.unibo.it>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006138L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006139L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006140T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Luca Risolia60f78052006-02-06 16:29:35 +00006141W: http://www.linux-projects.org
6142S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006143F: Documentation/video4linux/zc0301.txt
6144F: drivers/media/video/zc0301/
Luca Risolia60f78052006-02-06 16:29:35 +00006145
Linus Torvalds1da177e2005-04-16 15:20:36 -07006146USB ZD1201 DRIVER
John W. Linville4086b9c2010-07-22 14:41:08 -04006147L: linux-wireless@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148W: http://linux-lc100020.sourceforge.net
John W. Linville4086b9c2010-07-22 14:41:08 -04006149S: Orphan
Joe Perches679655d2009-04-07 20:44:32 -07006150F: drivers/net/wireless/zd1201.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006152USB ZR364XX DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006153M: Antoine Jacquet <royale@zerezo.com>
Jean Delvare795fb7e2008-09-20 12:33:08 +02006154L: linux-usb@vger.kernel.org
Mauro Carvalho Chehab661263b2009-01-02 11:27:44 -03006155L: linux-media@vger.kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006156T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006157W: http://royale.zerezo.com/zr364xx/
6158S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006159F: Documentation/video4linux/zr364xx.txt
6160F: drivers/media/video/zr364xx.c
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006161
Randy Dunlape7839f22008-10-12 16:11:45 -07006162USER-MODE LINUX (UML)
Joe Perches8b58be82009-07-29 15:04:30 -07006163M: Jeff Dike <jdike@addtoit.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164L: user-mode-linux-devel@lists.sourceforge.net
6165L: user-mode-linux-user@lists.sourceforge.net
6166W: http://user-mode-linux.sourceforge.net
6167S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006168F: Documentation/uml/
6169F: arch/um/
6170F: fs/hostfs/
6171F: fs/hppfs/
Antoine Jacquetb7eee612007-04-27 12:30:59 -03006172
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006173USERSPACE I/O (UIO)
Joe Perches8b58be82009-07-29 15:04:30 -07006174M: "Hans J. Koch" <hjk@linutronix.de>
6175M: Greg Kroah-Hartman <gregkh@suse.de>
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006176S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006177F: Documentation/DocBook/uio-howto.tmpl
6178F: drivers/uio/
6179F: include/linux/uio*.h
Hans-Jürgen Koche5f114e2007-12-05 15:08:07 +01006180
Karel Zakf899b0a2008-05-23 13:04:21 -07006181UTIL-LINUX-NG PACKAGE
Joe Perches8b58be82009-07-29 15:04:30 -07006182M: Karel Zak <kzak@redhat.com>
Karel Zakf899b0a2008-05-23 13:04:21 -07006183L: util-linux-ng@vger.kernel.org
6184W: http://kernel.org/~kzak/util-linux-ng/
Joe Perches54e58812009-04-07 21:08:10 -07006185T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
Karel Zakf899b0a2008-05-23 13:04:21 -07006186S: Maintained
6187
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006188UVESAFB DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006189M: Michal Januszewski <spock@gentoo.org>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006190L: linux-fbdev@vger.kernel.org
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006191W: http://dev.gentoo.org/~spock/projects/uvesafb/
6192S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006193F: Documentation/fb/uvesafb.txt
6194F: drivers/video/uvesafb.*
Michal Januszewskic1fd1c02008-10-15 22:03:48 -07006195
Randy Dunlap4480f15b2008-10-12 16:11:58 -07006196VFAT/FAT/MSDOS FILESYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006197M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006199F: Documentation/filesystems/vfat.txt
6200F: fs/fat/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201
Amit Shah9a824462010-03-23 18:23:09 +05306202VIRTIO CONSOLE DRIVER
6203M: Amit Shah <amit.shah@redhat.com>
6204L: virtualization@lists.linux-foundation.org
6205S: Maintained
6206F: drivers/char/virtio_console.c
6207F: include/linux/virtio_console.h
6208
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00006209VIRTIO HOST (VHOST)
6210M: "Michael S. Tsirkin" <mst@redhat.com>
6211L: kvm@vger.kernel.org
6212L: virtualization@lists.osdl.org
6213L: netdev@vger.kernel.org
6214S: Maintained
6215F: drivers/vhost/
6216F: include/linux/vhost.h
6217
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218VIA RHINE NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006219M: Roger Luethi <rl@hellgate.ch>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006221F: drivers/net/via-rhine.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006222
Jean Delvare32c0a522005-09-22 21:47:58 +02006223VIAPRO SMBUS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006224M: Jean Delvare <khali@linux-fr.org>
Jean Delvare846557d2008-10-30 15:55:47 +01006225L: linux-i2c@vger.kernel.org
Jean Delvare32c0a522005-09-22 21:47:58 +02006226S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006227F: Documentation/i2c/busses/i2c-viapro
6228F: drivers/i2c/busses/i2c-viapro.c
Jean Delvare32c0a522005-09-22 21:47:58 +02006229
Harald Weltef0bf7f62009-06-17 20:22:39 +02006230VIA SD/MMC CARD CONTROLLER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006231M: Joseph Chan <JosephChan@via.com.tw>
6232M: Harald Welte <HaraldWelte@viatech.com>
Harald Weltef0bf7f62009-06-17 20:22:39 +02006233S: Maintained
6234F: drivers/mmc/host/via-sdmmc.c
6235
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006236VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006237M: Joseph Chan <JosephChan@via.com.tw>
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006238M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Geert Uytterhoevenc69f6772009-11-20 20:48:31 +01006239L: linux-fbdev@vger.kernel.org
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006240S: Maintained
Florian Tobias Schandinatc7babeb2010-05-20 14:06:57 +00006241F: include/linux/via-core.h
6242F: include/linux/via-gpio.h
6243F: include/linux/via_i2c.h
Joe Perches679655d2009-04-07 20:44:32 -07006244F: drivers/video/via/
Joseph Chan69e4a7c2008-10-15 22:03:31 -07006245
Francois Romieu01f20732007-01-26 00:57:17 -08006246VIA VELOCITY NETWORK DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006247M: Francois Romieu <romieu@fr.zoreil.com>
Francois Romieu01f20732007-01-26 00:57:17 -08006248L: netdev@vger.kernel.org
6249S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006250F: drivers/net/via-velocity.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Patrick McHardybe7f8272007-10-23 20:26:36 -07006252VLAN (802.1Q)
Joe Perches8b58be82009-07-29 15:04:30 -07006253M: Patrick McHardy <kaber@trash.net>
Patrick McHardybe7f8272007-10-23 20:26:36 -07006254L: netdev@vger.kernel.org
6255S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006256F: drivers/net/macvlan.c
6257F: include/linux/if_*vlan.h
6258F: net/8021q/
Patrick McHardybe7f8272007-10-23 20:26:36 -07006259
Florian Fainelli55e331c2009-06-16 15:33:53 -07006260VLYNQ BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006261M: Florian Fainelli <florian@openwrt.org>
Florian Fainelli55e331c2009-06-16 15:33:53 -07006262L: openwrt-devel@lists.openwrt.org
6263S: Maintained
6264F: drivers/vlynq/vlynq.c
6265F: include/linux/vlynq.h
6266
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006267VMWARE VMXNET3 ETHERNET DRIVER
Joe Perches65c8bb52009-11-11 14:26:12 -08006268M: Shreyas Bhatewara <sbhatewara@vmware.com>
6269M: "VMware, Inc." <pv-drivers@vmware.com>
6270L: netdev@vger.kernel.org
6271S: Maintained
6272F: drivers/net/vmxnet3/
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07006273
Alok Kataria851b1642009-10-13 14:51:05 -07006274VMware PVSCSI driver
6275M: Alok Kataria <akataria@vmware.com>
6276M: VMware PV-Drivers <pv-drivers@vmware.com>
6277L: linux-scsi@vger.kernel.org
6278S: Maintained
6279F: drivers/scsi/vmw_pvscsi.c
6280F: drivers/scsi/vmw_pvscsi.h
6281
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006282VOLTAGE AND CURRENT REGULATOR FRAMEWORK
Joe Perches8b58be82009-07-29 15:04:30 -07006283M: Liam Girdwood <lrg@slimlogic.co.uk>
6284M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006285W: http://opensource.wolfsonmicro.com/node/15
Liam Girdwood1dd68f02009-02-02 21:43:31 +00006286W: http://www.slimlogic.co.uk/?p=48
Joe Perches54e58812009-04-07 21:08:10 -07006287T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006288S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006289F: drivers/regulator/
6290F: include/linux/regulator/
Liam Girdwoode53e86c2008-07-10 15:48:00 +01006291
Juerg Haefligerab413192006-09-24 20:54:04 +02006292VT1211 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006293M: Juerg Haefliger <juergh@gmail.com>
Juerg Haefligerab413192006-09-24 20:54:04 +02006294L: lm-sensors@lm-sensors.org
6295S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006296F: Documentation/hwmon/vt1211
6297F: drivers/hwmon/vt1211.c
Juerg Haefligerab413192006-09-24 20:54:04 +02006298
Roger Lucas1de9e372005-11-26 20:20:05 +01006299VT8231 HARDWARE MONITOR DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006300M: Roger Lucas <vt8231@hiddenengine.co.uk>
Roger Lucas1de9e372005-11-26 20:20:05 +01006301L: lm-sensors@lm-sensors.org
6302S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006303F: drivers/hwmon/vt8231.c
Roger Lucas1de9e372005-11-26 20:20:05 +01006304
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305W1 DALLAS'S 1-WIRE BUS
Joe Perches8b58be82009-07-29 15:04:30 -07006306M: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006308F: Documentation/w1/
6309F: drivers/w1/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
Charles Spirakis13927072006-07-05 18:05:15 +02006311W83791D HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006312M: Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis13927072006-07-05 18:05:15 +02006313L: lm-sensors@lm-sensors.org
Marc Hulsman25845c22008-06-08 10:59:41 -04006314S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006315F: Documentation/hwmon/w83791d
6316F: drivers/hwmon/w83791d.c
Charles Spirakis13927072006-07-05 18:05:15 +02006317
Rudolf Marek61db0112006-12-12 18:18:30 +01006318W83793 HARDWARE MONITORING DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006319M: Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek61db0112006-12-12 18:18:30 +01006320L: lm-sensors@lm-sensors.org
6321S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006322F: Documentation/hwmon/w83793
6323F: drivers/hwmon/w83793.c
Rudolf Marek61db0112006-12-12 18:18:30 +01006324
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325W83L51xD SD/MMC CARD INTERFACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006326M: Pierre Ossman <pierre@ossman.eu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006328F: drivers/mmc/host/wbsd.*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006330WATCHDOG DEVICE DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006331M: Wim Van Sebroeck <wim@iguana.be>
Wim Van Sebroeck230a5ce2010-07-29 18:02:51 +00006332L: linux-watchdog@vger.kernel.org
6333W: http://www.linux-watchdog.org/
Joe Perches54e58812009-04-07 21:08:10 -07006334T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006335S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006336F: Documentation/watchdog/
6337F: drivers/watchdog/
6338F: include/linux/watchdog.h
Wim Van Sebroeck35277612006-01-15 21:21:14 +01006339
Linus Torvalds1da177e2005-04-16 15:20:36 -07006340WD7000 SCSI DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006341M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342L: linux-scsi@vger.kernel.org
6343S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006344F: drivers/scsi/wd7000.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
David Härdemane258b802009-09-21 17:04:53 -07006346WINBOND CIR DRIVER
Joe Perches364e9e12009-10-26 16:49:45 -07006347M: David Härdeman <david@hardeman.nu>
David Härdemane258b802009-09-21 17:04:53 -07006348S: Maintained
6349F: drivers/input/misc/winbond-cir.c
6350
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006351WIMAX STACK
Joe Perches8b58be82009-07-29 15:04:30 -07006352M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006353M: linux-wimax@intel.com
6354L: wimax@linuxwimax.org
6355S: Supported
6356W: http://linuxwimax.org
Joe Perches315987d2010-08-09 17:20:50 -07006357F: Documentation/wimax/README.wimax
6358F: include/linux/wimax.h
6359F: include/linux/wimax/debug.h
6360F: include/net/wimax.h
6361F: net/wimax/
Inaky Perez-Gonzalez8a70da82008-12-20 16:58:00 -08006362
David Vrabel18332a82008-09-17 16:34:44 +01006363WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
Joe Perches8b58be82009-07-29 15:04:30 -07006364M: David Vrabel <david.vrabel@csr.com>
David Vrabel355ffe62009-12-22 13:13:28 +00006365L: netdev@vger.kernel.org
David Vrabel18332a82008-09-17 16:34:44 +01006366S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006367F: include/linux/wlp.h
6368F: drivers/uwb/wlp/
David Vrabel355ffe62009-12-22 13:13:28 +00006369F: drivers/uwb/i1480/i1480u-wlp/
6370F: drivers/uwb/i1480/i1480-wlp.h
David Vrabel18332a82008-09-17 16:34:44 +01006371
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006372WISTRON LAPTOP BUTTON DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006373M: Miloslav Trmac <mitr@volny.cz>
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006374S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006375F: drivers/input/misc/wistron_btns.c
Dmitry Torokhov5fc146802005-11-20 00:50:06 -05006376
Kalle Valo834da342009-07-21 14:26:08 +03006377WL1251 WIRELESS DRIVER
Kalle Valo54f2d732010-02-18 21:47:51 +02006378M: Kalle Valo <kalle.valo@iki.fi>
Kalle Valo834da342009-07-21 14:26:08 +03006379L: linux-wireless@vger.kernel.org
6380W: http://wireless.kernel.org
6381T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6382S: Maintained
Luciano Coelho5e68ff62009-08-10 11:15:13 +03006383F: drivers/net/wireless/wl12xx/*
6384X: drivers/net/wireless/wl12xx/wl1271*
6385
6386WL1271 WIRELESS DRIVER
6387M: Luciano Coelho <luciano.coelho@nokia.com>
6388L: linux-wireless@vger.kernel.org
6389W: http://wireless.kernel.org
6390T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6391S: Maintained
6392F: drivers/net/wireless/wl12xx/wl1271*
Kalle Valo834da342009-07-21 14:26:08 +03006393
Linus Torvalds1da177e2005-04-16 15:20:36 -07006394WL3501 WIRELESS PCMCIA CARD DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006395M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Johannes Berg724c6b32007-04-23 12:18:20 -07006396L: linux-wireless@vger.kernel.org
Arnaldo Carvalho de Melo926554c2007-03-31 12:05:49 -03006397W: http://oops.ghostprotocols.net:81/blog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006398S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006399F: drivers/net/wireless/wl3501*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400
Mark Brownfebf1df2008-04-02 00:51:09 -04006401WM97XX TOUCHSCREEN DRIVERS
Joe Perches8b58be82009-07-29 15:04:30 -07006402M: Mark Brown <broonie@opensource.wolfsonmicro.com>
6403M: Liam Girdwood <lrg@slimlogic.co.uk>
Mark Brownfebf1df2008-04-02 00:51:09 -04006404L: linux-input@vger.kernel.org
6405T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
6406W: http://opensource.wolfsonmicro.com/node/7
6407S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006408F: drivers/input/touchscreen/*wm97*
6409F: include/linux/wm97xx.h
Mark Brownfebf1df2008-04-02 00:51:09 -04006410
Mark Brown055bcbc2010-08-13 14:18:12 +01006411WOLFSON MICROELECTRONICS DRIVERS
Joe Perches27480cc2009-10-26 16:49:47 -07006412M: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna532f972010-08-13 14:18:29 +01006413M: Ian Lartey <ian@opensource.wolfsonmicro.com>
Mark Brown645a6592010-10-05 19:27:56 -07006414M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Mark Brownb75ea162009-07-02 16:43:08 +01006415T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
6416W: http://opensource.wolfsonmicro.com/node/8
6417S: Supported
Joe Perches3768f0b2009-12-14 18:00:54 -08006418F: Documentation/hwmon/wm83??
Mark Brownb75ea162009-07-02 16:43:08 +01006419F: drivers/leds/leds-wm83*.c
6420F: drivers/mfd/wm8*.c
6421F: drivers/power/wm83*.c
6422F: drivers/rtc/rtc-wm83*.c
6423F: drivers/regulator/wm8*.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006424F: drivers/video/backlight/wm83*_bl.c
Mark Brownb75ea162009-07-02 16:43:08 +01006425F: drivers/watchdog/wm83*_wdt.c
Mark Brown3860e6c2009-09-09 14:46:43 +01006426F: include/linux/mfd/wm831x/
Mark Brownb75ea162009-07-02 16:43:08 +01006427F: include/linux/mfd/wm8350/
Joe Perches3768f0b2009-12-14 18:00:54 -08006428F: include/linux/mfd/wm8400*
Mark Brown055bcbc2010-08-13 14:18:12 +01006429F: include/sound/wm????.h
6430F: sound/soc/codecs/wm*
Mark Brownb75ea162009-07-02 16:43:08 +01006431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432X.25 NETWORK LAYER
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006433M: Andrew Hendry <andrew.hendry@gmail.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434L: linux-x25@vger.kernel.org
Arnd Bergmann8bf28052009-12-14 01:53:41 +00006435S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006436F: Documentation/networking/x25*
6437F: include/net/x25*
6438F: net/x25/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006440X86 ARCHITECTURE (32-BIT AND 64-BIT)
Joe Perches8b58be82009-07-29 15:04:30 -07006441M: Thomas Gleixner <tglx@linutronix.de>
6442M: Ingo Molnar <mingo@redhat.com>
6443M: "H. Peter Anvin" <hpa@zytor.com>
H. Peter Anvinbcde5632009-02-02 21:42:40 -08006444M: x86@kernel.org
Joe Perches54e58812009-04-07 21:08:10 -07006445T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006446S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006447F: Documentation/x86/
6448F: arch/x86/
Randy Dunlape2d1d6c2008-10-12 16:11:31 -07006449
Matthew Garrettd0944852010-02-11 10:40:13 -05006450X86 PLATFORM DRIVERS
6451M: Matthew Garrett <mjg@redhat.com>
6452L: platform-driver-x86@vger.kernel.org
Joe Perches28b8e8d2010-03-23 13:35:20 -07006453T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
Matthew Garrettd0944852010-02-11 10:40:13 -05006454S: Maintained
6455F: drivers/platform/x86
6456
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006457XEN HYPERVISOR INTERFACE
Joe Perches8b58be82009-07-29 15:04:30 -07006458M: Jeremy Fitzhardinge <jeremy@xensource.com>
6459M: Chris Wright <chrisw@sous-sol.org>
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006460L: virtualization@lists.osdl.org
6461L: xen-devel@lists.xensource.com
6462S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006463F: arch/x86/xen/
6464F: drivers/*/xen-*front.c
6465F: drivers/xen/
6466F: arch/x86/include/asm/xen/
6467F: include/xen/
Jeremy Fitzhardinge4cdf6bc2007-05-02 19:27:13 +02006468
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469XFS FILESYSTEM
6470P: Silicon Graphics Inc
Alex Elderf08a59f2009-09-11 09:51:25 -05006471M: Alex Elder <aelder@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472M: xfs-masters@oss.sgi.com
Nathan Scottd7ede1a2006-06-13 16:28:11 +10006473L: xfs@oss.sgi.com
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474W: http://oss.sgi.com/projects/xfs
Joe Perches54e58812009-04-07 21:08:10 -07006475T: git git://oss.sgi.com/xfs/xfs.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476S: Supported
Joe Perches679655d2009-04-07 20:44:32 -07006477F: Documentation/filesystems/xfs.txt
6478F: fs/xfs/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006480XILINX SYSTEMACE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006481M: Grant Likely <grant.likely@secretlab.ca>
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006482W: http://www.secretlab.ca/
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006483S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006484F: drivers/block/xsysace.c
Grant Likelyc9d3d8e2007-10-01 16:33:51 +02006485
Peter Korsgaard238b8722006-12-06 20:35:17 -08006486XILINX UARTLITE SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006487M: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard238b8722006-12-06 20:35:17 -08006488L: linux-serial@vger.kernel.org
6489S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006490F: drivers/serial/uartlite.c
Peter Korsgaard238b8722006-12-06 20:35:17 -08006491
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492YAM DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006493M: Jean-Paul Roubelat <jpr@f6fbb.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494L: linux-hams@vger.kernel.org
6495S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006496F: drivers/net/hamradio/yam*
6497F: include/linux/yam.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498
Henkaf64a5e2005-10-12 15:02:56 +02006499YEALINK PHONE DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006500M: Henk Vergonet <Henk.Vergonet@gmail.com>
Henkaf64a5e2005-10-12 15:02:56 +02006501L: usbb2k-api-dev@nongnu.org
6502S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006503F: Documentation/input/yealink.txt
6504F: drivers/input/misc/yealink.*
Henkaf64a5e2005-10-12 15:02:56 +02006505
Linus Torvalds1da177e2005-04-16 15:20:36 -07006506Z8530 DRIVER FOR AX.25
Joe Perches8b58be82009-07-29 15:04:30 -07006507M: Joerg Reuter <jreuter@yaina.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508W: http://yaina.de/jreuter/
6509W: http://www.qsl.net/dl1bke/
6510L: linux-hams@vger.kernel.org
6511S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006512F: Documentation/networking/z8530drv.txt
6513F: drivers/net/hamradio/*scc.c
6514F: drivers/net/hamradio/z8530.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006516ZD1211RW WIRELESS DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006517M: Daniel Drake <dsd@gentoo.org>
6518M: Ulrich Kunitz <kune@deine-taler.de>
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006519W: http://zd1211.ath.cx/wiki/DriverRewrite
Johannes Berg724c6b32007-04-23 12:18:20 -07006520L: linux-wireless@vger.kernel.org
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006521L: zd1211-devs@lists.sourceforge.net (subscribers-only)
6522S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006523F: drivers/net/wireless/zd1211rw/
Daniel Drake7c0c3af2006-07-16 13:55:17 +01006524
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525ZR36067 VIDEO FOR LINUX DRIVER
Linus Torvalds1da177e2005-04-16 15:20:36 -07006526L: mjpeg-users@lists.sourceforge.net
Trent Piephof63145e2009-01-24 20:52:41 -03006527L: linux-media@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528W: http://mjpeg.sourceforge.net/driver-zoran/
Trent Piephof63145e2009-01-24 20:52:41 -03006529T: Mercurial http://linuxtv.org/hg/v4l-dvb
6530S: Odd Fixes
Joe Perches679655d2009-04-07 20:44:32 -07006531F: drivers/media/video/zoran/
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006533ZS DECSTATION Z85C30 SERIAL DRIVER
Joe Perches8b58be82009-07-29 15:04:30 -07006534M: "Maciej W. Rozycki" <macro@linux-mips.org>
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006535S: Maintained
Joe Perches679655d2009-04-07 20:44:32 -07006536F: drivers/serial/zs.*
Maciej W. Rozycki8b4a4082007-07-18 00:49:11 -07006537
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538THE REST
Joe Perches8b58be82009-07-29 15:04:30 -07006539M: Linus Torvalds <torvalds@linux-foundation.org>
Joe Perches34d03cc2009-06-16 15:34:06 -07006540L: linux-kernel@vger.kernel.org
Joe Perches8a6e2532010-03-05 13:43:11 -08006541Q: http://patchwork.kernel.org/project/LKML/list/
Joe Perchescfe81f72009-04-07 21:09:58 -07006542T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543S: Buried alive in reporters
Joe Perches34d03cc2009-06-16 15:34:06 -07006544F: *
6545F: */